/* Storm6Apps: shared palette (aligned with Stand-To Coaching) */

:root {
  color-scheme: light;
  --color-orange: #f5b169;
  --color-blue: #2740cc;
  --color-green: #33a33c;
  --color-red: #e3071d;
  --color-cream: #f8fafc;
  --color-ink: #0f172a;
  --color-muted: #334155;
  --color-border: #e2e8f0;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 10px 36px rgba(15, 23, 42, 0.1);
  --max: 1100px;
  --landing-canvas: #f6f3ed;
  --landing-mist: #edf2fb;
  --surface: #ffffff;
  --surface-alt: #f6f7fb;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-muted);
  background: var(--color-cream);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-blue);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--color-ink);
  line-height: 1.2;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--color-blue);
  color: #fff;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.section--warm {
  background: var(--landing-canvas);
}

.section--mist {
  background: var(--landing-mist);
}

.section--white {
  background: var(--surface);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(39, 64, 204, 0.08);
  color: var(--color-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  max-width: 38rem;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(8px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--color-ink);
  flex-shrink: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-text-warm {
  color: var(--color-red);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 0.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-ink);
  cursor: pointer;
}

.nav-toggle__icon {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.nav-toggle__icon::before {
  top: -7px;
}

.nav-toggle__icon::after {
  top: 7px;
}

.site-header--nav-open .nav-toggle__icon {
  background: transparent;
}

.site-header--nav-open .nav-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header--nav-open .nav-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav {
  display: none;
  width: 100%;
  flex-basis: 100%;
  flex-direction: column;
  gap: 0;
  padding: 0.35rem 0 0.75rem;
  border-top: 1px solid var(--color-border);
}

.site-header--nav-open .nav {
  display: flex;
}

.nav a {
  display: block;
  padding: 0.65rem 0.15rem;
  color: #475569;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--color-border);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--color-blue);
}

.nav .btn {
  margin-top: 0.35rem;
  text-align: center;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    width: auto;
    flex-basis: auto;
    margin-left: auto;
    padding: 0;
    border-top: none;
    gap: 1.5rem;
  }

  .nav a {
    border-bottom: none;
    padding: 0;
  }

  .nav .btn {
    min-height: auto;
    padding: 0.5rem 1rem;
    font-size: 0.88rem;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  body.nav-menu-open {
    overflow: hidden;
    touch-action: none;
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.btn-primary {
  background: var(--color-red);
  color: #fff;
}

.btn-primary:hover {
  background: #c20619;
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--color-ink);
  border-color: var(--color-border);
}

.btn-secondary:hover {
  color: var(--color-ink);
  border-color: #cbd5e1;
}

.btn-blue {
  background: var(--color-blue);
  color: #fff;
}

.btn-blue:hover {
  background: #1f34a8;
  color: #fff;
}

.btn-block {
  width: 100%;
}

/* Hero */

.hero {
  padding: clamp(3.5rem, 10vw, 6rem) 0 clamp(3rem, 8vw, 5rem);
  background:
    radial-gradient(ellipse at 80% 0%, rgba(245, 177, 105, 0.18), transparent 50%),
    radial-gradient(ellipse at 10% 100%, rgba(39, 64, 204, 0.08), transparent 45%),
    var(--surface);
  border-bottom: 1px solid var(--color-border);
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-style: normal;
  color: var(--color-blue);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 2rem;
}

.hero-actions--left {
  justify-content: flex-start;
}

.lead--left {
  margin-left: 0;
  margin-right: 0;
}

.hero-note {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: #64748b;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-copy .eyebrow {
    margin-left: 0;
  }
}

/* Product stage (networking + phone composition) */

.product-stage {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  min-height: 420px;
}

.product-stage__scene {
  width: 78%;
  border-radius: 22px;
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 3 / 4;
  display: block;
  transform: rotate(-2deg);
}

.product-stage__phone {
  position: absolute;
  right: -4%;
  bottom: -6%;
  width: 58%;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
  background: #0f172a;
  transform: rotate(4deg);
  animation: float-phone 5.5s ease-in-out infinite;
}

.product-stage__badge {
  position: absolute;
  left: 4%;
  bottom: 8%;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 2;
}

.product-stage__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-red);
  line-height: 1;
}

.product-stage__label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-ink);
}

