/* ============================================================================
   SIKKAH — Waitlist landing (SaaS product theme)
   Bright, airy, trustworthy. Warm off-white canvas, maroon primary, copper
   accent. Clash Display (display) + DM Sans (UI). Soft layered shadows,
   rounded surfaces, bento grid, gradient-mesh atmosphere.
   ========================================================================== */

:root {
  /* ── Surfaces & ink ── */
  --bg:         #fbf9f5;   /* warm off-white page */
  --surface:    #ffffff;
  --surface-2:  #f5f1ea;   /* alt section tint */
  --ink:        #3a0f17;   /* headings (deep maroon) */
  --navy:       #7b1e2b;   /* primary (maroon) */
  --navy-700:   #94283a;   /* primary hover (lighter maroon) */
  --body:       #5b4a4d;   /* body text on light */
  --muted:      #9a8488;

  /* ── Accent (copper, brand) ── */
  --copper:     #c9956b;
  --copper-600: #b67e50;
  --copper-700: #9c6a40;
  --copper-50:  #f6ece1;   /* tint */
  --copper-100: #efe0d0;

  /* ── Green (used strategically: positive / verified / success) ── */
  --green:      #2f855a;
  --green-700:  #1f6a46;
  --green-50:   #e8f3ec;   /* tint */
  --green-100:  #d3ead9;

  /* ── Lines & shadows ── */
  --border:     #ece6db;
  --border-2:   #e2d9cb;
  --ring:       rgba(201, 149, 107, 0.35);
  --shadow-sm:  0 1px 2px rgba(58, 13, 23, 0.06), 0 2px 6px rgba(58, 13, 23, 0.05);
  --shadow-md:  0 2px 4px rgba(58, 13, 23, 0.05), 0 12px 28px -10px rgba(58, 13, 23, 0.16);
  --shadow-lg:  0 8px 18px -8px rgba(58, 13, 23, 0.16), 0 30px 60px -24px rgba(58, 13, 23, 0.28);

  /* ── Type ── */
  --display: "Clash Display", "DM Sans", system-ui, sans-serif;
  --ui: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 56px);
  --radius: 20px;
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--ui);
  background: var(--bg);
  color: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
b, strong { font-weight: 700; }
::selection { background: var(--copper); color: #fff; }
:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; border-radius: 6px; }

/* leave room for the fixed nav when jumping to an anchor / section */
#hero, #features, #how, #faq, #cta { scroll-margin-top: 96px; }
#waitlist { scroll-margin-top: 112px; }

.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 1000;
  background: var(--navy); color: #fff; padding: 10px 16px;
  border-radius: 10px; font-weight: 600; font-size: 13px; transition: top .2s;
}
.skip-link:focus { top: 16px; }

h1, h2, h3, h4 { font-family: var(--display); color: var(--ink); font-weight: 600; line-height: 1.05; letter-spacing: -0.015em; }

