/* =========================================================
   Poof — clean editorial landing (Espa-inspired, refined)
   ========================================================= */

:root {
  /* surfaces */
  --bg: #F5EFE3;            /* page cream */
  --bg-tint: #EDE5D2;
  --surface: #FFFFFF;
  --surface-2: #FBF6EA;
  --ink: #181818;
  --ink-2: #545159;
  --ink-3: #8A8590;
  --line: #E6DEC8;
  --line-2: #EFE7D2;

  /* accents — used sparingly */
  --coral: #FF5C4D;
  --coral-deep: #E84A3C;
  --coral-tint: #FFE7E1;
  --sun: #FFC53D;
  --sun-tint: #FFF1CB;
  --mint: #1FB295;
  --mint-tint: #E0F1EC;
  --sky: #6FA8E0;
  --sky-tint: #E7F0FB;
  --pink: #F08DB8;
  --pink-tint: #FBE4ED;
  --plum: #4C3A5C;

  /* type — driven by Tweaks */
  --f-head: "Roboto", -apple-system, "Segoe UI", sans-serif;
  --f-serif: "Instrument Serif", "Times New Roman", serif;
  --f-sans: "Roboto", -apple-system, "Segoe UI", sans-serif;
  --f-mono: "Roboto Mono", ui-monospace, monospace;
  --f-mark: var(--f-head);
  /* tunables */
  --h-weight: 700;
  --h-spacing: -0.03em;
  --h-italic: normal;
  --pad-scale: 1;

  /* radii */
  --r-xs: 10px;
  --r-sm: 14px;
  --r:    20px;
  --r-lg: 28px;
  --r-xl: 40px;

  /* shadows */
  --sh-xs: 0 1px 2px rgba(26,26,31,.04);
  --sh-sm: 0 4px 16px -6px rgba(26,26,31,.08);
  --sh-md: 0 16px 48px -16px rgba(26,26,31,.18);
  --sh-lg: 0 30px 80px -24px rgba(26,26,31,.25);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); }
body {
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.003em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: 0; padding: 0; color: inherit; }
input, textarea { font-family: inherit; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--sun); color: var(--ink); }

/* ----------------- TYPE ----------------- */
.serif {
  font-family: var(--f-head);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.04;
}
.italic { font-style: italic; }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.marker {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  z-index: 0;
}
.marker::before {
  content: "";
  position: absolute;
  inset: -6% -4% -4% -4%;
  background: linear-gradient(95deg, #FB8855 0%, #D45F7E 45%, #B83E8E 70%, #9C3597 100%);
  z-index: -1;
  transform: rotate(-1deg) skewX(-3deg);
  border-radius: 6px;
  opacity: 1;
  box-shadow: 0 8px 24px -10px rgba(184, 62, 142, .55);
}
.marker { color: #fff; }

/* ----------------- LAYOUT ----------------- */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.wrap-tight { max-width: 980px; margin: 0 auto; padding: 0 32px; }
section { position: relative; }
.pad   { padding: calc(96px * var(--pad-scale)) 0; }
.pad-sm { padding: calc(72px * var(--pad-scale)) 0; }
@media (max-width: 720px) {
  .pad { padding: calc(64px * var(--pad-scale)) 0; }
  .pad-sm { padding: calc(48px * var(--pad-scale)) 0; }
}

.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ----------------- REVEAL ----------------- */
.reveal { opacity: 1; transform: none; transition: opacity .85s cubic-bezier(.2,.7,.2,1), transform .85s cubic-bezier(.2,.7,.2,1); transition-delay: var(--rd, 0ms); }
.reveal.pre { opacity: 0; transform: translateY(22px); }

/* ----------------- BUTTONS ----------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  padding: 13px 22px;
  border-radius: 999px;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-ink { background: var(--ink); color: var(--bg); }
.btn-ink:hover { transform: translateY(-1px); box-shadow: var(--sh-md); }
.btn-coral { background: var(--coral); color: #fff; font-weight: 600; }
.btn-coral:hover { background: var(--coral-deep); transform: translateY(-1px); box-shadow: 0 14px 30px -10px rgba(255,92,77,.5); }
.btn-outline { background: var(--surface); border: 1px solid var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); }
.btn-ghost { color: var(--ink-2); padding: 12px 16px; }
.btn-ghost:hover { color: var(--ink); }
.btn-lg { padding: 17px 28px; font-size: 16px; }
.btn-block { width: 100%; }

/* ----------------- NAV ----------------- */
.nav-wrap {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,242,232,.80);
  backdrop-filter: saturate(1.35) blur(14px);
  -webkit-backdrop-filter: saturate(1.35) blur(14px);
  border-bottom: 1px solid var(--line-2);
}
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 68px;
}
.nav-links { display: flex; gap: 32px; justify-content: center; }
.nav-link { font-size: 14px; color: var(--ink-2); transition: color .15s; cursor: pointer; }
.nav-link:hover { color: var(--ink); }
.nav-cta { display: flex; gap: 8px; justify-content: flex-end; align-items: center; }

.logo {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--ink);
  white-space: nowrap;
}
.logo-lockup {
  height: 30px;
  width: auto;
  display: block;
}
.logo-mark {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: var(--ink);
  color: var(--sun);
  display: grid; place-items: center;
  font-size: 16px;
  font-family: var(--f-head);
  font-style: italic;
}

@media (max-width: 880px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
}

/* ----------------- LAUNCH STAT BAR ----------------- */
.launch-stat-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: 15px;
  line-height: 1.35;
  flex-wrap: wrap;
  border: 1px solid var(--ink);
  box-shadow: 0 14px 36px -16px rgba(31,26,46,.35);
}
.launch-stat-num {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--sun);
  flex-shrink: 0;
}
.launch-stat-text {
  flex: 1;
  min-width: 0;
  color: rgba(250,239,210,.85);
}
.launch-stat-text strong { color: var(--bg); font-weight: 700; }
.launch-stat-cta {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sun);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,197,61,.15);
  transition: background .15s;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.launch-stat-cta:hover { background: rgba(255,197,61,.25); }
@media (max-width: 640px) {
  .launch-stat-bar { border-radius: 22px; }
}

/* ----------------- HERO ----------------- */
.hero {
  padding: 24px 0 96px;
}
.hero-card {
  position: relative;
  border-radius: var(--r-xl);
  min-height: 78vh;
  max-height: 760px;
  display: grid;
  grid-template-rows: 1fr auto;
  box-shadow: var(--sh-lg);
  isolation: isolate; /* clip stacking context only */
}
@media (max-width: 880px) { .hero-card { min-height: 560px; } }

.hero-photo {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0E0915 0%, #3A1F5C 35%, #9C3597 70%, #FB8855 100%);
  z-index: 0;
  overflow: hidden;
  border-radius: var(--r-xl);
}
.hero-photo svg { width: 100%; height: 100%; display: block; }

.hero-card::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 20%, rgba(255,200,80,.15), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(0,0,0,.55) 70%, rgba(0,0,0,.85) 100%),
    linear-gradient(90deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.3) 35%, rgba(0,0,0,0) 60%);
  z-index: 1;
  pointer-events: none;
  border-radius: var(--r-xl);
}

.hero-content {
  position: relative; z-index: 2;
  padding: 64px;
  align-self: end;
  color: #fff;
  max-width: 580px;
}
@media (max-width: 720px) { .hero-content { padding: 36px 28px; max-width: 100%; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.05em;
  color: rgba(255,255,255,.92);
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sun); box-shadow: 0 0 0 4px rgba(255,197,61,.25); }

.hero-h {
  font-family: var(--f-head);
  font-weight: var(--h-weight);
  font-size: clamp(48px, 6.6vw, 92px);
  letter-spacing: var(--h-spacing);
  font-style: var(--h-italic);
  line-height: 0.98;
  margin: 22px 0 18px;
  color: #fff;
  text-wrap: balance;
}
.hero-h em {
  font-style: var(--h-italic);
  font-weight: inherit;
  background: linear-gradient(95deg, #FB8855 0%, #D45F7E 45%, #B83E8E 70%, #9C3597 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.sec-head h2 em, .feature-copy h3 em, .final h2 em { font-style: var(--h-italic); font-weight: inherit; }
.hero-sub {
  font-size: clamp(17px, 1.4vw, 19px);
  color: rgba(255,255,255,.85);
  max-width: 54ch;
  line-height: 1.5;
  margin: 0;
}
.hero-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,.88);
  text-transform: uppercase;
}
.hero-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 4px rgba(74,222,128,.25);
  animation: hero-live-pulse 1.8s ease-in-out infinite;
}
@keyframes hero-live-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(74,222,128,.25); }
  50% { box-shadow: 0 0 0 7px rgba(74,222,128,.08); }
}

/* Chat bubble overlay (Espa-style) */
.bubble {
  position: absolute;
  z-index: 2;
  padding: 12px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-family: var(--f-sans);
  font-weight: 500;
  box-shadow: 0 12px 36px -10px rgba(0,0,0,.4);
  max-width: 260px;
  backdrop-filter: blur(8px);
  line-height: 1.4;
}
.bubble-user {
  background: rgba(255,255,255,.95);
  color: var(--ink);
  top: 56px;
  right: 56px;
  border-bottom-right-radius: 6px;
  max-width: 280px;
}
.bubble-ai {
  background: rgba(20,16,28,.85);
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  top: 134px;
  right: 110px;
  border-bottom-right-radius: 6px;
  max-width: 250px;
}
@media (max-width: 880px) {
  .bubble-user { top: 28px; right: 24px; left: 24px; max-width: none; }
  .bubble-ai { top: 100px; right: 24px; left: 60px; max-width: none; }
}

/* Floating prompt card below hero */
.prompt-card {
  margin-top: -56px;
  position: relative;
  z-index: 5;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 22px 22px 16px;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
}
.prompt-card.pulse { transform: scale(1.012); box-shadow: 0 36px 90px -24px rgba(26,26,31,.32); }
.prompt-tag {
  position: absolute; top: -14px; left: 22px;
  background: var(--ink); color: var(--bg);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.08em;
  font-family: var(--f-mono);
  white-space: nowrap;
  line-height: 1;
}
.prompt-card textarea {
  width: 100%;
  min-height: 70px;
  resize: none; border: 0; outline: 0;
  background: transparent;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.5;
  padding: 4px 0 0;
}
.prompt-card textarea::placeholder { color: var(--ink-3); }
.prompt-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--line);
  gap: 12px;
}
.prompt-icons { display: flex; gap: 2px; }
.icon-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--ink-2);
  padding: 8px 10px; border-radius: 8px;
  transition: background .15s, color .15s;
}
.icon-btn:hover { background: var(--bg-tint); color: var(--ink); }

/* Chips under prompt */
.chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  margin-top: 24px;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 13.5px; font-weight: 500;
  color: var(--ink-2);
  transition: transform .15s, box-shadow .15s, color .15s, border-color .15s;
}
.chip:hover { color: var(--ink); border-color: var(--ink); transform: translateY(-1px); }
.chip-hint { font-size: 13px; color: var(--ink-3); margin: 14px 0 0; text-align: center; }
.chips-label {
  text-align: center;
  margin: 36px 0 14px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ----------------- LOGO STRIP — scrolling marquee ----------------- */
.logos {
  padding: 48px 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  overflow: hidden;
}
.logos-label {
  text-align: center;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 32px;
}
.logos-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.logos-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: scroll-x 36s linear infinite;
}
.logo-item {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink-2);
  opacity: .55;
  white-space: nowrap;
  transition: opacity .25s, color .25s;
}
.logo-item:hover { opacity: 1; color: var(--ink); }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 40px)); }
}

/* ----------------- SECTION HEAD ----------------- */
.sec-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.sec-head h2 {
  font-family: var(--f-head);
  font-weight: var(--h-weight);
  font-size: clamp(42px, 5.4vw, 68px);
  letter-spacing: var(--h-spacing);
  font-style: var(--h-italic);
  line-height: 1.04;
  margin: 14px 0 16px;
  color: var(--ink);
}
.sec-head h2 em { font-style: italic; color: var(--ink-2); }
.sec-head p {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 14px auto 0;
  line-height: 1.55;
}
@media (max-width: 720px) { .sec-head { margin-bottom: 40px; } }

/* ----------------- FEATURE ZIGZAG ----------------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 88px;
}
.feature:last-child { margin-bottom: 0; }
.feature.reverse .feature-art { order: 2; }
.feature.reverse .feature-copy { order: 1; }
@media (max-width: 880px) {
  .feature { grid-template-columns: 1fr; gap: 32px; margin-bottom: 64px; }
  .feature.reverse .feature-art { order: 1; }
  .feature.reverse .feature-copy { order: 2; }
}

.feature-art {
  border-radius: var(--r-lg);
  aspect-ratio: 5 / 4;
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
  box-shadow: var(--sh-md);
}
.feature-art > svg, .feature-art > .art-canvas { width: 100%; height: 100%; display: block; }

.feature-copy h3 {
  font-family: var(--f-head);
  font-weight: var(--h-weight);
  font-size: clamp(34px, 3.8vw, 52px);
  letter-spacing: var(--h-spacing);
  font-style: var(--h-italic);
  line-height: 1.06;
  margin: 14px 0 16px;
  color: var(--ink);
}
.feature-copy p {
  font-size: 17.5px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 48ch;
  margin: 0 0 24px;
}
.feature-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14.5px; font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: gap .15s;
}
.feature-link:hover { gap: 10px; }

/* art canvas helpers — gradient "photos" */
.art-canvas {
  position: relative;
  width: 100%; height: 100%;
}
.art-warm   { background: linear-gradient(135deg, #1A0F22 0%, #4A1F5C 35%, #9C3597 65%, #FB8855 100%); }
.art-sunset { background: linear-gradient(150deg, #1F1A2E 0%, #4C3A5C 28%, #B83E8E 55%, #FB8855 82%, #FFE08A 100%); }
.art-mint   { background: linear-gradient(160deg, #0F2C3A 0%, #1F6A8A 40%, #6FCFB7 72%, #DFF6EE 100%); }

/* mock chat sample inside feature art */
.mini-chat {
  position: absolute;
  inset: auto 24px 24px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.mini-bubble {
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 13.5px;
  font-family: var(--f-sans);
  max-width: 80%;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,.3);
}
.mini-bubble.user { align-self: flex-end; background: rgba(255,255,255,.95); color: var(--ink); border-bottom-right-radius: 6px; }
.mini-bubble.ai   { align-self: flex-start; background: rgba(26,26,31,.78); color: #fff; border: 1px solid rgba(255,255,255,.12); border-bottom-left-radius: 6px; }

/* ----- typewriter caret ----- */
.caret {
  display: inline-block;
  width: 2px;
  margin-left: 1px;
  color: var(--coral);
  font-weight: 400;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* ----- typing dots ----- */
.dots { display: inline-flex; gap: 4px; align-items: center; vertical-align: middle; }
.dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
  opacity: .35;
  animation: dot 1.2s ease-in-out infinite;
}
.dots span:nth-child(2) { animation-delay: .15s; }
.dots span:nth-child(3) { animation-delay: .3s; }
@keyframes dot {
  0%, 80%, 100% { opacity: .35; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-2px); }
}

/* ----- build progress badge ----- */
.build-progress {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* ----- publish card ----- */
.publish-scene { display: grid; place-items: center; }
.publish-card {
  display: flex; align-items: center; gap: 14px;
  background: #fff;
  padding: 18px 24px;
  border-radius: 18px;
  box-shadow: 0 24px 60px -16px rgba(0,0,0,.4);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.publish-card.pulse {
  transform: scale(1.04);
  box-shadow: 0 30px 80px -16px rgba(0,0,0,.5), 0 0 0 6px rgba(31,178,149,.18);
}
.publish-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--mint);
  color: #fff;
  display: grid; place-items: center;
}
.publish-title { font-family: var(--f-head); font-weight: 700; font-size: 17px; color: var(--ink); letter-spacing: -0.01em; }
.publish-url { font-family: var(--f-mono); font-size: 12.5px; color: var(--ink-3); margin-top: 2px; }

/* phone mock inside feature */
.feature-phone {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(-4deg);
  width: 58%; aspect-ratio: 9 / 18;
  background: var(--ink);
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 28px 60px -20px rgba(0,0,0,.5);
}
.feature-phone-inner {
  background: #fff; border-radius: 24px; height: 100%; padding: 18px; overflow: hidden;
  display: flex; flex-direction: column; gap: 10px;
}
.fp-row {
  height: 14px; border-radius: 6px; background: var(--bg-tint);
}
.fp-row.lg { height: 22px; }
.fp-row.coral { background: var(--coral); }
.fp-row.sun { background: var(--sun); }
.fp-row.mint { background: var(--mint-tint); }

/* ============================================================
   AGENTS SECTION — for landing page
   ============================================================ */
.agents-section {
  background: var(--surface-2);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}

/* Bolder, punchier headline treatment for the agents section */
.agents-section .sec-head { max-width: 880px; margin-bottom: 72px; }
.agents-section .sec-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--coral-tint);
  color: var(--coral-deep);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  margin-bottom: 24px;
}
.agents-section .sec-head h2 {
  font-weight: 800;
  font-size: clamp(48px, 6.4vw, 88px);
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0 0 22px;
  text-wrap: balance;
}
.agents-section .sec-head h2 em {
  font-style: italic;
  font-weight: 800;
  color: var(--coral-deep);
}
.agents-section .sec-head p {
  font-size: 19px;
  max-width: 60ch;
}
.agents-section .agent-copy h3 {
  font-weight: 800;
  letter-spacing: -0.025em;
}
.agents-section .agent-tag {
  font-weight: 700;
  color: var(--coral-deep);
}
.agents-list {
  display: flex;
  flex-direction: column;
  gap: 88px;
}
@media (max-width: 720px) { .agents-list { gap: 56px; } }

.agent-tile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) {
  .agent-tile { grid-template-columns: 1fr; gap: 28px; }
  .agent-tile.reverse .agent-art  { order: 1; }
  .agent-tile.reverse .agent-copy { order: 2; }
}
.agent-tile.reverse .agent-copy { order: 2; }
.agent-tile.reverse .agent-art  { order: 1; }

.agent-copy h3 {
  font-family: var(--f-head);
  font-weight: var(--h-weight);
  font-style: var(--h-italic);
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.06;
  margin: 14px 0 14px;
  color: var(--ink);
}
.agent-copy p {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 48ch;
  margin: 0 0 22px;
}
.agent-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--coral);
}

.agent-art {
  border-radius: 28px;
  aspect-ratio: 5/4;
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow: 0 30px 60px -28px rgba(31,26,46,.35);
  border: 1px solid var(--line);
}
.agent-coral .agent-art { background: linear-gradient(135deg, #FFE7E1, #FFCFC2 60%, #FFB3A0); }
.agent-sky   .agent-art { background: linear-gradient(135deg, #E7F0FB, #C0DAF3 65%, #93BFE9); }
.agent-mint  .agent-art { background: linear-gradient(135deg, #E0F1EC, #B5E3D5 60%, #7DCFB6); }
.agent-plum  .agent-art { background: linear-gradient(135deg, #2A1F3D, #3a2845 50%, #5d3a83); color: #fff; }
.agent-sun   .agent-art { background: linear-gradient(135deg, #FFF1CB, #FFE08A 55%, #FFC53D); }

/* ---- Mock cards (shared) ---- */
.mock-card {
  background: rgba(255,255,255,.94);
  border-radius: 18px;
  padding: 18px 20px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,.25);
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--ink);
  backdrop-filter: blur(4px);
}
.mock-row {
  display: flex; align-items: center; gap: 12px;
  font-size: 13.5px;
  color: var(--ink);
  padding: 6px 0;
  border-top: 1px solid var(--line-2);
}
.mock-row:first-of-type { border-top: 0; }
.mock-row.active { font-weight: 600; }
.mock-row.pass { color: var(--ink); }
.mock-row.fail { color: var(--coral-deep); }
.mock-row.warn { color: #9a7000; }
.mock-row-hint { font-size: 11px; color: var(--ink-3); margin-top: 2px; font-family: var(--f-mono); }
.mock-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bg-tint);
  color: var(--ink-3);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 11.5px;
  flex-shrink: 0;
  font-family: var(--f-mono);
}
.mock-num.mint  { background: var(--mint-tint);   color: var(--mint); }
.mock-num.coral { background: var(--coral-tint);  color: var(--coral-deep); }
.mock-num.warn  { background: var(--sun-tint);    color: #9a7000; }
.mock-num.ink   { background: var(--ink);         color: var(--sun); }

.mock-line { height: 7px; border-radius: 3px; background: var(--bg-tint); }
.mock-line.t { width: 60%; background: var(--ink); height: 9px; }
.mock-line.w { width: 90%; }
.mock-line.s { width: 45%; }

.mock-pill {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--coral-tint);
  color: var(--coral-deep);
  margin-top: 4px;
}
.mock-pill.must { background: var(--coral-tint); color: var(--coral-deep); }

/* ---- Plan mock ---- */
.mock-plan {
  position: relative;
}
.mock-plan .mock-bubble {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.mock-bubble-head {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}

/* ---- Editor mock ---- */
.mock-editor {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 14px;
  max-width: 420px;
}
.mock-editor-chat {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--bg-tint);
  border-radius: 10px;
  padding: 10px;
}
.mock-msg {
  font-size: 11.5px;
  padding: 8px 10px;
  border-radius: 10px;
  line-height: 1.3;
}
.mock-msg.user { background: var(--ink); color: var(--bg); align-self: flex-end; }
.mock-msg.ai {
  background: var(--surface);
  color: var(--ink-2);
  display: inline-flex; gap: 4px; align-items: center;
  align-self: flex-start;
}
.mock-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ink-3);
  animation: dot 1.2s ease-in-out infinite;
}
.mock-dot:nth-child(2) { animation-delay: .15s; }
.mock-dot:nth-child(3) { animation-delay: .3s; }
@keyframes dot {
  0%, 80%, 100% { opacity: .35; }
  40% { opacity: 1; }
}
.mock-editor-preview {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px 12px;
}
.mock-vp { display: flex; gap: 3px; padding-bottom: 6px; border-bottom: 1px solid var(--line-2); margin-bottom: 8px; }
.mock-vp span { width: 6px; height: 6px; border-radius: 50%; background: var(--bg-tint); }
.mock-vp span:nth-child(1) { background: var(--coral); }
.mock-vp span:nth-child(2) { background: var(--sun); }
.mock-vp span:nth-child(3) { background: var(--mint); }
.mock-card-inner { display: flex; flex-direction: column; gap: 6px; }
.mock-cta-pink {
  margin-top: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  align-self: flex-start;
}

/* ---- Test mock ---- */
.mock-uptime {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  gap: 3px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line-2);
}
.mock-uptile {
  height: 16px;
  border-radius: 3px;
  background: var(--mint);
}
.mock-uptile.up   { background: var(--mint); }
.mock-uptile.slow { background: var(--sun); }
.mock-uptile.down { background: var(--coral); }

/* ---- Security mock ---- */
.mock-sec {
  background: rgba(20,15,30,.78);
  color: #fff;
  border: 1px solid rgba(255,255,255,.1);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  max-width: 420px;
  padding: 22px;
}
.mock-sec .mock-row {
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.08);
  font-size: 12.5px;
  padding: 4px 0;
}
.mock-sec .mock-num.mint { background: rgba(31,178,149,.22); color: var(--mint); }
.mock-sec-rows { display: flex; flex-direction: column; gap: 0; }
.mock-score-ring { display: grid; place-items: center; }

/* ---- Launch mock ---- */
.mock-launch-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-2);
}
.mock-launch-kicker {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.mock-launch-num {
  font-weight: 700;
  font-size: 44px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--coral);
}
.mock-launch-num small { font-size: 18px; font-weight: 500; opacity: .65; }
.mock-score-pill {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--mint-tint);
  color: var(--mint);
  letter-spacing: -0.005em;
}
.mock-streak { display: flex; gap: 4px; padding: 6px 0; }
.mock-streak-dot { width: 18px; height: 5px; border-radius: 3px; background: var(--bg-tint); }
.mock-streak-dot.on { background: var(--coral); }
.mock-cta-coral {
  margin-top: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.mock-mkt { display: flex; flex-direction: column; gap: 0; }
.mock-mkt-row {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0;
  border-top: 1px solid var(--line-2);
}
.mock-mkt-row:first-of-type { border-top: 0; }
.mock-mkt-letter {
  width: 34px; height: 34px;
  border-radius: 9px;
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.mock-mkt-tag {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  font-weight: 600;
}
.mock-mkt-name {
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: -0.005em;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-draft-bubble {
  background: var(--sun-tint);
  border-radius: 10px;
  padding: 10px 12px;
  margin-top: 8px;
  display: flex; flex-direction: column; gap: 5px;
}

/* end agents */
.templates-section {
  background: var(--surface-2);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.tpl-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: -8px auto 48px;
}
.tpl-filter {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: 999px;
  color: var(--ink-2);
  background: transparent;
  transition: background .2s, color .2s;
}
.tpl-filter:hover { background: var(--bg-tint); color: var(--ink); }
.tpl-filter.active { background: var(--ink); color: var(--bg); }

.tpl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) { .tpl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .tpl-grid { grid-template-columns: 1fr; } }

.tpl-card {
  border-radius: 24px;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.tpl-card:hover { transform: translateY(-6px); }
.tpl-card:hover .tpl-thumb::after { opacity: 1; }
.tpl-card:hover .tpl-use { gap: 8px; color: var(--ink); }

.tpl-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 12px 30px -16px rgba(0,0,0,.18);
}
.tpl-thumb::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 24px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.35);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}

.tpl-image-slot {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.18)),
    var(--tpl-bg, var(--bg-tint));
}