@keyframes float-phone {
  0%,
  100% {
    transform: rotate(4deg) translateY(0);
  }
  50% {
    transform: rotate(4deg) translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-stage__phone {
    animation: none;
  }
}

/* Splash feature */

.splash-feature {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .splash-feature {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.splash-feature__media {
  text-align: center;
}

.splash-feature__media img {
  width: min(100%, 360px);
  border-radius: 20px;
  box-shadow: var(--shadow);
  background: #111;
}

.media-caption {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  color: #64748b;
}

.price-stack {
  margin: 0 0 1.25rem;
}

.price-compare {
  margin: 0.35rem 0 0;
  font-size: 0.98rem;
  color: #64748b;
}

.founding-note {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  background: var(--landing-mist);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.card-price-note {
  margin: -0.5rem 0 1rem;
  font-size: 0.9rem;
  color: #64748b;
}

.deliverables {
  margin: 0 0 1.5rem;
  padding-left: 1.15rem;
}

.deliverables li {
  margin-bottom: 0.45rem;
}

/* Work */

.work-card__tag {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-blue);
}

.work-note {
  margin: 1.75rem auto 0;
  max-width: 40rem;
  font-size: 0.98rem;
  color: #64748b;
}

/* Fit panel */

.fit-panel {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 700px) {
  .fit-panel {
    grid-template-columns: 1fr 1fr;
  }
}

.fit-panel > div {
  background: var(--landing-canvas);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
}

.fit-panel h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.fit-panel p {
  margin: 0;
}

/* FAQ */

.faq-list {
  max-width: 46rem;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-ink);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--color-blue);
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0.75rem 0 0.25rem;
}

/* Testimonials */

.testimonial-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-quote {
  margin: 0;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-ink);
  line-height: 1.6;
}

.testimonial-meta {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  font-style: normal;
  color: #64748b;
}

.testimonial-placeholder {
  max-width: 34rem;
  margin: 0 auto;
  text-align: center;
}

/* Grids */

.grid-3 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.grid-2 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Cards */

.card {
  background: var(--surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.card p {
  margin: 0;
}

.card--featured {
  border-color: var(--color-blue);
  box-shadow: var(--shadow);
  position: relative;
}

.card--featured::before {
  content: "Most popular";
  position: absolute;
  top: -0.65rem;
  left: 1.25rem;
  padding: 0.2rem 0.65rem;
  background: var(--color-blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
}

.price-tag {
  display: block;
  margin: 0.75rem 0 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-ink);
}

.price-tag small {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-muted);
}

.card ul {
  margin: 1rem 0 1.25rem;
  padding-left: 1.1rem;
}

.card li {
  margin-bottom: 0.4rem;
}

.pain-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .pain-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pain-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  border: 1px solid var(--color-border);
}

.pain-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-ink);
}

.icon-wrap--blue {
  background: rgba(39, 64, 204, 0.1);
}

.icon-wrap--orange {
  background: rgba(245, 177, 105, 0.35);
}

.icon-wrap--green {
  background: rgba(51, 163, 60, 0.12);
}

/* Proof strip */

.proof-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.proof-app {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1rem;
  background: var(--surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--color-ink);
  font-weight: 600;
  font-size: 0.92rem;
  transition: border-color 0.15s ease;
}

.proof-app:hover {
  border-color: var(--color-blue);
  color: var(--color-ink);
}

.proof-app img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
}

/* Steps */

.steps {
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  counter-increment: step;
  padding: 1.25rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.step::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: var(--color-blue);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
}

.step h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.step p {
  margin: 0;
  font-size: 0.95rem;
}

/* About */

.about-panel {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-panel {
    grid-template-columns: auto 1fr;
  }
}

.about-photo-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 25%, #3a4f9a 0%, #1e2a5a 55%, #0f172a 100%);
  border: 4px solid #fff;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.about-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--landing-mist);
  padding: 0.5rem;
  border: 3px solid #fff;
  box-shadow: var(--shadow);
}

.about-avatar--photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

@media (min-width: 768px) {
  .about-photo-wrap {
    width: 220px;
    height: 220px;
  }
}

/* Contact */

.contact-wrap {
  display: grid;
  gap: 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .contact-wrap {
    grid-template-columns: 2fr 3fr;
  }
}