/* ============================================================================
   BUTTONS
   ========================================================================== */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ui); font-weight: 600; font-size: 15px;
  border-radius: 999px; white-space: nowrap; will-change: transform;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out),
              background-color .25s, color .25s, border-color .25s;
}
.btn--primary {
  background: var(--navy); color: #fff; padding: 13px 22px;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--navy-700); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn--ghost {
  background: var(--surface); color: var(--ink);
  padding: 12px 20px; border: 1px solid var(--border-2); box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { border-color: var(--copper); color: var(--copper-700); }
.btn--sm { font-size: 14px; padding: 10px 18px; }
.btn--lg { font-size: 16px; padding: 16px 30px; }
.btn__arrow { transition: transform .3s var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ============================================================================
   NAV
   ========================================================================== */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; padding: 16px var(--pad); transition: padding .35s var(--ease-out); }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 10px 12px 10px 18px; border-radius: 999px;
  border: 1px solid transparent; transition: background-color .35s, border-color .35s, box-shadow .35s, backdrop-filter .35s;
}
.nav.is-scrolled .nav__inner {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.brand { display: inline-flex; align-items: center; color: var(--ink); }
.brand__logo { height: 28px; width: auto; display: block; }
.footer__brand .brand__logo { height: 32px; }
.nav__links { display: flex; gap: 30px; }
.nav__links a { font-size: 15px; font-weight: 500; color: var(--body); transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
@media (max-width: 800px) { .nav__links { display: none; } }

/* ============================================================================
   HERO
   ========================================================================== */
.hero { position: relative; padding: clamp(120px, 16vh, 170px) var(--pad) clamp(50px, 8vw, 90px); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; }
.blob--1 { width: 620px; height: 620px; top: -180px; right: -120px;
  background: radial-gradient(circle, rgba(201,149,107,0.55), transparent 65%); }
.blob--2 { width: 540px; height: 540px; bottom: -220px; left: -160px;
  background: radial-gradient(circle, rgba(123,30,43,0.30), transparent 65%); }
.grid-fade {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(22,34,59,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(22,34,59,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 75%);
          mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 75%);
}

.hero__inner {
  position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(30px, 5vw, 70px); align-items: center;
}
/* min-width:0 lets the grid items shrink below their content's intrinsic width */
.hero__copy, .hero__visual { min-width: 0; }
@media (max-width: 920px) { .hero__inner { grid-template-columns: minmax(0, 1fr); gap: 36px; } }

.badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 500; color: var(--copper-700);
  background: var(--copper-50); border: 1px solid var(--copper-100);
  padding: 7px 8px 7px 14px; border-radius: 999px; margin-bottom: 24px;
  transition: gap .25s var(--ease-out), background-color .25s;
}
.badge:hover { gap: 12px; background: var(--copper-100); }
.badge__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--copper); box-shadow: 0 0 0 0 var(--ring); animation: pulse 2.2s var(--ease-out) infinite; }
.badge__arrow { font-size: 13px; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 var(--ring);} 70%{box-shadow:0 0 0 7px transparent;} 100%{box-shadow:0 0 0 0 transparent;} }