/* Illustrated mini-app preview overlaid on the gradient thumb */
.tpl-preview {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 7% 8%;
}
.tpl-preview-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 12px 28px rgba(20, 12, 28, .28));
  transition: transform .5s cubic-bezier(.18,.89,.32,1.15);
}
.tpl-card:hover .tpl-preview-svg {
  transform: translateY(-4px) scale(1.02);
}
.tpl-image-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0;
  transition: opacity .35s;
  box-shadow: 0 6px 18px -6px rgba(0,0,0,.3);
}
.tpl-card:hover .tpl-image-hint { opacity: 1; }

.tpl-cat-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--f-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255,255,255,.15);
}

.tpl-meta {
  padding: 18px 6px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.tpl-meta-left {
  display: flex; align-items: center; gap: 12px;
  min-width: 0;
}
.tpl-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}
.tpl-meta h4 {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tpl-meta p { margin: 2px 0 0; font-size: 13px; color: var(--ink-3); }
.tpl-use {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
  transition: gap .25s, color .25s;
  flex-shrink: 0;
}

.tpl-footer {
  text-align: center;
  margin-top: 64px;
}

/* "Photo-style" template thumbnails — pure CSS */
.tpl-bakery  { --tpl-bg: linear-gradient(135deg,#3a1410 0%,#6e2a1c 35%,#c0784a 70%,#ffd9a8 100%); background: var(--tpl-bg); }
.tpl-portal  { --tpl-bg: linear-gradient(150deg,#102a3d 0%,#1c4a73 45%,#6FA8E0 78%,#DCEDFB 100%); background: var(--tpl-bg); }
.tpl-yoga    { --tpl-bg: linear-gradient(160deg,#1F1A2E 0%,#4C3A5C 40%,#E892B5 75%,#FBE4ED 100%); background: var(--tpl-bg); }
.tpl-shop    { --tpl-bg: linear-gradient(140deg,#0F3A33 0%,#1FB295 50%,#DFF6EE 100%); background: var(--tpl-bg); }
.tpl-book    { --tpl-bg: linear-gradient(135deg,#3a2a14 0%,#7d5a32 40%,#d6a85a 80%,#fff1cb 100%); background: var(--tpl-bg); }
.tpl-event   { --tpl-bg: linear-gradient(155deg,#1A1A1F 0%,#3a2845 35%,#9a4e74 70%,#FBE4ED 100%); background: var(--tpl-bg); }
.tpl-pet     { --tpl-bg: linear-gradient(150deg,#2a1a3d 0%,#5d3a83 50%,#b78ec9 100%); background: var(--tpl-bg); }
.tpl-invoice { --tpl-bg: linear-gradient(140deg,#142a3d 0%,#2e5e8a 50%,#bfd9f2 100%); background: var(--tpl-bg); }

.tpl-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; padding: 16px;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.45) 100%);
  color: #fff;
  font-family: var(--f-head); font-size: 18px; letter-spacing: -0.01em;
}
.tpl-mock {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -55%);
  width: 78%; aspect-ratio: 16/10;
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,.45);
  display: flex; flex-direction: column; gap: 6px;
}
.tpl-mock .l { height: 7px; border-radius: 3px; background: var(--bg-tint); }
.tpl-mock .l.t { width: 60%; background: var(--ink); height: 9px; }
.tpl-mock .l.w { width: 90%; }
.tpl-mock .l.s { width: 40%; }
.tpl-mock .row { display: flex; gap: 4px; margin-top: auto; }
.tpl-mock .row .b { flex: 1; height: 10px; border-radius: 4px; background: var(--coral); }
.tpl-mock .row .b.sec { background: var(--bg-tint); }

/* ----------------- TRUST ROW — minimal Espa-style ----------------- */
.trust-section {
  padding: 88px 0 96px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-head {
  text-align: center;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 44px);
  letter-spacing: -0.022em;
  margin: 0 0 64px;
  background: linear-gradient(95deg, #FB8855 0%, #D45F7E 35%, #B83E8E 65%, #9C3597 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.trust-head em {
  font-style: italic;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
}
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 880px) { .trust { grid-template-columns: 1fr; gap: 56px; } }
.trust-item .ic {
  width: 32px; height: 32px;
  margin: 0 auto 22px;
  color: var(--ink);
}
.trust-item h4 {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--ink);
}
.trust-item p {
  font-size: 14.5px;
  color: var(--ink-2);
  margin: 0 auto;
  max-width: 32ch;
  line-height: 1.6;
}

/* ----------------- BIG PHOTO + BUBBLES ----------------- */
.big-photo {
  position: relative;
  border-radius: var(--r-xl);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.big-photo-bg { position: absolute; inset: 0; }
/* ----------------- CUSTOMER STORY (replaces big-photo bubbles) ----------------- */
.big-photo .story-quote {
  position: absolute;
  left: 6%;
  bottom: 7%;
  right: 6%;
  max-width: 600px;
  color: #fff;
  z-index: 2;
}
.story-quote-mark {
  font-family: var(--f-serif);
  font-size: 88px;
  line-height: .6;
  color: var(--sun);
  margin-bottom: 4px;
  font-weight: 400;
}
.big-photo .story-quote p {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 24px;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.story-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.story-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 16px -4px rgba(0,0,0,.4);
}
.story-name { font-family: var(--f-head); font-weight: 700; font-size: 16px; color: #fff; }
.story-role { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 2px; }
@media (max-width: 720px) {
  .big-photo .story-quote { left: 24px; right: 24px; bottom: 24px; }
  .story-quote-mark { font-size: 56px; }
}

/* ----------------- STATS ----------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .stats { grid-template-columns: 1fr; } }
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px 40px 44px;
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .25s;
}
.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -16px rgba(26,26,31,.18);
  border-color: var(--ink-3);
}
.stat::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.stat:hover::before { transform: scaleX(1); }
.stat .num {
  font-family: var(--f-head);
  font-weight: var(--h-weight);
  font-style: var(--h-italic);
  font-size: clamp(54px, 6vw, 88px);
  letter-spacing: -0.025em;
  line-height: 0.95;
  margin-top: 36px;
  background: linear-gradient(135deg, #FB8855 0%, #D45F7E 45%, #9C3597 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.stat .label {
  margin-top: 18px;
  font-size: 15px;
  color: var(--ink-2);
  max-width: 28ch;
  line-height: 1.5;
}
.stat-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 24px;
}

/* ----------------- PRICING ----------------- */
.price-toggle {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  margin: 8px auto 0;
  font-size: 13.5px;
  color: var(--ink-2);
}
.price-toggle button {
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background .2s, color .2s;
}
.price-toggle button.active { background: var(--ink); color: var(--bg); }
.price-toggle .save {
  font-size: 11.5px;
  letter-spacing: 0.04em;
  background: var(--mint-tint);
  color: var(--mint);
  border-radius: 999px;
  padding: 3px 8px;
  font-weight: 600;
  margin-left: 4px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 56px;
}
@media (max-width: 880px) { .pricing { grid-template-columns: 1fr; } }
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  position: relative;
}
.price-card.featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.price-card.featured .price-feat li svg { color: var(--sun); }
.price-tag {
  position: absolute; top: -12px; right: 24px;
  background: var(--sun); color: var(--ink);
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.1em;
  padding: 5px 12px; border-radius: 999px;
  white-space: nowrap;
  font-family: var(--f-mono);
}
.price-name { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--f-mono); }
.price-sub { font-family: var(--f-head); font-style: italic; font-size: 14px; opacity: .68; margin-top: 6px; }
.price-amt {
  font-family: var(--f-head);
  font-weight: 400;
  font-size: 60px;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 24px 0 0;
}
.price-amt small { font-size: 14px; font-family: var(--f-sans); font-weight: 500; opacity: .65; }
.price-billed { font-size: 12.5px; opacity: .55; margin-top: 6px; }
.price-feat { list-style: none; margin: 22px 0; padding: 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.price-feat li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; font-size: 14px; line-height: 1.45; }
.price-feat li svg { color: var(--coral); margin-top: 4px; flex-shrink: 0; }
.price-cta { margin-top: auto; }

/* ----------------- FAQ ----------------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0;
  font-family: var(--f-head); font-weight: 500; font-size: 22px; letter-spacing: -0.01em;
  color: var(--ink);
}
.faq-toggle {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg-tint); display: grid; place-items: center;
  font-size: 17px;
  transition: transform .3s, background .3s, color .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle { background: var(--ink); color: var(--bg); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  color: var(--ink-2); font-size: 16px; line-height: 1.55;
  transition: max-height .35s cubic-bezier(.2,.8,.2,1);
}
.faq-item.open .faq-a { max-height: 240px; padding-bottom: 24px; }

/* ----------------- FINAL CTA ----------------- */
.final {
  text-align: center;
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}
.final-watermark {
  position: absolute;
  width: 520px;
  height: 520px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
  animation: final-mark-spin 28s linear infinite;
}
@keyframes final-mark-spin {
  from { transform: translate(-50%, -48%) rotate(0deg); }
  to   { transform: translate(-50%, -48%) rotate(360deg); }
}
.final .wrap-tight { position: relative; z-index: 1; }
.final h2 {
  font-family: var(--f-head);
  font-weight: var(--h-weight);
  font-size: clamp(54px, 8vw, 112px);
  letter-spacing: var(--h-spacing);
  font-style: var(--h-italic);
  line-height: 0.98;
  margin: 14px 0 16px;
}
.final h2 em { font-style: italic; }
.final p {
  font-size: 19px; color: var(--ink-2); max-width: 52ch; margin: 0 auto;
}
.final .prompt-card {
  margin-top: 56px;
}
.final-prompt-wrap {
  max-width: 760px;
  margin: 0 auto;
}

/* ----------------- FOOTER ----------------- */
.footer {
  padding: 0;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
/* Dark band wrapping the column grid + bottom bar */
.footer-dark {
  background: #14110E;
  color: #E9DFCB;
  padding-bottom: 44px;
  margin-top: -1px;
}

/* Editorial top band */
.footer-top {
  position: relative;
  padding: 120px 0 140px;
  background:
    radial-gradient(60% 60% at 0% 0%, rgba(255, 197, 61, .14), transparent 60%),
    radial-gradient(60% 70% at 100% 100%, rgba(255, 92, 77, .10), transparent 65%),
    linear-gradient(180deg, var(--bg) 0%, #FBF6EA 60%, #14110E 100%);
  border-bottom: 0;
  overflow: hidden;
}
.footer-top-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.footer-top-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 28px;
}
.footer-top-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 92, 77, .18);
  animation: footerDotPulse 1.8s ease-in-out infinite;
}
@keyframes footerDotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 92, 77, .18); }
  50%      { box-shadow: 0 0 0 9px rgba(255, 92, 77, .06); }
}
.footer-top-h {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(56px, 9vw, 124px);
  line-height: .95;
  letter-spacing: -0.04em;
  margin: 0 0 22px;
  color: var(--ink);
  text-wrap: balance;
}
.footer-top-h em {
  font-style: italic;
  font-weight: 400;
  color: var(--coral-deep);
}
.footer-top-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 auto 36px;
  text-wrap: pretty;
}
.footer-top-sub em {
  font-family: var(--f-head);
  font-style: italic;
  color: var(--ink);
}
.footer-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px 14px 24px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .18s cubic-bezier(.18, .89, .32, 1.15), box-shadow .18s;
  box-shadow: 0 10px 24px -10px rgba(20, 12, 28, .4);
}
.footer-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -14px rgba(20, 12, 28, .5);
}
.footer-cta-primary svg { width: 14px; height: 14px; }
.footer-cta-ghost {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--ink-3);
  cursor: pointer;
  transition: color .15s;
}
.footer-cta-ghost:hover { color: var(--ink); }

/* Decorative orbits in the top band */
.footer-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.footer-deco-sun {
  width: 140px; height: 140px;
  left: -50px;
  top: 32px;
  background:
    radial-gradient(circle at 32% 32%, #FFF1B8 0%, #FFC53D 40%, #E89B1F 80%, #B26A0A 100%);
  box-shadow:
    inset 0 -8px 18px rgba(120, 60, 0, .25),
    0 30px 80px -20px rgba(232, 155, 31, .35);
  opacity: .7;
  animation: footerDecoFloat 18s ease-in-out infinite;
}
.footer-deco-coral {
  width: 110px; height: 110px;
  right: -36px;
  top: 56px;
  background:
    radial-gradient(circle at 32% 32%, #FFD0BE 0%, #FF8E76 40%, #E84A3C 100%);
  box-shadow: 0 24px 60px -16px rgba(232, 74, 60, .4);
  opacity: .7;
  animation: footerDecoFloat 16s ease-in-out infinite reverse;
  animation-delay: -4s;
}
@keyframes footerDecoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-18px) rotate(8deg); }
}
.footer-deco-rule {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 80px;
  width: 100%;
  height: 24px;
  color: var(--ink-3);
  opacity: .25;
  z-index: 0;
}

@media (max-width: 720px) {
  .footer-deco-sun { width: 90px; height: 90px; left: -36px; top: 24px; }
  .footer-deco-coral { width: 80px; height: 80px; right: -28px; top: 40px; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 56px;
  padding-top: 72px;
  padding-bottom: 56px;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-brand p { font-size: 14.5px; color: rgba(233, 223, 203, .68); margin: 16px 0 16px; max-width: 30ch; line-height: 1.5; }
.footer .logo { color: #F5EFE3; }
.footer-stamp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border: 1px dashed var(--ink-3);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.footer-stamp-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--coral);
}
.footer-col h5 {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sun); margin: 0 0 18px;
  font-family: var(--f-mono);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14.5px; font-weight: 600; color: #E9DFCB; cursor: pointer; transition: color .15s; letter-spacing: -0.005em; }
.footer-col a:hover { color: #fff; }

/* HUGE editorial wordmark below the columns */
.footer-wordmark {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: clamp(80px, 14vw, 200px);
  line-height: .9;
  letter-spacing: -0.045em;
  margin: 64px 0 24px;
  text-align: center;
  user-select: none;
  overflow: hidden;
  text-wrap: nowrap;
  white-space: nowrap;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink) 60%, rgba(24, 24, 24, .2) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.footer-wordmark em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(180deg, var(--coral-deep) 0%, var(--coral) 60%, rgba(232, 74, 60, .2) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.footer-bar {
  margin-top: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(233, 223, 203, .14);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: rgba(233, 223, 203, .55);
}
.footer-bar a { color: rgba(233, 223, 203, .7); cursor: pointer; transition: color .15s; font-weight: 600; }
.footer-bar a:hover { color: #fff; }
.footer-bar .links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bar .links { display: flex; gap: 24px; }
.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footer-socials a svg { opacity: .75; transition: opacity .15s; }
.footer-socials a:hover svg { opacity: 1; }


/* ----------------- PROOF GRID (testimonials below Mei) ----------------- */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
@media (max-width: 880px) { .proof-grid { grid-template-columns: 1fr; gap: 16px; } }

.proof-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 22px 22px;
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.proof-card::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 18px;
  font-family: var(--f-head);
  font-size: 68px;
  line-height: 1;
  color: var(--coral);
  opacity: .18;
}
.proof-card:hover {
  border-color: var(--ink);
  box-shadow: 0 18px 40px -20px rgba(31,26,46,.18);
  transform: translateY(-2px);
}
.proof-card blockquote {
  margin: 0;
  font-family: var(--f-head);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: pretty;
}
.proof-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.proof-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  flex-shrink: 0;
}
.proof-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.proof-role {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 1px;
}


/* ============================================================
   SUBPAGE STYLES — Templates & How it works
   ============================================================ */

/* sub hero */
.sub-hero {
  padding: 88px 0 56px;
  text-align: center;
  background:
    radial-gradient(900px 460px at 50% 0%, rgba(255,92,77,.05), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line-2);
}
.sub-hero .eyebrow { color: var(--coral-deep); margin-bottom: 16px; }
.sub-hero h1 {
  font-family: var(--f-head);
  font-weight: var(--h-weight);
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: var(--h-spacing);
  margin: 0 0 18px;
}
.sub-hero h1 em { font-style: italic; color: var(--ink-2); font-weight: inherit; }
.sub-hero .sub-lead {
  font-size: clamp(16.5px, 1.3vw, 19px);
  color: var(--ink-2);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.55;
}
.sub-hero .sub-meta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.sub-hero .sub-meta .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--ink-3);
  display: inline-block;
}

/* ----- TEMPLATES BROWSER ----- */
.tpl-search {
  display: flex;
  gap: 8px;
  max-width: 560px;
  margin: 36px auto 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  box-shadow: var(--sh-sm);
  align-items: center;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.tpl-search:focus-within { border-color: var(--ink); box-shadow: var(--sh-md); }
.tpl-search .icon { color: var(--ink-3); display: flex; align-items: center; }
.tpl-search input {
  flex: 1;
  border: 0; background: transparent;
  font-size: 15.5px; padding: 12px 0;
  color: var(--ink);
  outline: none;
}
.tpl-search input::placeholder { color: var(--ink-3); }
.tpl-search-clear {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-tint);
  color: var(--ink-2);
  display: grid; place-items: center;
}
.tpl-search-clear:hover { background: var(--ink); color: var(--bg); }

.cat-strip { padding: 28px 0 0; background: var(--bg); }
.cat-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  max-width: 980px; margin: 28px auto 0;
}
.cat-pill {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 10px;
  transition: all .18s ease;
}
.cat-pill .count {
  color: var(--ink-3);
  font-family: var(--f-mono);
  font-size: 11.5px;
  padding: 2px 7px;
  background: var(--bg-tint);
  border-radius: 999px;
}
.cat-pill:hover { border-color: var(--ink); color: var(--ink); }
.cat-pill.active { background: var(--ink); border-color: var(--ink); color: var(--bg); }
.cat-pill.active .count { background: rgba(255,255,255,.14); color: rgba(255,255,255,.7); }

.sort-bar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 24px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line-2);
}
.sort-bar .count-label {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.sort-bar .sort-select {
  font-family: var(--f-sans);
  font-size: 14px;
  background: transparent;
  border: 0;
  color: var(--ink-2);
  cursor: pointer;
  padding-right: 4px;
}
.sort-bar .sort-select:hover { color: var(--ink); }

.tpl-grid-page {
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 22px;
}
@media (max-width: 1200px) { .tpl-grid-page { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 880px)  { .tpl-grid-page { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .tpl-grid-page { grid-template-columns: 1fr; } }

.tpl-grid-page .tpl-thumb { border-radius: 18px; }
.tpl-grid-page .tpl-thumb::after { border-radius: 18px; }
.tpl-grid-page .tpl-card { padding-bottom: 4px; }
.tpl-grid-page .tpl-meta { padding: 14px 4px 2px; }
.tpl-grid-page .tpl-meta h4 { font-size: 15px; }
.tpl-grid-page .tpl-meta p { font-size: 12.5px; }
.tpl-grid-page .tpl-icon { width: 32px; height: 32px; font-size: 15px; border-radius: 8px; }

.tpl-badge {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tpl-badge-popular { background: var(--coral); color: #fff; }
.tpl-badge-new { background: var(--sun); color: var(--ink); }

.tpl-stats {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 4px 0;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.tpl-stats .dot {
  width: 3px; height: 3px; border-radius: 50%; background: var(--ink-3); display: inline-block;
}

.tpl-empty {
  text-align: center;
  padding: 80px 24px;
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: var(--r-lg);
}
.tpl-empty-mark { font-size: 56px; margin-bottom: 16px; }
.tpl-empty h3 {
  font-family: var(--f-head);
  font-weight: var(--h-weight);
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.tpl-empty p { color: var(--ink-2); margin: 0 auto 22px; max-width: 420px; }

/* ============================================================
   HOW IT WORKS PAGE
   ============================================================ */
.hiw-steps-section .hiw-step + .hiw-step { margin-top: 96px; }
.hiw-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 72px;
  align-items: center;
}
.hiw-step.is-flip { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
.hiw-step.is-flip .hiw-step-copy { order: 2; }
.hiw-step.is-flip .hiw-step-art  { order: 1; }
@media (max-width: 980px) {
  .hiw-step, .hiw-step.is-flip { grid-template-columns: 1fr; gap: 36px; }
  .hiw-step.is-flip .hiw-step-copy,
  .hiw-step.is-flip .hiw-step-art { order: initial; }
}

.hiw-step-copy .eyebrow { color: var(--coral-deep); }
.hiw-step-num {
  font-family: var(--f-head);
  font-style: italic;
  font-weight: 500;
  font-size: 96px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  background: linear-gradient(135deg,#FB8855 0%,#D45F7E 50%,#9C3597 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 14px 0 16px;
}
.hiw-step-copy h3 {
  font-family: var(--f-head);
  font-weight: var(--h-weight);
  font-size: clamp(32px, 3.6vw, 52px);
  letter-spacing: var(--h-spacing);
  line-height: 1.04;
  margin: 0 0 18px;
}
.hiw-step-copy > p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 24px;
  max-width: 44ch;
}
.hiw-step-bullets {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.hiw-step-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--ink);
}
.hiw-step-bullets li svg {
  color: var(--mint);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ----- mocks ----- */
.hiw-mock {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  font-family: var(--f-sans);
}
.hiw-mock-bar {
  height: 38px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.hiw-mock-bar .dot {
  width: 10px; height: 10px; border-radius: 50%;
  display: inline-block;
}
.hiw-mock-bar .dot.r { background: #F4655F; }
.hiw-mock-bar .dot.y { background: #F5BD3F; }
.hiw-mock-bar .dot.g { background: #61C554; }
.hiw-mock-title {
  margin-left: 8px;
  color: var(--ink-2);
}
.hiw-mock-tag {
  margin-left: auto;
  background: var(--bg-tint);
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10.5px;
  color: var(--ink-2);
  letter-spacing: 0.08em;
}
.hiw-mock-body { padding: 22px 22px 26px; }

/* prompt mock */
.hiw-prompt-bubble {
  font-family: var(--f-head);
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: var(--bg-tint);
  border-radius: var(--r-sm);
  padding: 18px 20px;
  position: relative;
}
.hiw-prompt-bubble .cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--coral);
  margin-right: 4px;
  transform: translateY(2px);
  animation: hiw-blink 1.1s steps(2) infinite;
}
@keyframes hiw-blink { 50% { opacity: 0; } }
.hiw-prompt-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.hiw-prompt-chips .chip {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--ink-2);
}

/* build mock */
.hiw-build-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 14.5px;
  color: var(--ink);
}
.hiw-build-line:last-child { border-bottom: 0; }
.hiw-build-line .ic { font-size: 18px; width: 26px; text-align: center; }
.hiw-build-line .txt { flex: 1; }
.hiw-build-line .status { flex-shrink: 0; color: var(--mint); display: inline-flex; align-items: center; }
.hiw-build-line.is-queue .txt,
.hiw-build-line.is-queue .ic { opacity: .45; }
.hiw-build-line .pending {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: var(--bg-tint);
  padding: 3px 8px;
  border-radius: 999px;
}
.hiw-build-line .spin {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--bg-tint);
  border-top-color: var(--coral);
  animation: hiw-spin .9s linear infinite;
}
@keyframes hiw-spin { to { transform: rotate(360deg); } }

/* edit mock */
.hiw-edit-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .hiw-edit-grid { grid-template-columns: 1fr; } }
.hiw-edit-preview {
  background: var(--bg-tint);
  border-radius: var(--r-sm);
  padding: 14px;
  min-height: 220px;
  position: relative;
}
.hiw-edit-page {
  background: var(--surface);
  border-radius: 10px;
  padding: 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.hiw-edit-hero {
  display: flex; flex-direction: column; gap: 7px;
  padding: 14px;
  background: linear-gradient(135deg,#FBE4ED,#FFE7E1);
  border-radius: 8px;
}
.hiw-edit-hero .bar { background: var(--ink); height: 8px; border-radius: 3px; }
.hiw-edit-hero .bar.t { width: 70%; height: 11px; }
.hiw-edit-hero .bar.w { width: 50%; height: 6px; background: var(--ink-3); }
.hiw-edit-hero .bar.btn {
  align-self: flex-start;
  height: auto;
  padding: 7px 12px;
  background: var(--coral);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  border-radius: 999px;
  margin-top: 6px;
  outline: 2px dashed var(--coral-deep);
  outline-offset: 3px;
}
.hiw-edit-row { display: flex; gap: 6px; }
.hiw-edit-row .card {
  flex: 1; height: 28px; border-radius: 6px;
  background: var(--bg-tint);
}
.hiw-edit-chat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}
.hiw-edit-msg {
  padding: 10px 12px;
  border-radius: 12px;
  line-height: 1.45;
  max-width: 100%;
}
.hiw-edit-msg.you {
  background: var(--ink);
  color: var(--bg);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.hiw-edit-msg.ai {
  background: var(--bg-tint);
  color: var(--ink);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  display: flex; gap: 8px;
}
.hiw-edit-msg.ai .ic { flex-shrink: 0; }

/* publish mock */
.hiw-pub-url {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 14px;
  border-radius: 10px;
  font-family: var(--f-mono);
  font-size: 14px;
}
.hiw-pub-url .lock { color: var(--mint); display: inline-flex; }
.hiw-pub-url .dim { opacity: .55; }
.hiw-pub-url .bold { color: var(--sun); font-weight: 600; }
.hiw-pub-copy {
  margin-left: auto;
  background: rgba(255,255,255,.1);
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  font-family: var(--f-sans);
  font-size: 11.5px;
}
.hiw-pub-copy:hover { background: rgba(255,255,255,.2); }
.hiw-pub-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.hiw-pub-stat {
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
}
.hiw-pub-stat .num {
  font-family: var(--f-head);
  font-weight: var(--h-weight);
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink);
  background: linear-gradient(135deg,#FB8855,#9C3597);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hiw-pub-stat .lbl {
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.hiw-pub-cta {
  display: flex; gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.hiw-pub-cta .btn { padding: 11px 16px; font-size: 13.5px; }

/* ----- agents grid ----- */
.hiw-agents-section { background: var(--surface-2); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.hiw-agent-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 980px) { .hiw-agent-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .hiw-agent-grid { grid-template-columns: 1fr; } }
.hiw-agent {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 24px 20px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.hiw-agent:hover { transform: translateY(-3px); box-shadow: var(--sh-sm); }
.hiw-agent-ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-tint);
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.hiw-agent h4 {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.hiw-agent p {
  font-size: 13.5px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.55;
}

/* ----- never do list ----- */
.hiw-never-section { background: var(--bg); }
.hiw-never-grid {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
}
@media (max-width: 880px) { .hiw-never-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .hiw-never-grid { grid-template-columns: 1fr; } }
.hiw-never-grid li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 15px;
  color: var(--ink);
  text-decoration: line-through;
  text-decoration-color: var(--ink-3);
  text-decoration-thickness: 1px;
  opacity: .82;
}
.hiw-never-grid li .x {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--coral-tint);
  color: var(--coral-deep);
  display: grid; place-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

/* ----- compare table ----- */
.hiw-compare {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 32px;
}
.hiw-compare-head, .hiw-compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: center;
}
.hiw-compare-head {
  background: var(--bg-tint);
  border-bottom: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hiw-compare-head .lbl { padding: 14px 22px; }
.hiw-compare-head .us  { padding: 14px 22px; color: var(--coral-deep); }
.hiw-compare-head .them { padding: 14px 22px; }

.hiw-compare-row {
  border-bottom: 1px solid var(--line-2);
}
.hiw-compare-row:last-child { border-bottom: 0; }
.hiw-compare-row .lbl {
  padding: 18px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  border-right: 1px solid var(--line-2);
}
.hiw-compare-row .us {
  padding: 18px 22px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  border-right: 1px solid var(--line-2);
  background: linear-gradient(180deg, rgba(255,92,77,.04), transparent);
}
.hiw-compare-row .them {
  padding: 18px 22px;
  font-size: 14.5px;
  color: var(--ink-3);
}
@media (max-width: 720px) {
  .hiw-compare-head, .hiw-compare-row { grid-template-columns: 1fr; }
  .hiw-compare-head .lbl, .hiw-compare-head .them { display: none; }
  .hiw-compare-row .lbl { border-right: 0; border-bottom: 1px solid var(--line-2); padding-bottom: 4px; }
  .hiw-compare-row .us { border-right: 0; padding-top: 6px; }
  .hiw-compare-row .us::before { content: "✓ "; color: var(--mint); font-weight: 700; }
  .hiw-compare-row .them { padding-top: 0; }
  .hiw-compare-row .them::before { content: "✗ "; color: var(--ink-3); }
}

/* tweak the nav-link-accent so Join Summit stands out */
.nav-link.nav-link-accent {
  color: var(--coral-deep);
  font-weight: 500;
}
.nav-link.nav-link-accent:hover { color: var(--coral); }


/* ============================================================
   PROOF SECTION — editorial testimonials (replaces big-photo)
   ============================================================ */

.proof-section {
  padding-bottom: 32px;
  position: relative;
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(255, 92, 77, .05), transparent 70%),
    var(--bg);
}
.proof-section .sec-head {
  margin-bottom: 56px;
}
.proof-stats-section {
  padding-top: 24px;
}
.proof-stats-section .sec-head {
  margin-bottom: 24px;
}

/* Magazine-style frontispiece header */
.proof-head {
  max-width: 880px;
}
.proof-stamp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.proof-stamp-num,
.proof-stamp-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  white-space: nowrap;
}
.proof-stamp-label {
  font-family: var(--f-head);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--coral-deep);
  line-height: 1;
  padding: 0 4px;
}
.proof-stamp-rule {
  flex: 0 0 64px;
  height: 1px;
  background: var(--ink-3);
  opacity: .35;
}
.proof-section .sec-head .proof-h {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(48px, 6.5vw, 84px);
  line-height: .98;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
  color: var(--ink);
  text-wrap: balance;
}
.proof-section .sec-head .proof-h em {
  font-style: italic;
  font-weight: 400;
  color: var(--coral-deep);
}
.proof-section .sec-head p {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 50ch;
  margin: 0 auto;
}

/* Featured story — magazine cover */
.story-featured {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  margin-bottom: 48px;
}
@media (max-width: 880px) {
  .story-featured { grid-template-columns: 1fr; }
}
.story-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-tint);
  overflow: hidden;
}
@media (max-width: 880px) {
  .story-portrait { aspect-ratio: 16 / 11; }
}
.story-portrait image-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.story-portrait-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
  pointer-events: none;
}
.story-portrait-fallback .initial {
  font-family: var(--f-head);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(120px, 16vw, 200px);
  line-height: 1;
  color: rgba(0,0,0,.06);
  letter-spacing: -0.04em;
}

/* Tints — applied to the portrait background */
.tint-warm .story-portrait { background: linear-gradient(155deg, #FFE7E1 0%, #FFD9A8 60%, #F5A87A 100%); }
.tint-rose .story-portrait { background: linear-gradient(155deg, #FBE4ED 0%, #F08DB8 100%); }
.tint-plum .story-portrait { background: linear-gradient(155deg, #E0DAF0 0%, #9C8DC4 60%, #6F5FA0 100%); }
.tint-sun  .story-portrait { background: linear-gradient(155deg, #FFF1CB 0%, #FFC53D 100%); }
.tint-mint .story-portrait { background: linear-gradient(155deg, #E0F1EC 0%, #6FBFA8 100%); }
.tint-warm .story-portrait-fallback .initial { color: rgba(60,30,10,.18); }
.tint-rose .story-portrait-fallback .initial { color: rgba(120,40,80,.18); }
.tint-plum .story-portrait-fallback .initial { color: rgba(60,40,90,.20); }
.tint-sun  .story-portrait-fallback .initial { color: rgba(80,55,15,.18); }

.story-tag {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px 7px 8px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.story-tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--coral);
  display: inline-block;
}

.story-body {
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-pull {
  font-family: var(--f-head);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  background: linear-gradient(135deg,#FB8855 0%,#D45F7E 50%,#9C3597 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 24px;
}
.story-q {
  font-family: var(--f-head);
  font-weight: 400;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 32px;
  max-width: 44ch;
  border: 0;
  padding: 0;
}
.story-q::before { content: "\201C"; color: var(--ink-3); margin-right: 2px; }
.story-q::after  { content: "\201D"; color: var(--ink-3); margin-left: 2px; }

.story-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line-2);
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.story-who .story-name {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.story-who .story-role {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 4px;
}
.story-metric {
  text-align: right;
  flex-shrink: 0;
}
.story-metric .num {
  font-family: var(--f-head);
  font-weight: var(--h-weight);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--coral-deep);
}
.story-metric .lbl {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 6px;
}

.story-link {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: lowercase;
  transition: color .18s ease, gap .18s ease;
  cursor: pointer;
}
.story-link:hover { color: var(--ink); gap: 10px; }

/* Story card grid */
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .story-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .story-grid { grid-template-columns: 1fr; } }

.story-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.story-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }

.story-card-portrait {
  position: relative;
  aspect-ratio: 5 / 4;
  background: var(--bg-tint);
  overflow: hidden;
}
.story-card.tint-warm .story-card-portrait { background: linear-gradient(155deg, #FFE7E1 0%, #FFD9A8 60%, #F5A87A 100%); }
.story-card.tint-rose .story-card-portrait { background: linear-gradient(155deg, #FBE4ED 0%, #F08DB8 100%); }
.story-card.tint-plum .story-card-portrait { background: linear-gradient(155deg, #E0DAF0 0%, #9C8DC4 60%, #6F5FA0 100%); }
.story-card.tint-sun  .story-card-portrait { background: linear-gradient(155deg, #FFF1CB 0%, #FFC53D 100%); }
.story-card.tint-mint .story-card-portrait { background: linear-gradient(155deg, #E0F1EC 0%, #6FBFA8 100%); }
.story-card-portrait image-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.story-card-body {
  padding: 24px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.story-pull-sm {
  font-family: var(--f-head);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
}
.story-card-body blockquote {
  font-family: var(--f-sans);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  flex: 1;
}
.story-card-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line-2);
  flex-wrap: wrap;
}
.story-card-meta .story-name {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.01em;
}
.story-card-meta .story-role {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 3px;
}
.story-metric-sm {
  text-align: right;
  flex-shrink: 0;
}
.story-metric-sm .num {
  font-family: var(--f-head);
  font-weight: var(--h-weight);
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--coral-deep);
  line-height: 1;
}
.story-metric-sm .lbl {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 4px;
}

.story-more {
  text-align: center;
  margin-top: 48px;
}
.story-more .view-all {
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: gap .18s ease, color .18s ease;
}
.story-more .view-all:hover { gap: 12px; color: var(--ink); }


/* ============================================================
   PUBLISH DEMO v2 — browser + toast + chip + confetti
   ============================================================ */
.publish-scene {
  position: relative;
  display: block;
  padding: 32px;
  overflow: hidden;
}
.publish-scene::before {
  /* soft halo behind the browser */
  content: "";
  position: absolute;
  inset: -10% -5% auto -5%;
  height: 60%;
  background: radial-gradient(60% 60% at 50% 35%, rgba(255,255,255,.35), transparent 70%);
  pointer-events: none;
}
.pub-browser {
  position: absolute;
  top: 32px; left: 28px; right: 28px; bottom: 80px;
  background: var(--surface);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px -16px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.1);
  transform: rotate(-1.5deg);
}
.pub-browser-bar {
  height: 34px;
  background: linear-gradient(180deg, #FBF6EA, #EDE5D2);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
}
.pub-browser-bar .dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.pub-browser-bar .dot.r { background: #F4655F; }
.pub-browser-bar .dot.y { background: #F5BD3F; }
.pub-browser-bar .dot.g { background: #61C554; }
.pub-browser-url {
  margin-left: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-2);
  max-width: 80%;
}
.pub-browser-url .lock { color: var(--mint); display: inline-flex; }
.pub-browser-url .prot { opacity: .55; }
.pub-browser-url .host { color: var(--ink); font-weight: 600; }
.pub-browser-url .tld  { color: var(--ink-2); }
.pub-browser-body {
  position: absolute;
  inset: 34px 0 0 0;
  overflow: hidden;
}
.pub-site-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.pub-site-image image-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.pub-site-mock {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #FFF1CB 0%, #FFE0C6 45%, #FFC09B 100%);
  z-index: 1;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pub-site-eyebrow {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: rgba(60,30,10,.55);
}
.pub-site-h {
  font-family: var(--f-head);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: #2A1410;
  margin-top: 8px;
}
.pub-site-sub {
  font-size: 12px;
  color: #5C3422;
  margin-top: 6px;
}
.pub-site-btn {
  align-self: flex-start;
  background: #2A1410;
  color: #FFC09B;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 600;
  margin-top: 12px;
  letter-spacing: -0.005em;
}
.pub-site-row {
  display: flex;
  gap: 6px;
  margin-top: auto;
}
.pub-site-card {
  flex: 1;
  height: 24px;
  border-radius: 5px;
}
.pub-site-card.c1 { background: #C0784A; }
.pub-site-card.c2 { background: #8E4220; }
.pub-site-card.c3 { background: #5C2A14; }

/* floating toast */
.pub-toast {
  position: absolute;
  right: 24px;
  bottom: 32px;
  z-index: 5;
  background: var(--surface);
  border-radius: 14px;
  padding: 12px 14px 12px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 24px 50px -16px rgba(0,0,0,.45);
  transform: rotate(-3deg);
  transition: transform .6s cubic-bezier(.2,.8,.2,1), box-shadow .6s;
}
.pub-toast.is-pulse {
  transform: rotate(-3deg) scale(1.05) translateY(-2px);
  box-shadow: 0 30px 70px -16px rgba(31,178,149,.55), 0 0 0 5px rgba(31,178,149,.22);
}
.pub-toast-ic {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--mint);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.pub-toast-title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pub-toast-sub {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  margin-top: 1px;
}
.pub-toast-time {
  margin-left: 6px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-3);
  align-self: flex-start;
}

/* domain chip — bottom left */
.pub-chip {
  position: absolute;
  left: 18px;
  bottom: 28px;
  z-index: 5;
  background: var(--ink);
  color: var(--bg);
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 16px 40px -10px rgba(0,0,0,.4);
  transform: rotate(2deg);
}
.pub-chip strong { color: var(--mint); font-weight: 600; }
.pub-chip-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(31,178,149,.6);
  animation: pub-dot 1.8s ease-in-out infinite;
}
@keyframes pub-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(31,178,149,.7); }
  50%      { box-shadow: 0 0 0 6px rgba(31,178,149,0); }
}

/* confetti */
.pub-confetti {
  position: absolute;
  border-radius: 1px;
  pointer-events: none;
  opacity: 0;
  animation: pub-conf 4s ease-in-out infinite;
}
.pub-confetti.c-1 { top: 14%;  left: 10%; width: 8px; height: 14px; background: var(--coral); transform: rotate(20deg); animation-delay: .1s; }
.pub-confetti.c-2 { top: 22%;  right: 14%; width: 10px; height: 10px; background: var(--sun); transform: rotate(-12deg); animation-delay: .8s; }
.pub-confetti.c-3 { bottom: 18%; left: 38%; width: 6px; height: 16px; background: var(--mint); transform: rotate(40deg); animation-delay: 1.6s; }
.pub-confetti.c-4 { bottom: 10%; right: 28%; width: 10px; height: 6px; background: var(--pink); transform: rotate(-30deg); animation-delay: 2.4s; }
@keyframes pub-conf {
  0%   { opacity: 0; transform: translateY(20px) rotate(var(--r,0deg)); }
  15%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-30px) rotate(calc(var(--r,0deg) + 40deg)); }
}

/* ============================================================
   TRUST v2 — engineered reassurance card row
   ============================================================ */
.trust-v2 {
  background: var(--surface-2);
  padding: 96px 0 88px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-v2 .trust-lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.trust-v2 .trust-lead .eyebrow {
  color: var(--coral-deep);
  margin-bottom: 16px;
}
.trust-v2 .trust-head {
  font-family: var(--f-head);
  font-weight: var(--h-weight);
  font-size: clamp(38px, 4.6vw, 60px);
  letter-spacing: var(--h-spacing);
  line-height: 1.02;
  margin: 0 0 18px;
  /* override the old gradient */
  background: none;
  -webkit-text-fill-color: currentColor;
  color: var(--ink);
}
.trust-v2 .trust-head em {
  font-style: italic;
  color: var(--ink-2);
  background: linear-gradient(135deg, #FB8855 0%, #D45F7E 50%, #9C3597 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.trust-v2 .trust-sub {
  font-size: 16px;
  color: var(--ink-2);
  margin: 0 auto;
  max-width: 540px;
  line-height: 1.55;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 56px;
}
@media (max-width: 980px) { .trust-grid { grid-template-columns: 1fr; gap: 20px; } }

.trust-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .25s;
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--ink-3);
}
.trust-card-art {
  position: relative;
  aspect-ratio: 5 / 2;
  background:
    radial-gradient(120% 80% at 50% 100%, rgba(255,92,77,.04), transparent 60%),
    var(--bg-tint);
  border-bottom: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: 18px;
  overflow: hidden;
}
.trust-art {
  width: 100%;
  max-width: 220px;
  height: 100%;
  max-height: 130px;
}
.trust-num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--f-head);
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  color: rgba(24,24,24,.18);
  letter-spacing: -0.03em;
}
.trust-card-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.trust-kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-deep);
}
.trust-card h4 {
  font-family: var(--f-head);
  font-weight: var(--h-weight);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
  /* override old trust-item h4 */
}
.trust-card p {
  font-size: 14.5px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.6;
  max-width: none;
}
.trust-spec {
  margin-top: 4px;
  padding: 14px 16px;
  background: var(--bg-tint);
  border-radius: var(--r-sm);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.trust-spec-num {
  font-family: var(--f-head);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, #FB8855 0%, #D45F7E 50%, #9C3597 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.trust-spec-lbl {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.trust-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trust-facts li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-2);
}
.trust-facts li svg {
  color: var(--mint);
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

/* horizontal facts strip */
.trust-stripe {
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  padding: 22px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.trust-stripe-sep {
  color: var(--ink-3);
  opacity: .5;
}
.trust-stripe-item {
  white-space: nowrap;
}
@media (max-width: 720px) {
  .trust-stripe { gap: 10px; font-size: 11px; }
}


/* ============================================================
   ONBOARDING — cinematic post-signup flow
   ============================================================ */

.ob-body {
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}
.ob-body #root { min-height: 100vh; }

.ob-stage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
}
/* ambient gradient behind everything */
.ob-stage::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(255,197,61,.10), transparent 70%),
    radial-gradient(50% 50% at 85% 30%, rgba(240,141,184,.12), transparent 70%),
    radial-gradient(50% 50% at 15% 70%, rgba(111,168,224,.10), transparent 70%),
    var(--bg);
  pointer-events: none;
}

/* top bar */
.ob-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  position: relative;
  z-index: 5;
}
.ob-top-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.ob-skip {
  font-family: var(--f-sans);
  font-size: 13px;
  color: var(--ink-3);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color .18s ease;
}
.ob-skip:hover { color: var(--ink); }

.ob-progress {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ob-dot {
  width: 24px;
  height: 4px;
  border-radius: 999px;
  background: var(--line);
  cursor: default;
  transition: background .25s ease, width .25s ease;
  border: 0;
  padding: 0;
}
.ob-dot.is-past { background: var(--ink-3); cursor: pointer; }
.ob-dot.is-past:hover { background: var(--ink); }
.ob-dot.is-active { background: var(--coral); width: 36px; }

.ob-back {
  position: absolute;
  top: 80px;
  left: 32px;
  z-index: 5;
  background: transparent;
  border: 0;
  font-family: var(--f-sans);
  font-size: 13px;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 8px 10px 8px 4px;
  border-radius: 999px;
  transition: color .18s ease, background .18s ease;
}
.ob-back:hover { color: var(--ink); background: var(--surface); }

/* main scene */
.ob-main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 24px 32px 64px;
  position: relative;
}
.ob-scene {
  width: 100%;
  max-width: 760px;
  text-align: center;
  animation: ob-in .55s cubic-bezier(.2,.8,.2,1) both;
}
.ob-scene-back { animation-name: ob-in-back; }
@keyframes ob-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ob-in-back {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ob-eyebrow {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 24px;
}
.ob-sub-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 28px 0 14px;
  text-align: left;
}
.ob-control-eyebrow {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.ob-mt { margin-top: 22px; }

.ob-headline {
  font-family: var(--f-head);
  font-weight: var(--h-weight);
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.0;
  letter-spacing: var(--h-spacing);
  margin: 0 0 22px;
  color: var(--ink);
}
.ob-headline em {
  font-style: italic;
  background: linear-gradient(135deg, #FB8855 0%, #D45F7E 50%, #9C3597 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: inherit;
}
.ob-lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 auto 36px;
}

.ob-cta { margin-top: 4px; }
.ob-foot-note {
  margin-top: 22px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}

.ob-action-row {
  display: flex; justify-content: center; gap: 12px;
  margin-top: 32px;
}
.btn.is-disabled, .btn[disabled] { opacity: .55; cursor: not-allowed; pointer-events: none; }

/* ============= WELCOME · orb ============= */
.ob-welcome { padding: 24px 0 0; }
.ob-welcome-orb {
  width: 140px; height: 140px;
  margin: 0 auto 40px;
  position: relative;
}
.orb-core {
  position: absolute; inset: 30%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #FFD9A8, #FF5C4D 55%, #9C3597 100%);
  box-shadow: 0 20px 60px -10px rgba(255,92,77,.55);
  animation: orb-pulse 3.2s ease-in-out infinite;
}
.orb-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid var(--coral);
  opacity: 0;
  animation: orb-ring 3.2s ease-out infinite;
}
.orb-ring.r2 { animation-delay: 1s; border-color: var(--pink); }
.orb-ring.r3 { animation-delay: 2s; border-color: var(--sun); }
@keyframes orb-pulse {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.06); }
}
@keyframes orb-ring {
  0%   { transform: scale(0.4); opacity: 0; }
  20%  { opacity: .35; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============= INPUTS (you step) ============= */
.ob-form { text-align: center; }
.ob-input-wrap {
  position: relative;
  max-width: 480px;
  margin: 8px auto 0;
}
.ob-input {
  width: 100%;
  border: 0;
  background: transparent;
  font-family: var(--f-head);
  font-weight: var(--h-weight);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  text-align: center;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 10px 0 14px;
  outline: none;
}
.ob-input::placeholder { color: var(--ink-3); font-style: italic; font-weight: 400; }
.ob-input-line {
  display: block;
  height: 2px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.ob-input-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--coral), var(--pink), var(--sun));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.ob-input-wrap:focus-within .ob-input-line::after { transform: scaleX(1); }

.ob-role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
  text-align: left;
}
.ob-role {
  position: relative;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
  font-family: var(--f-sans);
  font-size: 14px;
  color: var(--ink);
  text-align: left;
}
.ob-role:hover { border-color: var(--ink-3); transform: translateY(-1px); }
.ob-role.is-on {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(24,24,24,.06);
}
.ob-role .ic {
  width: 30px; height: 30px;
  background: var(--bg-tint);
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}
.ob-role-check {
  margin-left: auto;
  color: var(--mint);
  display: inline-flex;
}

/* ============= DESCRIBE · big prompt card ============= */
.ob-describe { text-align: center; }
.ob-prompt-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--sh-md);
  max-width: 640px;
  margin: 8px auto 0;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.ob-prompt-card:focus-within {
  border-color: var(--ink);
  box-shadow: 0 24px 60px -16px rgba(26,26,31,.22);
}
.ob-prompt-input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  resize: none;
  font-family: var(--f-head);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.ob-prompt-input::placeholder {
  color: var(--ink-3);
  font-style: italic;
}
.ob-prompt-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
  gap: 12px;
  flex-wrap: wrap;
}
.ob-prompt-hints {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.ob-prompt-hints .dot {
  width: 3px; height: 3px; border-radius: 50%; background: var(--ink-3);
}

.ob-examples-label {
  margin: 28px 0 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
.ob-examples {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.ob-example-chip {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13.5px;
  color: var(--ink-2);
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, transform .18s ease;
}
.ob-example-chip:hover {
  border-color: var(--ink);
  color: var(--ink);
  transform: translateY(-1px);
}

/* ============= BUILDING ============= */
.ob-build .ob-headline { margin-bottom: 14px; }
.ob-build-stage {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh-md);
  margin-top: 28px;
  text-align: left;
  position: relative;
}
.ob-build-bar {
  height: 6px;
  background: var(--bg-tint);
  border-radius: 999px;
  overflow: hidden;
}
.ob-build-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--pink), var(--sun));
  border-radius: 999px;
  transition: width .25s ease;
}
.ob-build-percent {
  position: absolute;
  top: 28px; right: 28px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}

.ob-build-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 22px;
  margin-top: 26px;
}
@media (max-width: 720px) { .ob-build-grid { grid-template-columns: 1fr; } }

.ob-agents {
  display: flex; flex-direction: column; gap: 8px;
}
.ob-agent {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.ob-agent .ic {
  width: 36px; height: 36px;
  background: var(--bg-tint);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ob-agent .meta { flex: 1; min-width: 0; }
.ob-agent .name { font-family: var(--f-head); font-weight: 700; font-size: 14px; color: var(--ink); letter-spacing: -0.01em; }
.ob-agent .task { font-size: 12px; color: var(--ink-3); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ob-agent .status { color: var(--ink-3); flex-shrink: 0; display: inline-flex; align-items: center; }
.ob-agent .status svg { color: var(--mint); }
.ob-agent .ob-queued {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: var(--bg-tint);
  padding: 3px 8px;
  border-radius: 999px;
}
.ob-agent.is-active {
  background: var(--surface);
  border-color: var(--coral);
  box-shadow: 0 4px 16px -4px rgba(255,92,77,.25);
}
.ob-agent.is-done { opacity: .65; }
.ob-agent.is-done .ic { background: var(--mint-tint); }

.ob-spin {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--bg-tint);
  border-top-color: var(--coral);
  animation: ob-spin .9s linear infinite;
  display: inline-block;
}
.ob-spin.light {
  border-color: rgba(255,255,255,.3);
  border-top-color: #fff;
}
@keyframes ob-spin { to { transform: rotate(360deg); } }

.ob-log {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 240px;
}
.ob-log-head {
  padding: 10px 14px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ob-log-body {
  padding: 14px;
  font-family: var(--f-mono);
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  flex: 1;
  overflow: hidden;
  position: relative;
}
.ob-log-line {
  animation: ob-log-in .35s ease both;
}
@keyframes ob-log-in {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}
.ob-log-cursor {
  display: inline-block;
  width: 7px; height: 13px;
  background: var(--sun);
  margin-top: 4px;
  animation: ob-cursor 1s steps(2) infinite;
}
@keyframes ob-cursor { 50% { opacity: 0; } }

.ob-build-prompt-echo {
  margin-top: 22px;
  padding: 14px 16px;
  background: var(--bg-tint);
  border-radius: var(--r-sm);
  font-family: var(--f-head);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  color: var(--ink-2);
  text-align: center;
}
.ob-build-prompt-echo .quote { color: var(--ink-3); margin: 0 4px; }

/* ============= REVEAL ============= */
.ob-reveal { text-align: center; }
.ob-reveal-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
  margin-top: 28px;
  text-align: left;
}
@media (max-width: 880px) { .ob-reveal-grid { grid-template-columns: 1fr; } }

.ob-preview {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  min-height: 380px;
  display: flex;
  flex-direction: column;
}
.ob-preview-bar {
  height: 34px;
  background: linear-gradient(180deg, #FBF6EA, #EDE5D2);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
}
.ob-preview-bar .dot { width: 9px; height: 9px; border-radius: 50%; }
.ob-preview-bar .dot.r { background: #F4655F; }
.ob-preview-bar .dot.y { background: #F5BD3F; }
.ob-preview-bar .dot.g { background: #61C554; }
.ob-preview-bar .url {
  margin-left: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-2);
}
.ob-preview-bar .url .status {
  background: var(--sun-tint);
  color: var(--ink);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ob-preview-body {
  flex: 1;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .4s ease, color .4s ease;
}
.ob-preview.theme-warm .ob-preview-body { background: linear-gradient(155deg, #FFE7E1 0%, #FFD9A8 60%, #F5A87A 100%); }
.ob-preview.theme-mint .ob-preview-body { background: linear-gradient(155deg, #E0F1EC 0%, #6FBFA8 100%); color: #0F3A33; }
.ob-preview.theme-plum .ob-preview-body { background: linear-gradient(155deg, #E0DAF0 0%, #9C8DC4 60%, #6F5FA0 100%); color: #2A1A3D; }
.ob-preview.theme-ink  .ob-preview-body { background: linear-gradient(155deg, #F5EFE3 0%, #181818 100%); color: #F5EFE3; }
.ob-preview.theme-ink .prv-h, .ob-preview.theme-ink .prv-eyebrow { color: #F5EFE3; }
.ob-preview.theme-ink .prv-sub { color: rgba(245,239,227,.7); }

.prv-eyebrow {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: rgba(40,20,10,.55);
}
.prv-h {
  font-family: var(--f-head);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  white-space: pre-line;
}
.prv-sub {
  font-size: 12.5px;
  color: rgba(40,20,10,.7);
  margin-top: 2px;
}
.prv-btn {
  align-self: flex-start;
  background: var(--ink);
  color: var(--bg);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
}
.ob-preview.theme-mint .prv-btn { background: #0F3A33; color: #DFF6EE; }
.ob-preview.theme-plum .prv-btn { background: #2A1A3D; color: #E0DAF0; }
.ob-preview.theme-ink  .prv-btn { background: var(--coral); color: #fff; }
.prv-row { display: flex; gap: 6px; margin-top: auto; }
.prv-card {
  flex: 1; height: 28px; border-radius: 5px;
  background: rgba(0,0,0,.18);
}

.ob-preview-toast {
  position: absolute;
  top: 50px;
  right: 16px;
  background: var(--surface);
  border-radius: 10px;
  padding: 8px 12px 8px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink);
  box-shadow: 0 16px 36px -10px rgba(0,0,0,.3);
  animation: ob-toast-in .35s ease;
}
.ob-preview-toast .ic { font-size: 14px; }
@keyframes ob-toast-in {
  from { opacity: 0; transform: translateX(8px); }
  to   { opacity: 1; transform: translateX(0); }
}

.ob-reveal-controls {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
}
.ob-reveal-controls h4 {
  font-family: var(--f-head);
  font-weight: var(--h-weight);
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--ink);
}
.ob-reveal-controls p {
  font-size: 13.5px;
  color: var(--ink-2);
  margin: 0 0 18px;
  line-height: 1.5;
}
.ob-edit-row { display: flex; gap: 8px; }
.ob-edit-input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: var(--f-sans);
  font-size: 14px;
  background: var(--bg);
  outline: none;
}
.ob-edit-input:focus { border-color: var(--ink); }

.ob-theme-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.ob-theme {
  background: transparent;
  border: 1px solid transparent;
  padding: 8px 6px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: border-color .18s ease, transform .18s ease;
}
.ob-theme:hover { border-color: var(--line); }
.ob-theme.is-on { border-color: var(--ink); background: var(--bg-tint); }
.ob-theme .swatch {
  width: 100%; height: 32px; border-radius: 6px;
  border: 1px solid rgba(0,0,0,.06);
}
.ob-theme .lbl {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
}

/* ============= PUBLISH ============= */
.ob-publish-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh-md);
  margin: 8px auto 0;
  max-width: 640px;
  text-align: left;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.ob-publish-card.is-publishing { border-color: var(--coral); }
.ob-publish-card.is-published {
  border-color: var(--mint);
  box-shadow: 0 30px 80px -16px rgba(31,178,149,.35);
}
.ob-publish-url {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: var(--bg);
  padding: 14px 16px;
  border-radius: 12px;
  font-family: var(--f-mono);
  font-size: 15px;
}
.ob-publish-url .lock { color: var(--mint); display: inline-flex; }
.ob-publish-url .prot { opacity: .55; }
.ob-publish-url .tld { opacity: .85; color: var(--sun); }
.ob-publish-input {
  background: transparent;
  border: 0;
  outline: none;
  color: var(--sun);
  font-family: var(--f-mono);
  font-size: 15px;
  font-weight: 600;
  width: 220px;
  text-align: left;
}
.ob-publish-input:disabled { opacity: .7; }

.ob-publish-btn {
  width: 100%;
  margin-top: 14px;
  padding: 16px 22px;
}

.ob-publish-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}
@media (max-width: 600px) { .ob-publish-perks { grid-template-columns: 1fr; } }
.ob-publish-perks .perk {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  border-radius: 10px;
}
.ob-publish-perks .perk .ic { font-size: 18px; }
.ob-publish-perks .perk strong {
  display: block;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
}
.ob-publish-perks .perk span {
  font-size: 11.5px;
  color: var(--ink-3);
}

.ob-publish-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.ob-publish-confetti .bit {
  position: absolute;
  top: -16px;
  width: 10px;
  height: 14px;
  border-radius: 1px;
  animation: ob-conf 1.8s ease-out forwards;
}
@keyframes ob-conf {
  0%   { opacity: 0; transform: translateY(0) rotate(0deg); }
  10%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(420px) rotate(720deg); }
}

/* ============= DONE ============= */
.ob-done { text-align: center; }
.ob-done-mark {
  width: 96px; height: 96px;
  margin: 0 auto 28px;
  position: relative;
}
.ob-done-tick {
  position: absolute; inset: 16px;
  border-radius: 50%;
  background: var(--mint);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 40px -10px rgba(31,178,149,.55);
}
.ob-done-tick svg { width: 28px; height: 28px; }
.ob-done-mark .r {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid var(--mint);
  opacity: 0;
  animation: ob-done-r 2.4s ease-out infinite;
}
.ob-done-mark .r.r2 { animation-delay: .8s; }
.ob-done-mark .r.r3 { animation-delay: 1.6s; }
@keyframes ob-done-r {
  0%   { transform: scale(.7); opacity: 0; }
  20%  { opacity: .35; }
  100% { transform: scale(1.6); opacity: 0; }
}

.ob-share-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 12px 12px 18px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 14px;
  margin: 12px 0 36px;
  box-shadow: var(--sh-md);
}
.ob-share-card .lock { color: var(--mint); display: inline-flex; }
.ob-share-card .url { letter-spacing: 0.02em; }
.ob-share-card .url strong { color: var(--sun); font-weight: 600; }
.ob-share-copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  color: #fff;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--f-sans);
  font-size: 12px;
  cursor: pointer;
}
.ob-share-copy:hover { background: rgba(255,255,255,.2); }

.ob-next-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0 0 32px;
  text-align: left;
}
@media (max-width: 720px) { .ob-next-grid { grid-template-columns: 1fr; } }
.ob-next {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.ob-next:hover {
  transform: translateY(-2px);
  border-color: var(--ink-3);
  box-shadow: var(--sh-sm);
}
.ob-next .ic {
  font-size: 22px;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--bg-tint);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.ob-next .t {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.ob-next .s {
  font-size: 12.5px;
  color: var(--ink-3);
  margin-top: 2px;
  line-height: 1.4;
}
.ob-next .arrow {
  margin-left: auto;
  color: var(--ink-3);
}

.ob-done-row { margin-top: 28px; }

@media (max-width: 640px) {
  .ob-top { padding: 18px 20px; }
  .ob-top-right { gap: 14px; }
  .ob-dot { width: 18px; }
  .ob-dot.is-active { width: 28px; }
  .ob-main { padding: 12px 20px 48px; }
  .ob-back { top: 64px; left: 16px; }
}


/* ============================================================
   AUTH PAGES — sign in / sign up / forgot
   Split layout: form left (cream), gradient column right
   ============================================================ */

.auth-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
  min-height: calc(100vh - 72px); /* minus nav */
  background: var(--bg);
  position: relative;
}
@media (max-width: 900px) {
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-side { display: none; }
}

/* --- Left: form panel --- */
.auth-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 32px 80px;
}
.auth-card {
  width: 100%;
  max-width: 460px;
}
.auth-eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 18px;
}
.auth-card h1 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(40px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--ink);
}
.auth-card h1 em {
  font-style: italic;
  color: var(--ink-2);
}
.auth-lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 36px;
  max-width: 38ch;
}

/* --- Form field --- */
.auth-field {
  display: block;
  margin-bottom: 18px;
}
.auth-field-label {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.auth-field-label a { color: var(--coral-deep); font-size: 11px; }
.auth-field-label a:hover { color: var(--coral); }
.auth-input {
  width: 100%;
  padding: 16px 18px;
  font-family: var(--f-sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.auth-input::placeholder { color: var(--ink-3); }
.auth-input:hover { border-color: #D8CFB4; }
.auth-input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(24,24,24,.06);
}
.auth-input.has-prefix {
  padding-left: 0;
}

.auth-input-row {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color .18s, box-shadow .18s;
}
.auth-input-row:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(24,24,24,.06);
}
.auth-input-row .prefix {
  padding: 0 14px 0 18px;
  color: var(--ink-3);
  display: flex; align-items: center;
}
.auth-input-row .auth-input {
  border: 0;
  box-shadow: none !important;
  background: transparent;
  padding-left: 0;
  flex: 1;
}
.auth-input-row .suffix {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--ink-3);
  padding-right: 18px;
}

.auth-submit {
  margin-top: 8px;
}

/* divider */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 24px;
  color: var(--ink-3);
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.auth-divider::before, .auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* SSO row */
.auth-sso {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.auth-sso button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .18s, transform .18s, box-shadow .18s;
}
.auth-sso button:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--sh-sm);
}

/* fine print */
.auth-fineprint {
  margin-top: 28px;
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.55;
}
.auth-fineprint a { color: var(--ink-2); text-decoration: underline; text-underline-offset: 3px; }
.auth-fineprint a:hover { color: var(--ink); }

.auth-switch {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink-2);
}
.auth-switch a {
  color: var(--coral-deep);
  font-weight: 500;
}
.auth-switch a:hover { color: var(--coral); }

/* --- Sent / check inbox state --- */
.auth-sent {
  text-align: left;
}
.auth-sent-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #FFE7E1, #FFB3A0 60%, #FB8855);
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 16px 32px -12px rgba(255,92,77,.4);
  margin-bottom: 24px;
}
.auth-sent h2 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.auth-sent h2 em { font-style: italic; color: var(--ink-2); }
.auth-sent p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 12px;
}
.auth-sent .strong-email {
  color: var(--ink);
  font-weight: 600;
}
.auth-sent .auth-link-list {
  margin-top: 28px;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.auth-sent .auth-link-list-title {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.auth-sent .auth-link-list ul { margin: 0; padding: 0; list-style: none; }
.auth-sent .auth-link-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14.5px;
  color: var(--ink-2);
}
.auth-sent .auth-link-list li svg { color: var(--ink-3); }
.auth-sent .resend {
  margin-top: 22px;
  font-size: 14px;
  color: var(--ink-3);
}
.auth-sent .resend a { color: var(--coral-deep); font-weight: 500; }
.auth-sent .resend a:hover { color: var(--coral); }

/* --- Right: gradient side panel --- */
.auth-side {
  position: relative;
  background: linear-gradient(165deg, #1A0F22 0%, #3A1F5C 30%, #9C3597 65%, #FB8855 110%);
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 56px 40px;
}
.auth-side::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(255,200,80,.18), transparent 70%),
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(184,62,142,.4), transparent 70%);
  pointer-events: none;
}
.auth-side > * { position: relative; z-index: 1; }

.auth-side-mark {
  width: 64px;
  height: 64px;
  opacity: .9;
}
.auth-side-mark img { width: 100%; height: 100%; object-fit: contain; }

.auth-side-pull {
  font-family: var(--f-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: rgba(255,255,255,.96);
  margin: 0 0 24px;
}
.auth-side-attrib {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(255,255,255,.78);
}
.auth-side-attrib .av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFE08A, #FB8855);
  display: grid; place-items: center;
  color: #1A0F22;
  font-weight: 600;
  font-size: 13px;
  font-family: var(--f-mono);
}
.auth-side-attrib strong { color: #fff; font-weight: 600; }

.auth-side-stats {
  display: grid;
  gap: 18px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.auth-side-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.auth-side-stat .num {
  font-family: var(--f-serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #fff;
}
.auth-side-stat .label {
  font-size: 13px;
  color: rgba(255,255,255,.78);
}

/* mobile fallback — banner above form */
.auth-mobile-banner {
  display: none;
  background: linear-gradient(120deg, #B83E8E 0%, #FB8855 100%);
  color: #fff;
  padding: 18px 24px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .auth-mobile-banner { display: block; }
}

/* ============================================================
   PRICING PAGE — extras (uses existing .price-* classes)
   ============================================================ */
.pricing-page-compare {
  background: var(--surface-2);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.compare-table th, .compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line-2);
}
.compare-table th {
  background: var(--surface-2);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.compare-table thead th {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.compare-table thead th:not(:first-child) { text-align: center; }
.compare-table td:not(:first-child) { text-align: center; color: var(--ink-2); }
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table tr.section-row td {
  background: var(--bg);
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 14px 18px;
  text-align: left !important;
}
.compare-table .yes { color: var(--mint); font-weight: 600; }
.compare-table .no  { color: var(--ink-3); }
.compare-table .featured-col {
  background: linear-gradient(180deg, rgba(255,92,77,.05), rgba(255,92,77,0));
  border-left: 1px solid var(--coral-tint);
  border-right: 1px solid var(--coral-tint);
}
.compare-table thead th.featured-col {
  background: linear-gradient(180deg, var(--coral-tint), rgba(255,92,77,.05));
  color: var(--coral-deep);
}


/* ============================================================
   ROADMAP
   ============================================================ */
.pt-0 { padding-top: 0 !important; }

.rm-filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0 32px;
}
.rm-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rm-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s, transform .12s;
}
.rm-pill:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-1px); }
.rm-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.rm-pill .count {
  font-family: var(--f-mono);
  font-size: 11px;
  padding: 1px 7px;
  background: rgba(0,0,0,.08);
  border-radius: 999px;
}
.rm-pill.active .count { background: rgba(255,255,255,.18); color: #fff; }
.rm-pill-dot { font-size: 10px; }
.rm-pill.tone-mint.active  { background: #2EA56F; border-color: #2EA56F; }
.rm-pill.tone-coral.active { background: #E84A3C; border-color: #E84A3C; }
.rm-pill.tone-sky.active   { background: #2E78D9; border-color: #2E78D9; }

.rm-cat-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-3);
}
.rm-select {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-family: inherit;
  font-size: 13.5px;
  cursor: pointer;
  color: var(--ink);
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%238A8590' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.rm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}
.rm-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.rm-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px -16px rgba(20,12,28,.16); border-color: var(--ink-2); }
.rm-card.tone-mint  { border-left: 3px solid #2EA56F; }
.rm-card.tone-coral { border-left: 3px solid #E84A3C; }
.rm-card.tone-sky   { border-left: 3px solid #2E78D9; }
.rm-card.tone-ink   { border-left: 3px solid #181818; }

.rm-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.rm-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
}
.rm-status-pill.tone-mint  { background: rgba(46,165,111,.12); color: #2EA56F; }
.rm-status-pill.tone-coral { background: var(--coral-tint, #FFE7E1); color: var(--coral-deep, #E84A3C); }
.rm-status-pill.tone-sky   { background: rgba(46,120,217,.12); color: #2E78D9; }
.rm-status-pill.tone-ink   { background: var(--bg-2, #EDE5D2); color: var(--ink-2); }
.rm-quarter {
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: .08em;
}
.rm-card-title {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--ink);
}
.rm-card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 14px;
  flex: 1;
}
.rm-eta {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--coral-deep);
  margin-bottom: 12px;
  padding: 6px 10px;
  background: var(--coral-tint, #FFE7E1);
  border-radius: 6px;
  display: inline-block;
}
.rm-card-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
}
.rm-vote {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg-2, #EDE5D2);
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: background .15s, border-color .15s, transform .12s;
}
.rm-vote:hover { background: var(--coral-tint); color: var(--coral-deep); transform: translateY(-1px); }
.rm-vote.voted { background: var(--coral-deep); color: #fff; }
.rm-vote:disabled { opacity: .5; cursor: default; transform: none; }
.rm-cat { font-size: 12.5px; color: var(--ink-3); flex: 1; }
.rm-comments { font-size: 12.5px; color: var(--ink-3); }
.rm-empty { text-align: center; padding: 60px 20px; color: var(--ink-3); display: flex; flex-direction: column; gap: 12px; align-items: center; }

.rm-suggest { background: var(--bg-2, #EDE5D2); }

/* ============================================================
   CHANGELOG
   ============================================================ */
.cl-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 32px;
  flex-wrap: wrap;
}
.cl-search {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 260px;
}
.cl-search svg { position: absolute; left: 14px; color: var(--ink-3); }
.cl-search input {
  border: 0; outline: 0; background: transparent;
  font-size: 14px;
  padding: 11px 16px 11px 0;
  width: 100%;
  font-weight: 500;
  color: var(--ink);
}
.cl-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.cl-tag {
  padding: 7px 13px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.cl-tag:hover { border-color: var(--ink); color: var(--ink); }
.cl-tag.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.cl-tag .count { font-family: var(--f-mono); font-size: 11px; opacity: .7; margin-left: 4px; }

.cl-stream { border-left: 1px solid var(--line); padding-left: 0; margin-left: 0; }
.cl-entry {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 36px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-2);
}
.cl-entry:last-child { border-bottom: 0; }
@media (max-width: 720px) { .cl-entry { grid-template-columns: 1fr; gap: 8px; } }
.cl-entry-side {
  position: sticky;
  top: 100px;
  align-self: start;
}
.cl-entry-date {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 700;
}
.cl-entry-version {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .12em;
  color: var(--ink-3);
  margin-top: 4px;
}
.cl-entry-h {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  color: var(--ink);
  line-height: 1.1;
}
.cl-entry-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.cl-entry-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}
.cl-item-tag {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 700;
  flex-shrink: 0;
  width: 90px;
  text-align: center;
}
.cl-item-tag.tone-coral { background: var(--coral-tint, #FFE7E1); color: var(--coral-deep); }
.cl-item-tag.tone-sky   { background: rgba(46,120,217,.12); color: #2E78D9; }
.cl-item-tag.tone-mint  { background: rgba(46,165,111,.12); color: #2EA56F; }
.cl-item-tag.tone-warm  { background: rgba(255, 199, 107, .25); color: #B86F1F; }
.cl-item-text strong { color: var(--ink); }
.cl-empty { text-align: center; padding: 60px 20px; color: var(--ink-3); display: flex; flex-direction: column; gap: 12px; align-items: center; }

.cl-archive {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0 0;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--ink-3);
}

/* ============================================================
   STATUS
   ============================================================ */
.status-banner {
  padding: 64px 0 48px;
  text-align: center;
}
.status-banner.tone-mint  { background: linear-gradient(180deg, rgba(46,165,111,.08), transparent); }
.status-banner.tone-sun   { background: linear-gradient(180deg, rgba(255, 199, 107, .15), transparent); }
.status-banner.tone-coral { background: linear-gradient(180deg, var(--coral-tint), transparent); }
.status-banner-eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
  font-weight: 700;
}
.status-banner-row {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.status-banner-dot {
  position: relative;
  width: 22px; height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-banner-dot.tone-mint  { background: #2EA56F; }
.status-banner-dot.tone-sun   { background: #FFC76B; }
.status-banner-dot.tone-coral { background: #E84A3C; }
.status-banner-dot .pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: inherit;
  animation: status-pulse 2s ease-out infinite;
}
@keyframes status-pulse {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(2.5); opacity: 0; }
}
.status-banner-h {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.status-banner-sub {
  margin-top: 12px;
  font-size: 14.5px;
  color: var(--ink-3);
}

.status-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.status-row {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 24px;
}
.status-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 14px;
  flex-wrap: wrap;
}
.status-row-name {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 200px;
}
.status-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(0,0,0,.04);
}
.status-dot.tone-mint  { background: #2EA56F; box-shadow: 0 0 0 4px rgba(46,165,111,.15); }
.status-dot.tone-sun   { background: #FFC76B; box-shadow: 0 0 0 4px rgba(255,199,107,.2); }
.status-dot.tone-coral { background: #E84A3C; box-shadow: 0 0 0 4px var(--coral-tint, #FFE7E1); }
.status-row-title { font-weight: 700; font-size: 15.5px; color: var(--ink); }
.status-row-desc { font-size: 13px; color: var(--ink-3); margin-top: 2px; }
.status-row-meta {
  display: flex; align-items: center; gap: 14px;
}
.status-state-pill {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
}
.status-state-pill.tone-mint  { background: rgba(46,165,111,.12); color: #2EA56F; }
.status-state-pill.tone-sun   { background: rgba(255,199,107,.2); color: #B86F1F; }
.status-state-pill.tone-coral { background: var(--coral-tint); color: var(--coral-deep); }
.status-uptime {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 700;
}
.status-bars {
  display: flex;
  gap: 2px;
  height: 28px;
}
.status-bar {
  flex: 1;
  border-radius: 2px;
  transition: opacity .2s, transform .2s;
}
.status-bar:hover { opacity: .7; transform: scaleY(1.1); }
.status-bars-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-3);
}

.status-section-h {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  color: var(--ink);
}
.status-incidents { display: flex; flex-direction: column; gap: 10px; }
.status-incident {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.status-incident summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.status-incident summary::-webkit-details-marker { display: none; }
.status-incident-title { font-weight: 700; font-size: 15px; color: var(--ink); }
.status-incident-meta  { font-size: 12.5px; color: var(--ink-3); margin-top: 2px; }
.status-incident-status {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
}
.status-incident-status.tone-mint { background: rgba(46,165,111,.12); color: #2EA56F; }
.status-incident-log {
  padding: 0 20px 20px 20px;
  border-top: 1px solid var(--line-2);
}
.status-log-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 13.5px;
}
.status-log-row:last-child { border-bottom: 0; }
.status-log-time {
  font-family: var(--f-mono);
  color: var(--ink-3);
  font-weight: 700;
}
.status-log-msg { color: var(--ink-2); line-height: 1.55; }

.status-cta { background: var(--bg-2, #EDE5D2); }

/* ============================================================
   SECURITY
   ============================================================ */
.sec-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.sec-pillar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  transition: transform .15s, border-color .15s;
}
.sec-pillar:hover { transform: translateY(-3px); border-color: var(--ink); }
.sec-pillar-icon { font-size: 26px; margin-bottom: 14px; }
.sec-pillar h3 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 19px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.sec-pillar p { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); margin: 0; }

.sec-head { text-align: center; margin-bottom: 36px; }
.sec-head .eyebrow { color: var(--coral-deep); margin-bottom: 12px; }
.sec-head h2 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--ink);
}
.sec-head h2 em { font-style: italic; color: var(--ink-2); }
.sec-head p { font-size: 16px; color: var(--ink-2); max-width: 56ch; margin: 0 auto; }

.sec-badges {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.sec-badge {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 22px 16px;
}
.sec-badge-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.sec-badge h4 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 18px;
  margin: 0;
  letter-spacing: -0.01em;
}
.sec-badge-pill {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 700;
}
.sec-badge-pill.ok      { background: rgba(46,165,111,.12); color: #2EA56F; }
.sec-badge-pill.neutral { background: var(--bg-2, #EDE5D2); color: var(--ink-2); }
.sec-badge p { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; margin: 0 0 12px; }
.sec-badge-foot {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--ink-3);
}

.sec-practices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}
.sec-practice {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.sec-practice-tick {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(46,165,111,.12);
  color: #2EA56F;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.sec-practice h4 {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 14.5px;
  margin: 0 0 4px;
  color: var(--ink);
}
.sec-practice p { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; margin: 0; }

.sec-bounty {
  background: linear-gradient(160deg, #1A0F22 0%, #3A1F5C 65%, #9C3597 110%);
  color: #fff;
  border-radius: 24px;
  padding: 56px 56px 48px;
  position: relative;
  overflow: hidden;
}
.sec-bounty::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 60%; height: 140%;
  background: radial-gradient(circle, rgba(255, 200, 80, .35), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
}
.sec-bounty > * { position: relative; }
.sec-bounty-eyebrow {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #FFE08A;
  margin-bottom: 18px;
  font-weight: 700;
}
.sec-bounty h2 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: clamp(28px, 3.8vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 16px;
}
.sec-bounty h2 em {
  font-style: italic;
  color: #FFE08A;
}
.sec-bounty p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,.84);
  max-width: 56ch;
  margin: 0 0 28px;
}
.sec-bounty-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.sec-bounty-actions .btn-outline {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.sec-bounty-actions .btn-outline:hover {
  background: rgba(255,255,255,.16);
  border-color: #fff;
}
.sec-bounty-hall {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.sec-thanks-chip {
  font-family: var(--f-mono);
  font-size: 12px;
  background: rgba(255,255,255,.1);
  padding: 4px 10px;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
}

.sec-cta { background: var(--bg-2, #EDE5D2); }


/* ============================================================
   PRESS & MEDIA
   ============================================================ */
.press-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 720px) { .press-stats { grid-template-columns: repeat(2, 1fr); } }
.press-stat { background: var(--surface); padding: 32px 24px; text-align: left; }
.press-stat-num {
  font-family: var(--f-head);
  font-weight: 400;
  font-size: 42px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.press-stat-lbl {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 8px;
  font-weight: 700;
}

.press-team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 800px) { .press-team { grid-template-columns: 1fr; } }
.press-founder {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
}
.press-founder-av {
  width: 84px; height: 84px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--f-mono);
  font-size: 26px;
  font-weight: 700;
  margin: 0 auto 18px;
}
.press-founder-av.tint-warm { background: linear-gradient(135deg, #FFC76B, #FB8855); }
.press-founder-av.tint-plum { background: linear-gradient(135deg, #C58CE8, #6A2EB8); }
.press-founder-av.tint-rose { background: linear-gradient(135deg, #FF9AAE, #FF5C77); }
.press-founder h4 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.press-founder-role {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
  font-weight: 700;
}
.press-founder p { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); margin: 0 0 16px; }
.press-founder-link {
  font-family: var(--f-mono);
  font-size: 12.5px;
  color: var(--coral-deep);
  font-weight: 700;
  cursor: pointer;
}

.press-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.press-logo {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .15s, box-shadow .15s;
}
.press-logo:hover { transform: translateY(-3px); box-shadow: 0 12px 24px -16px rgba(0,0,0,.2); }
.press-logo-art {
  height: 140px;
  display: grid;
  place-items: center;
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
}
.press-logo-art.black { color: #181818; }
.press-logo-art.white { color: #fff; }
.press-logo-art.coral { color: #E84A3C; }
.press-logo-art.wm-c  { color: #FB8855; }
.press-logo-art.mark-b, .press-logo-art.mark-w {
  font-size: 64px;
  font-family: serif;
  font-weight: 400;
}
.press-logo-art.mark-b { color: #181818; }
.press-logo-art.mark-w { color: #fff; }
.press-logo-art.mark-b::before, .press-logo-art.mark-w::before { content: "A"; }
.press-logo-art.mark-b, .press-logo-art.mark-w { font-size: 64px; }
.press-logo-art.mark-b, .press-logo-art.mark-w { letter-spacing: 0; }
.press-logo-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--bg, #FAF5EA);
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-2);
}
.press-logo-foot a {
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--coral-deep);
  font-weight: 700;
}
.press-logos-cta { text-align: center; margin-top: 32px; }

.press-coverage { display: flex; flex-direction: column; gap: 12px; }
.press-clip {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
  padding: 28px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color .15s, transform .12s;
}
.press-clip:hover { border-color: var(--ink); transform: translateY(-2px); }
@media (max-width: 720px) { .press-clip { grid-template-columns: 1fr; gap: 8px; } }
.press-clip-outlet {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.press-clip-date { font-family: var(--f-mono); font-size: 12px; color: var(--ink-3); margin-top: 4px; }
.press-clip h3 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.press-clip p { font-family: var(--f-head); font-style: italic; font-size: 17px; color: var(--ink-2); line-height: 1.55; margin: 0 0 14px; }
.press-clip a {
  font-family: var(--f-mono);
  font-size: 12.5px;
  color: var(--coral-deep);
  font-weight: 700;
}

.press-contact { background: var(--bg-2, #EDE5D2); }
.press-contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 40px;
  flex-wrap: wrap;
}
.press-contact-card h2 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 30px;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.press-contact-card h2 em { font-style: italic; color: var(--ink-2); }
.press-contact-card p { font-size: 15px; color: var(--ink-2); margin: 8px 0 0; }
.press-contact-card .eyebrow { margin-bottom: 8px; }
.press-contact-card-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners-why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 800px) { .partners-why { grid-template-columns: 1fr; } }
.partners-why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 32px 28px;
}
.partners-why-num {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 52px;
  letter-spacing: -0.03em;
  color: var(--coral-deep);
  line-height: 1;
  margin-bottom: 14px;
}
.partners-why-card h3 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.partners-why-card p { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); margin: 0; }

.partners-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .partners-tiers { grid-template-columns: 1fr; } }
.partners-tier {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.partners-tier.featured {
  border: 2px solid var(--coral, #FB8855);
  background: linear-gradient(180deg, var(--coral-tint, #FFE7E1) 0%, var(--surface) 30%);
  transform: scale(1.02);
}
.partners-tier-flag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral-deep);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  font-weight: 700;
}
.partners-tier h3 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 26px;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.partners-tier > p { font-size: 14.5px; color: var(--ink-2); line-height: 1.5; margin: 0 0 20px; }
.partners-tier ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.partners-tier li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-2); }
.partners-tier li svg { color: var(--coral, #FB8855); margin-top: 2px; flex-shrink: 0; }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 14px;
}
.partner-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color .15s, transform .12s;
}
.partner-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.partner-logo {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 16px;
  flex-shrink: 0;
}
.partner-logo.tint-warm { background: linear-gradient(135deg, #FFC76B, #FB8855); }
.partner-logo.tint-plum { background: linear-gradient(135deg, #C58CE8, #6A2EB8); }
.partner-logo.tint-rose { background: linear-gradient(135deg, #FF9AAE, #FF5C77); }
.partner-logo.tint-sky  { background: linear-gradient(135deg, #79B8FF, #2E78D9); }
.partner-logo.tint-mint { background: linear-gradient(135deg, #6BE2A8, #2EA56F); }
.partner-logo.tint-sun  { background: linear-gradient(135deg, #FFD970, #FB8855); }
.partner-logo.tint-ink  { background: linear-gradient(135deg, #4B4659, #181818); }
.partner-body { flex: 1; min-width: 0; }
.partner-name-row { display: flex; align-items: center; gap: 8px; }
.partner-name-row h4 {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 15px;
  margin: 0;
  color: var(--ink);
}
.partner-tier-pill {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 2px 7px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
}
.partner-meta { font-size: 12.5px; color: var(--ink-3); margin: 4px 0 8px; }
.partner-specs { display: flex; gap: 4px; flex-wrap: wrap; }
.partner-spec {
  font-size: 11.5px;
  background: var(--bg-2, #EDE5D2);
  color: var(--ink-2);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 500;
}

.partners-how { display: flex; flex-direction: column; gap: 14px; }
.partners-how-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.partners-how-num {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 48px;
  letter-spacing: -0.03em;
  color: var(--coral-deep);
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}
.partners-how-row h3 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.partners-how-row p { font-size: 15px; color: var(--ink-2); line-height: 1.55; margin: 0; }

.partners-cta { background: var(--bg-2, #EDE5D2); }

/* ============================================================
   CONNECTORS — marketing
   ============================================================ */
.cn-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 800px) { .cn-featured { grid-template-columns: 1fr; } }
.cn-featured-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform .15s, border-color .15s;
}
.cn-featured-card:hover { transform: translateY(-3px); border-color: var(--ink); }
.cn-featured-logo {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 22px;
  flex-shrink: 0;
}
.cn-featured-cat {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 4px;
  font-weight: 700;
}
.cn-featured-card h3 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.cn-featured-card p { font-size: 14px; color: var(--ink-2); line-height: 1.5; margin: 0; }

.cn-cat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 32px 0 24px;
  justify-content: center;
}
.cn-cat-pill {
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .15s, color .15s, border-color .15s;
}
.cn-cat-pill:hover { border-color: var(--ink); color: var(--ink); }
.cn-cat-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.cn-cat-pill .count {
  font-family: var(--f-mono);
  font-size: 11px;
  padding: 1px 6px;
  background: rgba(0,0,0,.08);
  border-radius: 999px;
}
.cn-cat-pill.active .count { background: rgba(255,255,255,.18); color: #fff; }

.cn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.cn-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color .15s, transform .12s;
  cursor: pointer;
}
.cn-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.cn-card-logo {
  width: 38px; height: 38px;
  border-radius: 9px;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 14px;
  flex-shrink: 0;
}
.cn-card-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.cn-card-cat { font-family: var(--f-mono); font-size: 11px; color: var(--ink-3); letter-spacing: .08em; }

.cn-how { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 800px) { .cn-how { grid-template-columns: 1fr; } }
.cn-how-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 28px 24px;
}
.cn-how-num {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 48px;
  letter-spacing: -0.03em;
  color: var(--coral-deep);
  line-height: 1;
  margin-bottom: 16px;
}
.cn-how-step h3 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.cn-how-step p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; margin: 0; }

.cn-cta { background: var(--bg-2, #EDE5D2); }

/* ============================================================
   AFFILIATES
   ============================================================ */
.af-calc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px 44px 36px;
  box-shadow: 0 12px 32px -16px rgba(20,12,28,.12);
}
.af-calc-head { text-align: center; margin-bottom: 36px; }
.af-calc-head .eyebrow { color: var(--coral-deep); margin-bottom: 12px; }
.af-calc-head h2 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 38px);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.af-calc-head p { font-size: 15px; color: var(--ink-2); margin: 0; }

.af-slider-row { margin-bottom: 28px; }
.af-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.af-slider-label strong {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 26px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.af-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: var(--bg-2, #EDE5D2);
  outline: none;
  cursor: pointer;
}
.af-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--coral-deep);
  border: 4px solid #fff;
  box-shadow: 0 2px 8px rgba(232,74,60,.3);
  cursor: pointer;
}
.af-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--coral-deep);
  border: 4px solid #fff;
  box-shadow: 0 2px 8px rgba(232,74,60,.3);
  cursor: pointer;
}
.af-slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-3);
}

.af-tier {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0;
  padding: 18px 24px;
  background: var(--bg-2, #EDE5D2);
  border-radius: 14px;
}
.af-tier-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 700;
}
.af-tier-name {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.af-tier-rate {
  margin-left: auto;
  font-family: var(--f-mono);
  font-size: 14px;
  background: var(--ink);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
}
.af-tier.tone-coral { background: var(--coral-tint); }
.af-tier.tone-coral .af-tier-rate { background: var(--coral-deep); }
.af-tier.tone-plum  { background: rgba(106,46,184,.1); }
.af-tier.tone-plum  .af-tier-rate { background: #6A2EB8; }
.af-tier.tone-sun   { background: rgba(255, 199, 107, .2); }
.af-tier.tone-sun   .af-tier-rate { background: #B86F1F; }

.af-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 32px;
}
.af-result { background: var(--surface); padding: 22px 20px; text-align: center; }
.af-result.featured { background: linear-gradient(180deg, var(--coral-tint), rgba(255,231,225,.5)); }
.af-result-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
  font-weight: 700;
}
.af-result-num {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.af-result.featured .af-result-num { color: var(--coral-deep); }

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

.af-tiers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 900px) { .af-tiers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .af-tiers-grid { grid-template-columns: 1fr; } }
.af-tier-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 22px 18px;
  position: relative;
}
.af-tier-card.current { border: 2px solid var(--coral-deep); }
.af-tier-card-flag {
  position: absolute;
  top: -10px; right: 16px;
  background: var(--coral-deep);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
}
.af-tier-card h3 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.af-tier-card-rate {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 38px;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 4px;
}
.af-tier-card.tone-coral .af-tier-card-rate { color: var(--coral-deep); }
.af-tier-card.tone-plum  .af-tier-card-rate { color: #6A2EB8; }
.af-tier-card.tone-sun   .af-tier-card-rate { color: #B86F1F; }
.af-tier-card-min {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.af-tier-card p { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; margin: 0; }

.af-how { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 800px) { .af-how { grid-template-columns: 1fr; } }
.af-how-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 28px 24px;
}
.af-how-num {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--coral-deep);
  margin-bottom: 14px;
}
.af-how-step h3 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.af-how-step p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; margin: 0; }

.af-faq { display: flex; flex-direction: column; gap: 8px; }
.af-faq-row {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.af-faq-row summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.af-faq-row summary::-webkit-details-marker { display: none; }
.af-faq-row summary::after {
  content: "+";
  font-family: var(--f-mono);
  font-size: 22px;
  color: var(--ink-3);
  font-weight: 400;
  transition: transform .2s;
}
.af-faq-row[open] summary::after { content: "−"; }
.af-faq-row p {
  padding: 0 22px 22px;
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
}


/* ============================================================
   MEETUPS
   ============================================================ */
.mt-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.mt-region-pill {
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mt-region-pill:hover { border-color: var(--ink); color: var(--ink); }
.mt-region-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.mt-region-pill .count {
  font-family: var(--f-mono);
  font-size: 11px;
  padding: 1px 6px;
  background: rgba(0,0,0,.08);
  border-radius: 999px;
}
.mt-region-pill.active .count { background: rgba(255,255,255,.18); color: #fff; }

.mt-map-wrap { margin-bottom: 32px; }
.mt-map {
  position: relative;
  background: var(--bg-2, #EDE5D2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.mt-map-svg { width: 100%; height: 100%; display: block; }
.mt-pin { cursor: pointer; }
.mt-pin-pulse {
  fill: var(--coral, #FB8855);
  opacity: .3;
  animation: mt-pin-pulse 2s ease-in-out infinite;
}
.mt-pin-dot {
  fill: var(--coral-deep, #E84A3C);
  transition: r .2s;
}
.mt-pin:hover .mt-pin-dot, .mt-pin.active .mt-pin-dot { r: 1.2; fill: var(--ink); }
@keyframes mt-pin-pulse {
  0%, 100% { transform: scale(1); opacity: .4; }
  50%      { transform: scale(1.6); opacity: 0; }
}
.mt-pin-tooltip {
  position: absolute;
  transform: translate(-50%, 0);
  background: var(--ink);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12.5px;
  pointer-events: none;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
}
.mt-pin-tooltip strong { font-size: 13px; }
.mt-pin-tooltip span { font-size: 11.5px; color: rgba(255,255,255,.75); font-family: var(--f-mono); }

.mt-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.mt-city {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
  cursor: pointer;
  transition: border-color .15s, transform .12s;
}
.mt-city:hover, .mt-city.active {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.mt-city-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.mt-city h3 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 22px;
  margin: 0;
  letter-spacing: -0.01em;
}
.mt-city-region {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 700;
}
.mt-city-members {
  font-family: var(--f-mono);
  font-size: 12.5px;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.mt-city-next {
  padding: 12px 14px;
  background: var(--bg-2, #EDE5D2);
  border-radius: 8px;
  margin-bottom: 12px;
}
.mt-city-date {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--coral-deep);
  margin-bottom: 2px;
}
.mt-city-topic { font-size: 13.5px; color: var(--ink-2); line-height: 1.4; }
.mt-city-rsvp {
  font-family: var(--f-mono);
  font-size: 12.5px;
  color: var(--coral-deep);
  font-weight: 700;
  cursor: pointer;
}

.mt-start {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: center;
  background: var(--bg-2, #EDE5D2);
  border-radius: 24px;
  padding: 44px 48px;
}
@media (max-width: 720px) { .mt-start { grid-template-columns: 1fr; gap: 24px; } }
.mt-start h2 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.mt-start h2 em { font-style: italic; color: var(--ink-2); }
.mt-start p { font-size: 15px; color: var(--ink-2); line-height: 1.55; margin: 0 0 16px; }
.mt-start ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.mt-start ul li::before {
  content: "✓ ";
  color: var(--coral-deep);
  font-weight: 700;
  margin-right: 6px;
}
.mt-start-cta { display: flex; flex-direction: column; gap: 10px; }

.mt-code {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 32px;
}
.mt-code h3 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.mt-code p { font-size: 15px; color: var(--ink-2); line-height: 1.55; margin: 0; }

/* ============================================================
   RESOURCES HUB
   ============================================================ */
.res-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-top: 28px;
}
.res-tab {
  padding: 8px 20px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.res-tab:hover { color: var(--ink); }
.res-tab.active { background: var(--ink); color: #fff; }
.res-tab-desc {
  margin-top: 14px;
  font-size: 14.5px;
  color: var(--ink-3);
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}
.learn-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.learn-card:hover { transform: translateY(-3px); border-color: var(--ink); box-shadow: 0 12px 24px -16px rgba(20,12,28,.15); }
.learn-card-thumb {
  height: 140px;
}
.learn-card.tone-coral .learn-card-thumb { background: linear-gradient(135deg, #FFD9CF, #FB8855); }
.learn-card.tone-sun   .learn-card-thumb { background: linear-gradient(135deg, #FFE8B0, #FFC76B); }
.learn-card.tone-plum  .learn-card-thumb { background: linear-gradient(135deg, #D4A8E8, #6A2EB8); }
.learn-card.tone-mint  .learn-card-thumb { background: linear-gradient(135deg, #BFF0D5, #2EA56F); }
.learn-card.tone-sky   .learn-card-thumb { background: linear-gradient(135deg, #BDD9FF, #2E78D9); }
.learn-card.tone-rose  .learn-card-thumb { background: linear-gradient(135deg, #FFD4DC, #FF5C77); }
.learn-card-body { padding: 22px 24px 20px; flex: 1; display: flex; flex-direction: column; }
.learn-card-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 700;
}
.learn-tag { color: var(--coral-deep); }
.learn-card-body h3 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  line-height: 1.15;
}
.learn-card-body p { font-size: 14px; color: var(--ink-2); line-height: 1.55; margin: 0 0 14px; flex: 1; }
.learn-card-link {
  font-family: var(--f-mono);
  font-size: 12.5px;
  color: var(--coral-deep);
  font-weight: 700;
}

.res-cta { background: var(--bg-2, #EDE5D2); }
.res-cta h2 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.02em;
  margin: 0;
}
.res-newsletter {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  max-width: 500px;
  width: 100%;
}
.res-newsletter input {
  border: 0; outline: 0; background: transparent;
  padding: 8px 16px;
  font-size: 14px;
  flex: 1;
  font-weight: 500;
  color: var(--ink);
  min-width: 0;
}

.train-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 14px;
}
.train-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
}
.train-card.lvl-live { border: 2px solid var(--coral-deep); background: linear-gradient(180deg, var(--coral-tint, #FFE7E1), var(--surface) 60%); }
.train-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.train-lvl {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 700;
}
.train-lvl.lvl-free { background: rgba(46,165,111,.12); color: #2EA56F; }
.train-lvl.lvl-pro\+ { background: var(--coral-tint); color: var(--coral-deep); }
.train-lvl.lvl-live  { background: var(--ink); color: #fff; }
.train-hrs {
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: .08em;
}
.train-card h3 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.train-card > p { font-size: 14px; color: var(--ink-2); line-height: 1.55; margin: 0 0 16px; flex: 1; }
.train-card-foot {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--ink-3);
  padding: 12px 0;
  border-top: 1px solid var(--line-2);
  margin-bottom: 16px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.support-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px 18px;
  cursor: pointer;
  display: block;
  transition: border-color .15s, transform .12s, box-shadow .15s;
  text-decoration: none;
}
.support-card:hover { border-color: var(--ink); transform: translateY(-3px); box-shadow: 0 12px 24px -16px rgba(20,12,28,.15); }
.support-card-ic { font-size: 28px; margin-bottom: 10px; }
.support-card h3 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.support-card p { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; margin: 0 0 10px; }
.support-card-count {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--coral-deep);
  font-weight: 700;
}

.support-faq { display: flex; flex-direction: column; gap: 8px; }
.support-faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.support-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
}
.support-faq summary::-webkit-details-marker { display: none; }
.support-faq summary::after {
  content: "+";
  font-family: var(--f-mono);
  font-size: 22px;
  color: var(--ink-3);
  font-weight: 400;
}
.support-faq details[open] summary::after { content: "−"; }
.support-faq p {
  padding: 0 22px 22px;
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
}

.support-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--bg-2, #EDE5D2);
  border-radius: 20px;
  padding: 32px 36px;
  flex-wrap: wrap;
}
.support-contact h3 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.015em;
  margin: 0 0 4px;
}
.support-contact p { font-size: 14.5px; color: var(--ink-2); margin: 0; }
.support-contact-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================================
   LEGAL HUB
   ============================================================ */
.legal-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.legal-tab {
  padding: 8px 16px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  font-family: var(--f-sans);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-2);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.legal-tab:hover { color: var(--ink); }
.legal-tab.active { background: var(--ink); color: #fff; }

.legal-summary {
  background: var(--bg-2, #EDE5D2);
  border-radius: 18px;
  padding: 28px 32px;
  margin-bottom: 40px;
}
.legal-summary .eyebrow { color: var(--coral-deep); margin-bottom: 10px; }
.legal-summary p {
  font-family: var(--f-head);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 16px;
  max-width: 60ch;
}
.legal-updated {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--ink-3);
}

.legal-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
}
.legal-body h2 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 36px 0 12px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  margin: 22px 0 8px;
}
.legal-body p { margin: 0 0 12px; }
.legal-body ul {
  margin: 0 0 12px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-body ul li {
  position: relative;
  padding-left: 22px;
}
.legal-body ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--coral-deep);
  font-weight: 700;
}
.legal-body code {
  font-family: var(--f-mono);
  font-size: 13.5px;
  background: var(--bg-2, #EDE5D2);
  padding: 2px 8px;
  border-radius: 4px;
}
.legal-body strong { color: var(--ink); }
.legal-body a { color: var(--coral-deep); text-decoration: underline; text-underline-offset: 3px; }
.legal-body a:hover { color: var(--coral); }

.legal-foot {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-3);
  text-align: center;
}


/* ============================================================
   Pricing — credit eyebrow + PAYG callout
   ============================================================ */
.price-credit-eyebrow {
  margin: 12px 0 18px;
  padding: 8px 14px;
  background: var(--coral-tint, #FFE7E1);
  color: var(--coral-deep, #E84A3C);
  border-radius: 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
}
.price-card.featured .price-credit-eyebrow {
  background: rgba(255,255,255,.15);
  color: #fff;
}

.price-payg {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
  align-items: center;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-2, #EDE5D2) 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 36px;
}
@media (max-width: 800px) { .price-payg { grid-template-columns: 1fr; gap: 20px; } }
.price-payg-eyebrow {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral-deep, #E84A3C);
  margin-bottom: 10px;
  font-weight: 700;
}
.price-payg-left h3 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--ink);
  line-height: 1.15;
}
.price-payg-left h3 em { font-style: italic; color: var(--ink-2); }
.price-payg-left p { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); margin: 0; }
.price-payg-left p strong { color: var(--ink); }
.price-payg-right { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
@media (max-width: 800px) { .price-payg-right { align-items: flex-start; } }
.price-payg-edu { font-size: 13px; color: var(--ink-3); }
.price-payg-edu a { color: var(--coral-deep); font-weight: 700; }


/* ============================================================
   PRICING — 6-tier grid & versus competitors
   ============================================================ */
.pricing-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 1100px) { .pricing-6 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .pricing-6 { grid-template-columns: 1fr; } }

.price6-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .15s, transform .12s, box-shadow .15s;
}
.price6-card:hover { border-color: var(--ink-2); transform: translateY(-3px); box-shadow: 0 12px 24px -16px rgba(20,12,28,.14); }
.price6-card.featured {
  border: 2px solid var(--coral, #FB8855);
  background: linear-gradient(180deg, var(--coral-tint, #FFE7E1) 0%, var(--surface) 40%);
  transform: scale(1.02);
}
.price6-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral-deep);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}
.price6-name {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 4px;
}
.price6-blurb {
  font-family: var(--f-head);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.price6-amt {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 44px;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 4px;
}
.price6-amt small {
  font-size: 16px;
  color: var(--ink-3);
  font-weight: 400;
  margin-left: 4px;
}
.price6-billed {
  font-size: 12.5px;
  color: var(--ink-3);
  margin-bottom: 18px;
}
.price6-feat {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-2);
  flex: 1;
}
.price6-feat li {
  padding: 6px 0;
  border-bottom: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  gap: 6px;
}
.price6-feat li:last-child { border-bottom: 0; }
.price6-feat strong { color: var(--ink); font-weight: 700; }
.price6-feat svg { color: var(--mint, #2EA56F); flex-shrink: 0; }

/* 6-col compare table */
.compare-table-6 {
  font-size: 13px;
}
.compare-table-6 th, .compare-table-6 td { padding: 12px 12px; }
.compare-table-6 th:not(:first-child), .compare-table-6 td:not(:first-child) { text-align: center; min-width: 92px; }

.price-compare-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  margin-top: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  gap: 16px;
  flex-wrap: wrap;
}
.price-compare-cta span {
  font-size: 14px;
  color: var(--ink-2);
}
.price-compare-cta strong { color: var(--ink); font-weight: 700; }

/* Versus competitors */
.vs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg, 14px);
  overflow: hidden;
  font-size: 14px;
}
.vs-table th, .vs-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line-2);
}
.vs-table thead th {
  background: var(--bg);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 700;
}
.vs-table thead th.vs-us {
  background: var(--ink);
  color: #fff;
}
.vs-table tr:last-child td { border-bottom: 0; }
.vs-table .vs-label { font-weight: 600; color: var(--ink); width: 30%; }
.vs-table td.vs-us {
  background: linear-gradient(180deg, rgba(251,136,85,.06), rgba(251,136,85,0));
  border-left: 1px solid var(--coral-tint);
  border-right: 1px solid var(--coral-tint);
  font-weight: 600;
  color: var(--ink);
}
.vs-table .highlight {
  font-weight: 700;
  color: var(--mint, #2EA56F);
}
.vs-table .bad {
  font-style: italic;
  color: var(--ink-3);
}
.vs-foot {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--ink-3);
  font-style: italic;
}

/* ============================================================
   CERTIFICATION
   ============================================================ */
.cert-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 720px) { .cert-stats { grid-template-columns: repeat(2, 1fr); } }
.cert-stat { background: var(--surface); padding: 28px 24px; }
.cert-stat-num {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.cert-stat-lbl {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 8px;
  font-weight: 700;
}

.cert-tracks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 1000px) { .cert-tracks { grid-template-columns: 1fr; } }
.cert-track {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.cert-track.tone-coral { border-top: 4px solid #E84A3C; }
.cert-track.tone-plum  { border-top: 4px solid #6A2EB8; }
.cert-track.tone-ink   { border-top: 4px solid #181818; }
.cert-track.featured {
  background: linear-gradient(180deg, rgba(106,46,184,.06) 0%, var(--surface) 60%);
  box-shadow: 0 20px 40px -20px rgba(106,46,184,.18);
}
.cert-track-flag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #6A2EB8;
  color: #fff;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  font-weight: 700;
}
.cert-track-level {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
  font-weight: 700;
}
.cert-track h3 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.cert-track-tagline {
  font-family: var(--f-head);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.cert-track > p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; margin: 0 0 20px; }
.cert-track-price {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-2);
}
.cert-track-section-title {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 10px;
  font-weight: 700;
}
.cert-track-modules, .cert-track-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}
.cert-track-modules li {
  position: relative;
  padding-left: 22px;
}
.cert-track-modules li::before {
  content: attr(data-num);
  position: absolute;
  left: 0;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-3);
}
.cert-track-modules li:nth-child(1)::before { content: "01"; }
.cert-track-modules li:nth-child(2)::before { content: "02"; }
.cert-track-modules li:nth-child(3)::before { content: "03"; }
.cert-track-modules li:nth-child(4)::before { content: "04"; }
.cert-track-modules li:nth-child(5)::before { content: "05"; }
.cert-track-modules li:nth-child(6)::before { content: "06"; }
.cert-track-modules li:nth-child(7)::before { content: "07"; }
.cert-track-perks li { display: flex; align-items: flex-start; gap: 8px; }
.cert-track-perks li svg { color: var(--mint, #2EA56F); flex-shrink: 0; margin-top: 3px; }
.cert-track > a { margin-top: auto; }

.cert-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 800px) { .cert-steps { grid-template-columns: 1fr; } }
.cert-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 30px 28px;
}
.cert-step-num {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 40px;
  letter-spacing: -0.025em;
  color: var(--coral-deep, #E84A3C);
  margin-bottom: 14px;
}
.cert-step h3 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.cert-step p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; margin: 0; }

.cert-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .cert-testimonials { grid-template-columns: 1fr; } }
.cert-quote {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 28px 22px;
}
.cert-quote blockquote {
  font-family: var(--f-head);
  font-style: italic;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.cert-quote figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line-2);
}
.cert-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.cert-avatar.tone-warm { background: linear-gradient(135deg, #FFC76B, #FB8855); }
.cert-avatar.tone-plum { background: linear-gradient(135deg, #C58CE8, #6A2EB8); }
.cert-avatar.tone-rose { background: linear-gradient(135deg, #FF9AAE, #FF5C77); }
.cert-quote-name { font-size: 14.5px; font-weight: 700; color: var(--ink); }
.cert-quote-role { font-size: 12.5px; color: var(--ink-3); margin-top: 2px; }

.cert-verify {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 36px;
  align-items: center;
  background: var(--bg-2, #EDE5D2);
  border-radius: 20px;
  padding: 32px 36px;
}
@media (max-width: 720px) { .cert-verify { grid-template-columns: 1fr; } }
.cert-verify h3 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin: 6px 0 6px;
}
.cert-verify p { font-size: 14.5px; color: var(--ink-2); margin: 0; }
.cert-verify-form {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px;
  gap: 6px;
}
.cert-verify-form input {
  border: 0; outline: 0; background: transparent;
  padding: 10px 14px;
  font-family: var(--f-mono);
  font-size: 13.5px;
  flex: 1;
  color: var(--ink);
  min-width: 0;
}

.cert-enterprise {
  background: linear-gradient(160deg, #1A0F22 0%, #3A1F5C 65%, #6A2EB8 110%);
  color: #fff;
  border-radius: 24px;
  padding: 48px 52px 44px;
  position: relative;
  overflow: hidden;
}
.cert-enterprise::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 50%; height: 140%;
  background: radial-gradient(circle, rgba(255,200,80,.3), transparent 60%);
  filter: blur(20px);
}
.cert-enterprise > * { position: relative; }
.cert-enterprise .eyebrow { color: #FFE08A; margin-bottom: 14px; }
.cert-enterprise h2 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: clamp(28px, 3.8vw, 40px);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: #fff;
}
.cert-enterprise h2 em { font-style: italic; color: #FFE08A; }
.cert-enterprise p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,.84);
  margin: 0 0 28px;
  max-width: 56ch;
}
.cert-enterprise .btn-outline {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.cert-enterprise .btn-outline:hover { background: rgba(255,255,255,.16); border-color: #fff; }


/* ============================================================
   WEBINARS
   ============================================================ */
.wb-featured {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  align-items: stretch;
}
@media (max-width: 900px) { .wb-featured { grid-template-columns: 1fr; } }

.wb-featured-left { padding: 36px 40px 32px; }
.wb-featured-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--coral-tint);
  color: var(--coral-deep);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-weight: 700;
}
.wb-featured h2 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.1;
  color: var(--ink);
}
.wb-featured > .wb-featured-left > p { font-size: 16px; color: var(--ink-2); line-height: 1.55; margin: 0 0 24px; }
.wb-featured-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 24px;
}
@media (max-width: 540px) { .wb-featured-meta { grid-template-columns: repeat(2, 1fr); } }
.wb-meta-label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 700;
  margin-bottom: 4px;
}
.wb-meta-val { font-size: 14.5px; font-weight: 700; color: var(--ink); }
.wb-featured-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.wb-rsvps { font-size: 13px; color: var(--ink-3); font-family: var(--f-mono); }

.wb-featured-thumb {
  position: relative;
  background: linear-gradient(135deg, #FB8855 0%, #B83E8E 60%, #5C2EB8 110%);
  display: grid;
  place-items: center;
  min-height: 240px;
  color: #fff;
  overflow: hidden;
}
.wb-thumb-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.15), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(255,224,138,.25), transparent 60%);
}
.wb-thumb-play {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,.4);
  display: grid;
  place-items: center;
  font-size: 22px;
  padding-left: 4px;
  transition: transform .2s;
}
.wb-featured-thumb:hover .wb-thumb-play { transform: scale(1.1); }
.wb-thumb-date {
  position: absolute;
  bottom: 18px; left: 18px;
  background: rgba(20, 12, 28, .55);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 10px;
  text-align: center;
}
.wb-thumb-month {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.8);
  font-weight: 700;
}
.wb-thumb-day {
  font-family: var(--f-head);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}

.wb-filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.wb-track-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.wb-track-pill {
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-2);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.wb-track-pill:hover { border-color: var(--ink); color: var(--ink); }
.wb-track-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.wb-newsletter-link {
  font-family: var(--f-mono);
  font-size: 12.5px;
  color: var(--coral-deep);
  font-weight: 700;
}

.wb-upcoming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}
.wb-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .15s, transform .12s;
}
.wb-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.wb-card-date {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 14px 0;
  color: #fff;
}
.wb-card.tone-coral .wb-card-date { background: linear-gradient(160deg, #FB8855, #E84A3C); }
.wb-card.tone-plum  .wb-card-date { background: linear-gradient(160deg, #9C3597, #5C2EB8); }
.wb-card.tone-rose  .wb-card-date { background: linear-gradient(160deg, #FF9AAE, #FF5C77); }
.wb-card.tone-sun   .wb-card-date { background: linear-gradient(160deg, #FFD970, #FB8855); }
.wb-card-month {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  font-weight: 700;
}
.wb-card-day {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
}
.wb-card-body { padding: 20px 22px 18px; }
.wb-card-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}
.wb-card-track { color: var(--coral-deep); }
.wb-card-time { color: var(--ink-3); }
.wb-card h3 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 20px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.wb-card-speaker { font-size: 13px; color: var(--ink-2); margin-bottom: 12px; font-weight: 500; }
.wb-card p { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; margin: 0 0 14px; }
.wb-card-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line-2);
}
.wb-card-rsvps { font-size: 12px; color: var(--ink-3); font-family: var(--f-mono); }

.wb-ondemand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.wb-ondemand-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .15s, border-color .15s;
  cursor: pointer;
}
.wb-ondemand-card:hover { transform: translateY(-3px); border-color: var(--ink); }
.wb-ondemand-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  color: #fff;
}
.wb-ondemand-card.tone-coral .wb-ondemand-thumb { background: linear-gradient(135deg, #FFD9CF, #FB8855); }
.wb-ondemand-card.tone-plum  .wb-ondemand-thumb { background: linear-gradient(135deg, #D4A8E8, #6A2EB8); }
.wb-ondemand-card.tone-rose  .wb-ondemand-thumb { background: linear-gradient(135deg, #FFD4DC, #FF5C77); }
.wb-ondemand-card.tone-mint  .wb-ondemand-thumb { background: linear-gradient(135deg, #BFF0D5, #2EA56F); }
.wb-ondemand-card.tone-sky   .wb-ondemand-thumb { background: linear-gradient(135deg, #BDD9FF, #2E78D9); }
.wb-ondemand-card.tone-warm  .wb-ondemand-thumb { background: linear-gradient(135deg, #FFE8B0, #FFC76B); }
.wb-thumb-duration {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(20,12,28,.7);
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
}
.wb-ondemand-body { padding: 16px 18px 16px; }
.wb-ondemand-meta {
  display: flex; gap: 6px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--ink-3);
  margin-bottom: 8px;
  font-weight: 700;
}
.wb-ondemand-card h3 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 17px;
  margin: 0 0 4px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.wb-ondemand-speaker { font-size: 12.5px; color: var(--ink-3); font-weight: 500; }

.wb-pitch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 36px;
  flex-wrap: wrap;
}
.wb-pitch h2 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: clamp(24px, 2.8vw, 30px);
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.wb-pitch h2 em { font-style: italic; color: var(--ink-2); }
.wb-pitch p { font-size: 14.5px; color: var(--ink-2); margin: 0; max-width: 48ch; }
.wb-pitch .eyebrow { margin-bottom: 8px; color: var(--coral-deep); }

/* ============================================================
   SUMMIT
   ============================================================ */
.summit-hero {
  background: linear-gradient(160deg, #0E0915 0%, #3A1F5C 40%, #9C3597 75%, #FB8855 110%);
  color: #fff;
  padding: 96px 24px 72px;
  position: relative;
  overflow: hidden;
}
.summit-hero-bloom {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 130%;
  background: radial-gradient(circle, rgba(255,200,80,.4), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.summit-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.5) 1px, transparent 1.5px),
    radial-gradient(circle at 28% 65%, rgba(255,255,255,.35) 1px, transparent 1.5px),
    radial-gradient(circle at 78% 35%, rgba(255,255,255,.45) 1px, transparent 1.5px),
    radial-gradient(circle at 55% 80%, rgba(255,255,255,.3) 1px, transparent 1.5px),
    radial-gradient(circle at 92% 78%, rgba(255,255,255,.45) 1px, transparent 1.5px);
  pointer-events: none;
  opacity: .55;
}
.summit-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #FFE08A;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.summit-hero-h {
  font-family: var(--f-head);
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: #fff;
}
.summit-hero-h em {
  font-style: italic;
  background: linear-gradient(180deg, #FFE08A 0%, #FB8855 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.summit-hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,.84);
  max-width: 60ch;
  margin: 0 0 36px;
}
.summit-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  overflow: hidden;
  max-width: 720px;
  backdrop-filter: blur(8px);
}
@media (max-width: 640px) { .summit-hero-meta { grid-template-columns: 1fr; } }
.summit-hero-meta-item {
  background: rgba(20,12,28,.32);
  padding: 18px 22px;
}
.summit-hero-meta-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  font-weight: 700;
  margin-bottom: 4px;
}
.summit-hero-meta-val { font-size: 16px; font-weight: 700; color: #fff; }
.summit-btn-light {
  background: rgba(255,255,255,.1) !important;
  border-color: rgba(255,255,255,.3) !important;
  color: #fff !important;
}
.summit-btn-light:hover { background: rgba(255,255,255,.18) !important; border-color: #fff !important; }

.summit-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 720px) { .summit-stats { grid-template-columns: repeat(2, 1fr); } }
.summit-stat { background: var(--surface); padding: 26px 24px; }
.summit-stat-num {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 40px;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.summit-stat-lbl {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 8px;
  font-weight: 700;
}

.summit-speakers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .summit-speakers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .summit-speakers { grid-template-columns: 1fr; } }
.summit-speaker {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
}
.summit-speaker-av {
  width: 88px; height: 88px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--f-mono);
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 18px;
}
.summit-speaker-av.tint-warm { background: linear-gradient(135deg, #FFC76B, #FB8855); }
.summit-speaker-av.tint-plum { background: linear-gradient(135deg, #C58CE8, #6A2EB8); }
.summit-speaker-av.tint-rose { background: linear-gradient(135deg, #FF9AAE, #FF5C77); }
.summit-speaker-av.tint-sky  { background: linear-gradient(135deg, #79B8FF, #2E78D9); }
.summit-speaker-av.tint-mint { background: linear-gradient(135deg, #6BE2A8, #2EA56F); }
.summit-speaker-av.tint-sun  { background: linear-gradient(135deg, #FFD970, #FB8855); }
.summit-speaker h3 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.summit-speaker-role { font-size: 12.5px; color: var(--ink-3); margin-bottom: 16px; }
.summit-speaker-talk {
  font-family: var(--f-head);
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.4;
  padding-top: 16px;
  border-top: 1px solid var(--line-2);
}

.summit-agenda {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 900px) { .summit-agenda { grid-template-columns: 1fr; } }
.summit-day {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.summit-day-head {
  padding: 24px 28px;
  background: var(--bg-2, #EDE5D2);
  border-bottom: 1px solid var(--line);
}
.summit-day-label {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 700;
}
.summit-day-date {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 4px;
}
.summit-slot {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line-2);
}
.summit-slot:last-child { border-bottom: 0; }
.summit-slot.break, .summit-slot.social {
  background: var(--bg-2, #EDE5D2);
  color: var(--ink-3);
}
.summit-slot-time {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-2);
}
.summit-slot-title { font-size: 14.5px; font-weight: 700; color: var(--ink); }
.summit-slot.break .summit-slot-title, .summit-slot.social .summit-slot-title { font-weight: 500; color: var(--ink-2); }
.summit-slot-by { font-size: 12.5px; color: var(--ink-3); margin-top: 2px; }
.summit-slot-kind {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 700;
}
.summit-slot-kind.kind-talk     { background: rgba(46,120,217,.12); color: #2E78D9; }
.summit-slot-kind.kind-keynote  { background: var(--coral-tint); color: var(--coral-deep); }
.summit-slot-kind.kind-panel    { background: rgba(106,46,184,.12); color: #6A2EB8; }
.summit-slot-kind.kind-workshop { background: rgba(46,165,111,.12); color: #2EA56F; }
.summit-slot-kind.kind-break    { background: rgba(0,0,0,.04); color: var(--ink-3); }
.summit-slot-kind.kind-social   { background: rgba(255,199,107,.2); color: #B86F1F; }

.summit-tickets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .summit-tickets { grid-template-columns: 1fr; } }
.summit-ticket {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.summit-ticket.featured {
  border: 2px solid var(--coral-deep);
  background: linear-gradient(180deg, var(--coral-tint) 0%, var(--surface) 40%);
  transform: scale(1.02);
  box-shadow: 0 20px 40px -20px rgba(232,74,60,.2);
}
.summit-ticket-tag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--coral-deep);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  font-weight: 700;
}
.summit-ticket h3 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.summit-ticket-sub {
  font-family: var(--f-head);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-3);
  margin-bottom: 20px;
}
.summit-ticket-price {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 48px;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-2);
}
.summit-ticket-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.45;
  flex: 1;
}
.summit-ticket-perks li { display: flex; align-items: flex-start; gap: 10px; }
.summit-ticket-perks li svg { color: var(--mint, #2EA56F); flex-shrink: 0; margin-top: 3px; }

.summit-scholarship {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--bg-2, #EDE5D2);
  border-radius: 14px;
  font-size: 14px;
  color: var(--ink-2);
  text-align: center;
}
.summit-scholarship strong { color: var(--ink); font-weight: 700; }
.summit-scholarship a { color: var(--coral-deep); font-weight: 700; }

.summit-venue {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 40px;
}
@media (max-width: 720px) { .summit-venue { grid-template-columns: 1fr; } }
.summit-venue h2 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.02em;
  margin: 6px 0 12px;
}
.summit-venue h2 em { font-style: italic; color: var(--ink-2); }
.summit-venue p { font-size: 15px; color: var(--ink-2); line-height: 1.55; margin: 0 0 20px; }
.summit-venue-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.summit-venue-list li { display: flex; align-items: center; gap: 10px; }
.summit-venue-list li svg { color: var(--mint, #2EA56F); }
.summit-venue-map {
  background: var(--bg-2, #EDE5D2);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 320/220;
}

.summit-sponsors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 720px) { .summit-sponsors { grid-template-columns: repeat(2, 1fr); } }
.summit-sponsor {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  transition: border-color .15s, transform .12s;
}
.summit-sponsor:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }

.summit-faq { display: flex; flex-direction: column; gap: 8px; }
.summit-faq-row {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.summit-faq-row summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
}
.summit-faq-row summary::-webkit-details-marker { display: none; }
.summit-faq-row summary::after {
  content: "+";
  font-family: var(--f-mono);
  font-size: 22px;
  color: var(--ink-3);
  font-weight: 400;
}
.summit-faq-row[open] summary::after { content: "−"; }
.summit-faq-row p { padding: 0 22px 22px; margin: 0; font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }

.summit-final-cta {
  background: linear-gradient(180deg, var(--bg-2, #EDE5D2), transparent);
}
.summit-final-cta h2 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: clamp(34px, 4.5vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
}
.summit-final-cta h2 em { font-style: italic; color: var(--coral-deep); }


/* ============================================================
   PRICING — 3-card layout with interactive plan picker
   ============================================================ */
.pricing-3 {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 1000px) { .pricing-3 { grid-template-columns: 1fr; } }

.price3-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .15s, transform .12s, box-shadow .15s;
}
.price3-card:hover { transform: translateY(-3px); }
.price3-card.featured {
  border: 2px solid var(--coral, #FB8855);
  background: linear-gradient(180deg, var(--coral-tint, #FFE7E1) 0%, var(--surface) 30%);
  box-shadow: 0 20px 48px -20px rgba(232,74,60,.22);
}
.price3-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral-deep, #E84A3C);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.price3-name {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 4px;
}
.price3-blurb {
  font-family: var(--f-head);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-3);
  margin-bottom: 18px;
}
.price3-amt {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 52px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 6px;
  transition: color .2s;
}
.price3-amt small {
  font-size: 18px;
  color: var(--ink-3);
  font-weight: 400;
  margin-left: 4px;
}
.price3-amt-custom { font-size: 38px; }
.price3-billed {
  font-size: 12.5px;
  color: var(--ink-3);
  margin-bottom: 20px;
}

.price3-headline {
  background: var(--bg-2, #EDE5D2);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.price3-card.featured .price3-headline { background: rgba(255, 255, 255, .55); }
.price3-headline strong {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-right: 4px;
}
.price3-rollover {
  font-size: 12.5px;
  color: var(--ink-3);
  margin-left: 4px;
}

.price3-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.45;
  flex: 1;
}
.price3-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.price3-perks li svg {
  color: var(--mint, #2EA56F);
  flex-shrink: 0;
  margin-top: 3px;
}
.price3-card > a { margin-top: auto; }

/* Dropdowns inside picker card */
.price3-select-row {
  display: block;
  margin-bottom: 14px;
}
.price3-select-label {
  display: block;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 700;
  margin-bottom: 6px;
}
.price3-select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 40px 12px 14px;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  outline: 0;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23E84A3C' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color .15s, box-shadow .15s;
}
.price3-select:hover { border-color: var(--ink); }
.price3-select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(24,24,24,.06);
}

/* Picker card: position dropdowns above the price by giving the price a wrapping order */
.price3-picker .price3-select-row:first-of-type {
  margin-top: -8px;
}
/* The first dropdown (Plan) sits above blurb; rest sit between price and perks.
   To keep visual rhythm consistent, the first select-row drops the bottom margin
   slightly. */

.price-help-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--bg-2, #EDE5D2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 22px;
  margin-top: 28px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
}
.price-help-strip strong { color: var(--ink); font-weight: 700; }
.price-help-link {
  font-family: var(--f-mono);
  font-size: 12.5px;
  color: var(--coral-deep);
  font-weight: 700;
  white-space: nowrap;
}


/* ============================================================
   BUILT-WITH BADGE — appears on Free-tier published apps
   Bottom-right floating pill; remove via Pro plan
   ============================================================ */
.builtwith-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  background: rgba(20, 12, 28, 0.92);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 22px -8px rgba(20,12,28,.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .18s cubic-bezier(.18,.89,.32,1.15), box-shadow .18s, background .18s;
  cursor: pointer;
  font-family: var(--f-sans);
}
.builtwith-badge:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 32px -10px rgba(20,12,28,.5);
  background: rgba(20,12,28,1);
}
.builtwith-mark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.builtwith-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.builtwith-text-1 {
  font-size: 9.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  font-weight: 600;
  font-family: var(--f-mono);
}
.builtwith-text-2 {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.005em;
}

/* Smaller, lighter variant for in-preview overlays (dashboard editor) */
.builtwith-badge.in-preview {
  right: 14px;
  bottom: 14px;
  padding: 6px 12px 6px 6px;
  background: rgba(20, 12, 28, 0.85);
}
.builtwith-badge.in-preview .builtwith-mark { width: 20px; height: 20px; }
.builtwith-badge.in-preview .builtwith-mark svg { width: 12px; height: 12px; }
.builtwith-badge.in-preview .builtwith-text-1 { font-size: 8.5px; }
.builtwith-badge.in-preview .builtwith-text-2 { font-size: 11px; }

/* Hide on very small screens to avoid covering content */
@media (max-width: 480px) {
  .builtwith-badge { right: 12px; bottom: 12px; padding: 6px 10px 6px 6px; }
  .builtwith-badge .builtwith-text-1 { display: none; }
}

/* ============================================================
   SUPPORT (standalone front-site page)
   ============================================================ */
.supx-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 72px;
}
.supx-bloom {
  position: absolute;
  inset: -10% -5% auto -5%;
  height: 70%;
  background:
    radial-gradient(420px 280px at 18% 10%, rgba(255,197,61,.18), transparent 60%),
    radial-gradient(520px 360px at 82% 20%, rgba(255,92,77,.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Ask box */
.supx-ask {
  position: relative;
  margin: 36px auto 0;
  max-width: 720px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 14px 18px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 28px 68px -32px rgba(20,12,28,.25), 0 2px 0 rgba(20,12,28,.02);
  text-align: left;
  transition: border-color .15s, box-shadow .15s;
}
.supx-ask:focus-within {
  border-color: var(--ink);
  box-shadow: 0 30px 80px -28px rgba(255,92,77,.35), 0 0 0 4px rgba(255,92,77,.12);
}
.supx-ask.thinking { border-color: var(--coral); }
.supx-ask.answered { border-color: var(--mint); }

.supx-ask-ic {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--sun);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.supx-ask-dots { display: inline-flex; gap: 4px; }
.supx-ask-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sun);
  animation: supxDot 1.2s ease-in-out infinite;
}
.supx-ask-dots span:nth-child(2) { animation-delay: .15s; }
.supx-ask-dots span:nth-child(3) { animation-delay: .3s; }
@keyframes supxDot {
  0%, 80%, 100% { opacity: .3; transform: translateY(0); }
  40%           { opacity: 1;  transform: translateY(-2px); }
}

.supx-ask textarea {
  border: 0; outline: 0;
  background: transparent;
  resize: none;
  font-family: var(--f-sans);
  font-size: 17.5px;
  line-height: 1.5;
  color: var(--ink);
  padding: 8px 0;
  min-height: 32px;
  max-height: 120px;
  width: 100%;
}
.supx-ask textarea::placeholder { color: var(--ink-3); }

.supx-ask-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.supx-ask-clear {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: var(--surface-2);
  border: 0; border-radius: 50%;
  color: var(--ink-3);
  cursor: pointer;
}
.supx-ask-clear:hover { background: var(--line); color: var(--ink); }
.supx-ask-go { padding: 10px 18px; font-size: 14px; }
.supx-ask-go:disabled { opacity: .5; cursor: not-allowed; box-shadow: none; transform: none; }
.supx-ask-kbd {
  position: absolute;
  bottom: -22px; right: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

/* Suggestion chips */
.supx-suggest {
  max-width: 720px;
  margin: 36px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  text-align: left;
}
.supx-suggest-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-right: 4px;
}
.supx-suggest-chip {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
  transition: border-color .15s, color .15s, transform .15s;
}
.supx-suggest-chip:hover {
  border-color: var(--ink);
  color: var(--ink);
  transform: translateY(-1px);
}

/* AI answer card */
.supx-answer {
  max-width: 720px;
  margin: 20px auto 0;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--mint);
  border-radius: 18px;
  padding: 20px 24px;
  animation: supxAnsIn .35s ease-out;
}
@keyframes supxAnsIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.supx-answer-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.supx-answer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700;
  font-size: 12px;
  color: var(--ink);
  background: var(--mint-tint);
  padding: 5px 11px;
  border-radius: 999px;
}
.supx-answer-badge svg { color: var(--mint); }
.supx-answer-meta { font-family: var(--f-mono); font-size: 11px; color: var(--ink-3); }
.supx-answer-body { font-size: 15px; line-height: 1.65; color: var(--ink); }
.supx-answer-body a { color: var(--coral); text-decoration: underline; text-underline-offset: 2px; cursor: pointer; }
.supx-answer-cites {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line-2);
}
.supx-cite {
  font-size: 12px;
  padding: 6px 11px;
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  color: var(--ink-2);
  cursor: pointer;
}
.supx-cite:hover { border-color: var(--ink); color: var(--ink); }
.supx-answer-foot {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  margin-top: 16px;
}
.supx-helpful {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px;
  color: var(--ink-3);
}
.supx-helpful-btn {
  padding: 5px 11px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink-2);
  cursor: pointer;
}
.supx-helpful-btn:hover { border-color: var(--ink); color: var(--ink); }

/* Meta strip */
.supx-meta {
  position: relative;
  margin-top: 36px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-3);
}
.supx-meta strong { color: var(--ink); font-weight: 600; }
.supx-meta-sep { opacity: .5; }
.supx-meta-link { color: var(--coral-deep); text-decoration: none; }
.supx-meta-link:hover { text-decoration: underline; }
.supx-meta-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
  margin-right: 4px;
  vertical-align: middle;
  box-shadow: 0 0 0 4px rgba(31,178,149,.22);
  animation: supxPulse 2.2s ease-in-out infinite;
}
@keyframes supxPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(31,178,149,.22); }
  50%      { box-shadow: 0 0 0 9px rgba(31,178,149,.05); }
}

/* Topic grid */
.supx-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .supx-topic-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .supx-topic-grid { grid-template-columns: 1fr; } }
.supx-topic {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 22px 20px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
.supx-topic:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 14px 28px -16px rgba(20,12,28,.18);
}
.supx-topic-ic {
  font-size: 28px;
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.supx-topic.tone-sun   .supx-topic-ic { background: var(--sun-tint); }
.supx-topic.tone-sky   .supx-topic-ic { background: var(--sky-tint); }
.supx-topic.tone-mint  .supx-topic-ic { background: var(--mint-tint); }
.supx-topic.tone-coral .supx-topic-ic { background: var(--coral-tint); }
.supx-topic.tone-plum  .supx-topic-ic { background: #ECE3F3; }
.supx-topic.tone-rose  .supx-topic-ic { background: var(--pink-tint); }
.supx-topic h3 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.supx-topic p { font-size: 14px; color: var(--ink-2); line-height: 1.5; margin: 0 0 12px; }
.supx-topic-count {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-3);
}

/* Two-up: guides + faq */
.supx-twoup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) { .supx-twoup { grid-template-columns: 1fr; gap: 36px; } }

.supx-guides {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.supx-guide {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background .12s;
}
.supx-guide + .supx-guide { border-top: 1px solid var(--line-2); }
.supx-guide:hover { background: var(--surface-2); }
.supx-guide:hover svg { transform: translateX(2px); transition: transform .12s; }
.supx-guide-idx {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-3);
  width: 26px;
}
.supx-guide-title { font-weight: 600; font-size: 14.5px; }
.supx-guide-meta { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.supx-guide svg { color: var(--ink-3); }

.supx-faq { margin-top: 24px; }

/* Contact grid */
.supx-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .supx-contact-grid { grid-template-columns: 1fr; } }
.supx-contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 24px 22px;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.supx-contact-ic {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--surface-2);
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.supx-contact-card h3 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.supx-contact-card p { font-size: 14px; color: var(--ink-2); line-height: 1.5; margin: 0 0 18px; }
.supx-contact-card .btn-block { margin-top: auto; justify-content: center; width: 100%; }

.supx-status-pulse {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(31,178,149,.22);
  animation: supxPulse 2.2s ease-in-out infinite;
}

/* CTA */
.supx-cta {
  background:
    radial-gradient(800px 380px at 50% 0%, rgba(255,92,77,.06), transparent 70%),
    var(--bg);
  border-top: 1px solid var(--line-2);
}