.contact-aside {
  padding: 2rem;
  background: linear-gradient(160deg, #1f34a8 0%, var(--color-blue) 100%);
  color: #fff;
}

.contact-aside h2 {
  color: #fff;
  margin: 0 0 0.75rem;
}

.contact-aside p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.contact-detail a {
  color: #fff;
}

.contact-form {
  padding: 2rem;
}

.form-field {
  margin-bottom: 1.1rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font: inherit;
  background: #f8fafc;
  color: var(--color-ink);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 2px solid rgba(39, 64, 204, 0.35);
  border-color: var(--color-blue);
}

/* Footer */

.site-footer {
  background: var(--color-ink);
  color: #94a3b8;
  padding: 2.5rem 0;
  border-top: 1px solid #1e293b;
}

.site-footer .brand-text {
  color: #fff;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: #fff;
}

.section-heading {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
}

.section-sub {
  margin: 0 0 2rem;
  max-width: 36rem;
}

.section-sub--center {
  margin-inline: auto;
}

/* Thank-you page */

.page-centered {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-centered main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.success-card {
  max-width: 28rem;
  width: 100%;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
}

.success-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(51, 163, 60, 0.12);
  display: grid;
  place-items: center;
  color: var(--color-green);
  font-size: 1.75rem;
  font-weight: 700;
}

/* Contact card (splash page) styles */

body.meet-nfc-page {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  font-family: var(--font-body);
  color: var(--color-ink);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.8), transparent 35%),
    linear-gradient(180deg, var(--landing-mist) 0%, #dee2eb 100%);
}

.meet-nfc-card {
  width: min(100%, 420px);
  max-width: 420px;
  background: var(--surface);
  border-radius: 32px;
  box-shadow: 0 24px 70px rgba(15, 30, 70, 0.18);
  overflow: hidden;
  text-align: center;
  margin: 0 auto;
}

.meet-nfc-card-header {
  padding: 36px 24px 24px;
  background: linear-gradient(180deg, #1f34a8 0%, var(--color-blue) 100%);
  color: #ffffff;
}

.meet-nfc-logo-wrap {
  width: 126px;
  height: 126px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
}

.meet-nfc-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.meet-nfc-eyebrow {
  margin: 0 0 10px;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.meet-nfc-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.4rem);
  line-height: 1.05;
  color: #fff;
}

.meet-nfc-role {
  margin: 10px auto 0;
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.82);
}

.meet-nfc-brand {
  color: var(--color-orange);
  font-weight: 700;
}

.meet-nfc-card-body {
  padding: 30px 24px 28px;
}

.meet-nfc-hook {
  margin: 0 0 14px;
  font-size: 1.03rem;
  font-weight: 700;
  color: var(--color-ink);
}

.meet-nfc-proof {
  margin: 0 0 24px;
  color: var(--color-muted);
  line-height: 1.45;
}

.meet-nfc-actions {
  display: grid;
  gap: 12px;
  margin: 0 auto 20px;
  max-width: 360px;
  width: 100%;
}

.meet-nfc-actions .btn {
  border-radius: 999px;
  min-height: 54px;
}

.meet-nfc-link {
  color: var(--color-blue);
  text-decoration: none;
  font-weight: 700;
}

.meet-nfc-contact-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.meet-nfc-dot {
  color: #9ca3af;
}

.meet-nfc-foot {
  margin: 0;
}

.meet-nfc-foot a {
  color: var(--color-green);
  text-decoration: none;
  font-weight: 700;
}

/* Sample card demo tips */

.sample-demo-link {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
  color: inherit;
}

button.meet-nfc-link.sample-demo-link {
  color: var(--color-blue);
  text-decoration: none;
  font-weight: 700;
}

button.sample-demo-link--site {
  color: var(--color-green);
  text-decoration: none;
  font-weight: 700;
}

/* Keep primary CTA styling when the demo control is a button */
button.btn.sample-demo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  background: var(--color-red);
  color: #fff;
}

button.btn.sample-demo-link:hover {
  background: #c20619;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.sample-demo-bubble {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: var(--color-ink);
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.45;
  text-align: left;
  box-shadow: var(--shadow);
}

.sample-demo-bubble[hidden] {
  display: none;
}

.sample-demo-hint {
  max-width: 420px;
  margin: 1rem auto 0;
  padding: 0 1rem;
  text-align: center;
  font-size: 0.88rem;
  color: #64748b;
}

@media (max-width: 400px) {
  .meet-nfc-card {
    border-radius: 28px;
  }

  .meet-nfc-card-header {
    padding: 32px 20px 20px;
  }

  .meet-nfc-card-body {
    padding: 24px 20px 24px;
  }
}