.hero__title { font-family: var(--display); font-weight: 600; font-size: clamp(2.1rem, 7.5vw, 4.3rem); letter-spacing: -0.03em; color: var(--ink); margin-bottom: 22px; overflow-wrap: break-word; }
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.04em; }
.grad-word {
  background: linear-gradient(100deg, var(--copper-600), var(--copper) 55%, #e0b489);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub { max-width: 33em; font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: var(--body); margin-bottom: 30px; }

/* ── Waitlist ── */
.waitlist { max-width: 520px; }
.wl-title { font-family: var(--display); font-weight: 600; font-size: clamp(1.7rem, 3.2vw, 2.2rem); color: var(--ink); letter-spacing: -0.02em; margin-bottom: 6px; }
.wl-intro { font-size: 14.5px; color: var(--body); margin-bottom: 20px; max-width: 40em; }

/* illustrated icons inside option pills / chips (line-drawn, inherit color) */
.wl-opt__ic, .chip__ic {
  width: 17px; height: 17px; flex: none; margin-right: -1px;
  fill: none; stroke: currentColor; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.chip__ic { width: 18px; height: 18px; }

/* text + dropdown answers in the wizard */
.wl-text, .wl-select {
  width: 100%; padding: 13px 16px; border-radius: 14px;
  font-family: var(--ui); font-size: 15px; color: var(--ink);
  background: var(--surface); border: 1px solid var(--border-2); box-shadow: var(--shadow-sm);
  outline: none; transition: border-color .25s, box-shadow .25s;
}
.wl-text:focus, .wl-select:focus { border-color: var(--copper); box-shadow: 0 0 0 4px var(--copper-50); }
.wl-text::placeholder { color: var(--muted); }
.wl-select {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a8488' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px;
}
.wl-q__hint { font-weight: 500; color: var(--muted); font-size: 12px; }
.wl-field {
  display: flex; gap: 8px; padding: 7px; border-radius: 999px; margin-top: 20px;
  background: var(--surface); border: 1px solid var(--border-2); box-shadow: var(--shadow-sm);
  transition: border-color .25s, box-shadow .25s;
}
.wl-field:focus-within { border-color: var(--copper); box-shadow: 0 0 0 4px var(--copper-50); }
.wl-field input { flex: 1; min-width: 0; background: transparent; border: none; outline: none; color: var(--ink); font-family: var(--ui); font-size: 16px; padding: 0 16px; }
.wl-field input::placeholder { color: var(--muted); }
.wl-field.is-error { border-color: #db6a5a; box-shadow: 0 0 0 4px rgba(219,106,90,0.12); }
.wl-note { margin-top: 12px; font-size: 13px; color: var(--muted); padding-left: 6px; }
.wl-note.is-error { color: #c0533f; }

/* quick questionnaire — customer/vendor + category, as tappable pills */
.wl-q { margin-bottom: 14px; }
.wl-q__label { display: block; font-size: 13px; font-weight: 600; color: var(--body); margin: 0 0 8px 6px; }
.wl-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.wl-opt {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ui); font-size: 13.5px; font-weight: 600; color: var(--ink);
  background: var(--surface); border: 1px solid var(--border-2); border-radius: 999px;
  padding: 9px 15px; cursor: pointer; box-shadow: var(--shadow-sm);
  transition: border-color .2s var(--ease-out), color .2s var(--ease-out), background .2s var(--ease-out), transform .12s var(--ease-out);
}
.wl-opt:hover { border-color: var(--copper); color: var(--copper-700); }
.wl-opt:active { transform: translateY(1px); }
.wl-opt.is-selected {
  background: var(--navy); border-color: var(--navy); color: #fff;
  box-shadow: 0 8px 18px -8px rgba(123,30,43,.5);
}
.wl-other {
  width: 100%; margin-bottom: 14px; padding: 13px 18px; border-radius: 14px;
  font-family: var(--ui); font-size: 15px; color: var(--ink);
  background: var(--surface); border: 1px solid var(--border-2); box-shadow: var(--shadow-sm);
  outline: none; transition: border-color .25s, box-shadow .25s;
}
.wl-other:focus { border-color: var(--copper); box-shadow: 0 0 0 4px var(--copper-50); }
.wl-other::placeholder { color: var(--muted); }
.wl-set[hidden], .wl-q[hidden], .wl-other[hidden], .wl-step[hidden], .wl-email-step[hidden], .wl-start[hidden] { display: none; }

/* start gate: a single large "Register Here" button that opens the wizard */
.wl-start { margin-top: 4px; }
.wl-start__btn { width: 100%; justify-content: center; font-size: 16px; padding: 17px 30px; }

/* required-question highlight (shown briefly when Next is blocked) */
.wl-q.is-missing .wl-q__label { color: #c0533f; }
.wl-q.is-missing .wl-text, .wl-q.is-missing .wl-select { border-color: #db6a5a; box-shadow: 0 0 0 4px rgba(219,106,90,0.12); }
.wl-q.is-missing .wl-opt:not(.is-selected) { border-color: #e7a99e; }

/* wizard nav (Back / step counter / Next) */
.wl-nav { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.wl-nav[hidden] { display: none; }
.wl-count { flex: 1; text-align: center; font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: 0.03em; }
.wl-back, .wl-next {
  flex: none; font-family: var(--ui); font-weight: 600; font-size: 14px;
  padding: 11px 20px; border-radius: 999px; cursor: pointer;
  transition: background-color .2s var(--ease-out), border-color .2s var(--ease-out), color .2s var(--ease-out), transform .12s var(--ease-out);
}
.wl-back { background: transparent; border: 1px solid var(--border-2); color: var(--body); }
.wl-back:hover { border-color: var(--copper); color: var(--copper-700); }
.wl-back[hidden] { display: none; }
.wl-next { background: var(--navy); border: 1px solid var(--navy); color: #fff; }
.wl-next:hover { background: var(--navy-700); border-color: var(--navy-700); }
.wl-next[hidden] { display: none; }
.wl-next:disabled { opacity: 0.4; cursor: not-allowed; }
.wl-next:disabled:hover { background: var(--navy); border-color: var(--navy); }
.wl-back:active, .wl-next:active { transform: translateY(1px); }

.wl-success[hidden] { display: none; }
.wl-success {
  display: flex; align-items: center; gap: 14px; max-width: 520px;
  padding: 16px 20px; border-radius: 16px;
  background: var(--green-50); border: 1px solid var(--green-100);
}
.wl-success__mark { flex: none; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--green); }
.wl-success__title { font-family: var(--display); font-weight: 600; font-size: 17px; color: var(--ink); }
.wl-success__sub { font-size: 14px; color: var(--body); }

/* ── Hero visual / 3D card ── */
.hero__visual { position: relative; }
.visual-card {
  position: relative; aspect-ratio: 1 / 1; max-width: 520px; margin-inline: auto;
  border-radius: 28px; border: 1px solid var(--border);
  background:
    radial-gradient(120% 100% at 70% 20%, rgba(201,149,107,0.16), transparent 55%),
    linear-gradient(180deg, #ffffff, #f7f2ea);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
/* vendor web — Sikkah hub + dashed spokes out to each vendor type */
.web-diagram { position: absolute; inset: 0; }
.web-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.web-lines line {
  stroke: var(--copper); stroke-width: 0.45; stroke-linecap: round;
  stroke-dasharray: 1.6 2.4;
  opacity: 0; animation: web-line-in 0.6s var(--ease-out) forwards;
}
.web-lines line:nth-child(1) { animation-delay: 0.20s; }
.web-lines line:nth-child(2) { animation-delay: 0.28s; }
.web-lines line:nth-child(3) { animation-delay: 0.36s; }
.web-lines line:nth-child(4) { animation-delay: 0.44s; }
.web-lines line:nth-child(5) { animation-delay: 0.52s; }
.web-lines line:nth-child(6) { animation-delay: 0.60s; }
@keyframes web-line-in { to { opacity: 0.5; } }

/* vendor nodes — dashed-outline circles with the label inside */
.web-node {
  position: absolute; z-index: 2; transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center; text-align: center;
  width: 88px; height: 88px; padding: 8px; border-radius: 50%;
  font-family: var(--ui); font-size: 11.5px; font-weight: 600; line-height: 1.25;
  letter-spacing: 0.01em; color: var(--navy);
  background: var(--surface); border: 1.5px dashed var(--copper);
  box-shadow: var(--shadow-sm);
  opacity: 0; animation: web-pop 0.6s var(--ease-out) forwards;
  animation-delay: calc(0.25s + var(--d, 0) * 0.08s);
  transition: border-color 0.25s var(--ease-out), color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.web-node:hover { border-color: var(--navy); color: var(--copper-700); box-shadow: var(--shadow-md); }

/* center hub — solid filled circle */
.web-node--hub {
  z-index: 3; flex-direction: column; gap: 1px;
  width: 112px; height: 112px; padding: 0;
  border: none; color: #fff;
  background: linear-gradient(165deg, var(--navy), #5e1622);
  box-shadow: 0 16px 34px -12px rgba(123, 30, 43, 0.6), var(--shadow-md);
  animation-delay: 0s;
}
.web-node--hub:hover { color: #fff; box-shadow: 0 16px 34px -12px rgba(123, 30, 43, 0.6), var(--shadow-md); }
.web-node--hub .web-node__seal { color: var(--copper); display: inline-flex; line-height: 0; }
.web-node--hub .web-node__name { font-family: var(--display); font-size: 20px; font-weight: 600; }
.web-node--hub::after {
  content: ""; position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid rgba(201, 149, 107, 0.45);
  animation: web-pulse 2.8s var(--ease-out) infinite;
}

@keyframes web-pop {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.82); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes web-pulse {
  0%   { transform: scale(1);    opacity: 0.6; }
  70%  { transform: scale(1.22); opacity: 0; }
  100% { opacity: 0; }
}

@media (max-width: 920px) {
  .visual-card { max-width: 380px; }
  .web-node { width: 72px; height: 72px; font-size: 10.5px; }
  .web-node--hub { width: 92px; height: 92px; }
  .web-node--hub .web-node__seal svg { width: 18px; height: 18px; }
  .web-node--hub .web-node__name { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  .web-lines line { animation: none; opacity: 0.5; }
  .web-node { animation: none; opacity: 1; transform: translate(-50%, -50%); }
  .web-node--hub::after { animation: none; opacity: 0.5; }
}

/* ============================================================================
   CATEGORY / TRUST STRIP
   ========================================================================== */
.logos { max-width: var(--maxw); margin: 0 auto; padding: clamp(28px,5vw,52px) var(--pad); text-align: center; }
.logos__label { font-size: 13px; font-weight: 500; letter-spacing: 0.02em; color: var(--muted); margin-bottom: 22px; }
.logos__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--navy);
  background: var(--surface); border: 1px solid var(--border-2); box-shadow: var(--shadow-sm);
  padding: 10px 16px; border-radius: 999px; transition: transform .25s var(--ease-out), border-color .25s, color .25s;
}
.chip__ic { color: var(--copper-700); }
.chip:hover { transform: translateY(-2px); border-color: var(--copper); color: var(--copper-700); }

/* ============================================================================
   SECTION HEADINGS
   ========================================================================== */
.section-head { max-width: var(--maxw); margin: 0 auto; padding: clamp(60px,9vw,110px) var(--pad) clamp(34px,4vw,50px); }
.section-head--center { text-align: center; }
.section-head--center .section-lead, .section-head--center .section-title { margin-inline: auto; }
.kicker { display: inline-block; font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--copper-700); background: var(--copper-50); padding: 5px 12px; border-radius: 999px; margin-bottom: 18px; }
.section-title { font-size: clamp(2rem, 4.4vw, 3.2rem); color: var(--ink); }
.t-strike { text-decoration: line-through; text-decoration-thickness: 3px; text-decoration-color: #e0241f; }
.t-hl {
  background: linear-gradient(180deg, transparent 50%, rgba(52,199,89,0.55) 50%, rgba(52,199,89,0.55) 86%, transparent 86%);
  padding: 0 0.08em;
}
.section-lead { max-width: 46ch; margin-top: 18px; font-size: 1.05rem; color: var(--body); }

/* ============================================================================
   BENTO FEATURES
   ========================================================================== */
.features { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad) clamp(20px,4vw,40px); }
.features .section-head { padding-top: 0; padding-left: 0; padding-right: 0; }
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  position: relative; padding: 28px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-2); }
.card--accent { background: linear-gradient(165deg, #7b1e2b, #3a0d15); border-color: transparent; }
.card--accent .card__title { color: #fff; }
.card--accent .card__body { color: #edcfd4; }
.card--accent .card__icon { background: rgba(201,149,107,0.18); color: #e0b489; }
.card__icon {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--copper-50); color: var(--copper-700); margin-bottom: 18px;
}
.card__icon--green { background: var(--green-50); color: var(--green-700); }
.card__icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card__title { font-size: 1.22rem; color: var(--ink); margin-bottom: 9px; }
.card__body { font-size: 14.5px; color: var(--body); line-height: 1.6; }

/* showcase card: full-width row, copy centered on top, the iPhone in the middle */
.card--showcase {
  grid-column: 1 / -1;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: clamp(30px, 4vw, 52px);
}
.card--showcase .card__copy { max-width: 600px; }
.card--showcase .card__icon { margin-inline: auto; }
.card--showcase .card__title { font-size: clamp(1.5rem, 3vw, 1.9rem); }
.card--showcase .phone { margin-top: clamp(22px, 3vw, 34px); }

/* iPhone mockup */
.phone {
  width: clamp(216px, 24vw, 248px); flex: none; align-self: center;
  aspect-ratio: 244 / 500; padding: 8px; border-radius: 40px;
  background: linear-gradient(155deg, #34343a, #0c0c0e 62%);
  box-shadow: 0 28px 54px -22px rgba(58,13,23,0.45), 0 6px 16px rgba(0,0,0,0.22), inset 0 0 0 1.5px rgba(255,255,255,0.08);
}
.phone__screen {
  position: relative; height: 100%; width: 100%; overflow: hidden;
  border-radius: 32px; background: linear-gradient(180deg, #fdfbf7, #f4ede3);
}
.phone__island { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 32%; height: 17px; background: #0c0c0e; border-radius: 999px; z-index: 4; }

.appui { display: flex; flex-direction: column; height: 100%; padding: 13px 12px 14px; }
.appui__bar { display: flex; justify-content: space-between; align-items: center; color: var(--ink); font-size: 10px; font-weight: 700; padding: 0 4px 14px; }
.appui__head { display: flex; align-items: center; gap: 7px; margin-bottom: 12px; padding: 0 2px; }
.appui__seal { color: var(--copper); display: inline-flex; }
.appui__title { font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--ink); }
.appui__items { display: grid; gap: 8px; }
.appui__item { display: flex; align-items: center; gap: 9px; padding: 8px 10px; border-radius: 12px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.appui__ic { flex: none; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: var(--copper-50); color: var(--copper-700); }
.appui__ic svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.appui__name { flex: 1; min-width: 0; font-size: 11.5px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.appui__check { flex: none; width: 17px; height: 17px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--green); }
.appui__check svg { width: 11px; height: 11px; }
.appui__item b { flex: none; font-size: 11px; color: var(--body); font-weight: 700; white-space: nowrap; }
.appui__add {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px 10px; border-radius: 12px; border: 1.5px dashed var(--copper);
  color: var(--copper-700); font-size: 11.5px; font-weight: 700;
}
.appui__plus { font-size: 14px; line-height: 1; }
.appui__total { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; margin-top: auto; padding: 14px 4px 12px; }
.appui__total span { font-size: 11px; color: var(--muted); }
.appui__total b { font-family: var(--display); font-size: 17px; color: var(--ink); white-space: nowrap; }
.appui__cta { display: block; text-align: center; width: 100%; padding: 12px; border-radius: 13px; background: var(--navy); color: #fff; font-weight: 700; font-size: 12.5px; }

@media (max-width: 900px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .card--showcase { padding: clamp(24px, 5vw, 34px); }
  /* size the phone relative to the card so margins stay even and it scales down */
  .card--showcase .phone { width: min(244px, 82%); }
}

/* ============================================================================
   STEPS
   ========================================================================== */
.steps { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad) clamp(40px,7vw,80px); }
.steps__grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { position: relative; padding: 30px 26px; border-radius: var(--radius); background: var(--surface-2); border: 1px solid var(--border); }
.step__num { font-family: var(--display); font-weight: 600; font-size: clamp(3.4rem, 6vw, 4.75rem); line-height: 0.95; color: var(--copper); display: block; margin-bottom: 18px; }
.step__title { font-size: 1.3rem; color: var(--ink); margin-bottom: 10px; }
.step__body { font-size: 14.5px; color: var(--body); }
@media (max-width: 820px) { .steps__grid { grid-template-columns: 1fr; } }

/* ============================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 820px; margin: 0 auto; padding: 0 var(--pad) clamp(50px,8vw,100px); }
.faq .section-head { padding-top: 0; }
.faq__list { display: grid; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.faq__item[open] { border-color: var(--border-2); box-shadow: var(--shadow-sm); }
.faq__item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 22px; font-family: var(--display); font-weight: 600; font-size: 1.08rem; color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon { position: relative; flex: none; width: 18px; height: 18px; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--copper); border-radius: 2px; transition: transform .3s var(--ease-out); }
.faq__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__icon::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq__item[open] .faq__icon::after { transform: scaleY(0); }
.faq__answer { overflow: hidden; }
.faq__answer p { padding: 0 22px 22px; font-size: 15px; color: var(--body); line-height: 1.65; }
.faq__answer a { color: var(--copper-700); font-weight: 600; }

/* ============================================================================
   FINAL CTA
   ========================================================================== */
.cta { padding: clamp(20px,4vw,40px) var(--pad) clamp(60px,10vw,120px); }
.cta__inner {
  max-width: 760px; margin: 0 auto; text-align: center;
  padding: clamp(48px,7vw,80px) clamp(28px,5vw,60px); border-radius: 30px;
  background: linear-gradient(165deg, #7b1e2b, #3a0c14);
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.cta__inner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(90% 120% at 50% -10%, rgba(201,149,107,0.30), transparent 60%); pointer-events: none; }
.cta__seal { position: relative; color: var(--copper); display: inline-flex; margin-bottom: 18px; animation: spin-slow 26s linear infinite; }
@keyframes spin-slow { to { transform: rotate(360deg); } }
.cta__title { position: relative; color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 14px; }
.cta__sub { position: relative; color: #edcfd4; font-size: clamp(1rem,1.5vw,1.15rem); margin-bottom: 30px; }
.cta .btn--primary { position: relative; background: var(--copper); color: #2a1c10; }
.cta .btn--primary:hover { background: #d8a578; }
.cta__micro { position: relative; margin-top: 16px; font-size: 13px; color: #8a96ad; }

/* ============================================================================
   FOOTER
   ========================================================================== */
.footer { max-width: var(--maxw); margin: 0 auto; padding: clamp(50px,7vw,80px) var(--pad) 40px; border-top: 1px solid var(--border); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 40px; margin-bottom: 48px; }
.footer__meaning { margin-top: 16px; font-size: 14px; color: var(--muted); max-width: 32ch; }
.footer__col h4 { font-family: var(--ui); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); margin-bottom: 16px; }
.footer__col a { display: block; font-size: 14.5px; color: var(--body); margin-bottom: 11px; transition: color .2s; }
.footer__col a:hover { color: var(--copper-700); }
.footer__subscribe .btn { margin-top: 2px; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 26px; border-top: 1px solid var(--border); font-size: 13px; color: var(--muted); }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: span 2; } }

/* ============================================================================
   MOTION HOOKS / REDUCED MOTION
   ========================================================================== */
.js [data-reveal], .js [data-reveal-line] > * { will-change: transform, opacity; }
@media (prefers-reduced-motion: reduce) {
  .badge__dot, .web-node--hub::after, .cta__seal { animation: none !important; }
  .btn, .card, .chip { transition: none !important; }
}
