/* ============================================================
   CateringOS — Editorial premium design system
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Nordic SaaS — one accent, grey does the rest. */
  --paper: #FFFFFF;       /* White page canvas */
  --paper-2: #F2F4F7;     /* Gray 100 — hovers, soft dividers */
  --paper-3: #E4E7EC;     /* Gray 200 — card borders */
  --ink: #101828;         /* Gray 900 — primary text */
  --ink-2: #344054;       /* Gray 700 — body */
  --ink-muted: #667085;   /* Gray 500 — muted labels */
  --ink-soft: #98A2B3;    /* Gray 400 — placeholder, disabled */
  --line: #E6E7EA;        /* Hairline */
  --line-soft: #F2F4F7;   /* Gray 100 */
  --night: #1A1C20;       /* Carbon — dark surfaces */
  --night-2: #0A0B0D;     /* Ink — deepest */

  /* Signature — Forest Green (only accent, used sparingly) */
  --accent: #0F3D2E;
  --accent-2: #1E5F4A;
  --accent-soft: #E1EBE5;
  --accent-sand: #8BA99A;
  --accent-ink: #0A2A1F;

  /* Type */
  --display: "Inter Tight", -apple-system, BlinkMacSystemFont, "SF Pro Display", Helvetica, Arial, sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", "SF Mono", ui-monospace, Consolas, monospace;

  /* Type scale */
  --fs-display: clamp(56px, 8vw, 96px);
  --fs-h1: clamp(44px, 5.6vw, 72px);
  --fs-h2: clamp(34px, 3.8vw, 52px);
  --fs-h3: clamp(26px, 2.6vw, 36px);
  --fs-h4: 24px;
  --fs-h5: 20px;
  --fs-lead: 19px;
  --fs-body-lg: 18px;
  --fs-body: 16px;
  --fs-caption: 13px;
  --fs-label: 12px;
  --fs-mono: 13px;

  /* Scale */
  --container: 1280px;
  --container-narrow: 980px;
  --section-y: clamp(96px, 12vw, 180px);

  /* Radius */
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 22px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--accent); color: var(--paper); }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  position: relative;
  z-index: 2;
}

/* ---------- TYPOGRAPHY ---------- */
.h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--fs-h1);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 32px;
  color: var(--ink);
}
.h2 em { font-style: normal; color: var(--accent); }
.h2--light { color: var(--paper); }
.h2--light em { color: var(--accent-sand); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 28px;
}
.eyebrow--dark { color: rgba(255, 255, 255, 0.55); }
.eyebrow__dot {
  display: none;
}

/* Split eyebrow — pill + inline text */
.eyebrow--split {
  padding: 5px 18px 5px 5px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  gap: 14px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-muted);
  font-weight: 500;
  font-size: 14px;
}
.eyebrow__pill {
  background: var(--accent);
  color: #fff;
  padding: 6px 13px;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--fs-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.3;
}
.eyebrow__text {
  line-height: 1.3;
}

/* Hero eyebrow — emphasis without pill */
.eyebrow--hero {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 28px;
}
.eyebrow--hero strong {
  color: var(--accent);
  font-weight: 700;
  margin: 0 2px;
}

.section-head {
  max-width: 860px;
  margin: 0 auto clamp(56px, 7vw, 96px);
  text-align: center;
}
.section-head--tight { margin-bottom: 56px; }
.section-head__lede {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 640px;
  margin: 0 auto;
}
.section-head__lede--light { color: rgba(255, 255, 255, 0.65); }

/* ---------- BUTTONS ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  overflow: hidden;
  isolation: isolate;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-2);
  transform: translateY(101%);
  transition: transform 0.4s var(--ease-out);
  z-index: -1;
}
.btn--primary:hover::before { transform: translateY(0); }
.btn--primary:hover { transform: translateY(-1px); }
.btn--ghost {
  background: var(--accent-2);
  color: #fff;
  border-color: var(--accent-2);
}
.btn--ghost:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}
.btn--sm { padding: 10px 16px; font-size: 13.5px; }
.btn--lg { padding: 19px 32px; font-size: 15.5px; }
.btn--full { width: 100%; }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav__brand-text { font-weight: 700; }
.nav__links {
  display: flex;
  gap: 36px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  margin: 0 auto;
}
.nav__links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--ink);
  transition: right 0.3s var(--ease-out);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { right: 0; }
@media (max-width: 900px) { .nav__links { display: none; } }

/* ---------- HERO ---------- */
.hero {
  padding: clamp(56px, 8vw, 110px) 0 clamp(80px, 10vw, 140px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%; left: -15%;
  width: 70vw; height: 70vw;
  max-width: 1000px; max-height: 1000px;
  background: radial-gradient(circle, rgba(15, 61, 46, 0.09) 0%, transparent 55%);
  pointer-events: none;
}
.hero__content {
  max-width: 1120px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  text-align: center;
}
.hero__lede {
  margin-left: auto !important;
  margin-right: auto !important;
}
.hero__cta-row {
  justify-content: center;
}
.hero__actions {
  justify-content: center;
}
.hero__trust {
  justify-content: center;
}

.hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 6.4vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 0 0 32px;
  color: var(--ink);
}
.hero__title em {
  font-style: normal;
  color: var(--ink);
}
.hero__lede {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 0 40px;
}
.hero__lede strong { font-weight: 600; color: var(--ink); }
.hero__caption {
  margin: clamp(48px, 6vw, 80px) auto 0;
  max-width: 760px;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.5;
  color: var(--ink-muted);
  letter-spacing: -0.01em;
}
.hero__caption em { font-style: italic; }
.hero__cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__rating {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  margin-left: 6px;
  white-space: nowrap;
}
.hero__trust {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  list-style: none;
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 5px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  line-height: 1.2;
}
.hero__trust-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* Hero device */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 40px 0;
}
.hero__visual::after {
  content: "";
  position: absolute;
  width: 88%; aspect-ratio: 1;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 65%);
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}
.device {
  position: relative;
  z-index: 1;
  transform: rotate(-3deg) translateY(0);
  transition: transform 0.8s var(--ease);
  animation: float 8s var(--ease) infinite;
}
@keyframes float {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50%      { transform: rotate(-2.2deg) translateY(-8px); }
}
.device:hover { transform: rotate(0deg) translateY(-6px); animation-play-state: paused; }
.device__bezel {
  width: 340px;
  max-width: 82vw;
  aspect-ratio: 9 / 19;
  background: linear-gradient(170deg, #201B16 0%, var(--night) 100%);
  border-radius: 46px;
  padding: 11px;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.08) inset,
    0 -2px 0 rgba(0,0,0,0.6) inset,
    0 50px 100px -30px rgba(26, 22, 20, 0.45),
    0 24px 48px -12px rgba(26, 22, 20, 0.3);
}
.device__screen {
  width: 100%; height: 100%;
  background: var(--paper);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
}
.device__screen::before {
  content: "";
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 88px; height: 26px;
  background: var(--night);
  border-radius: 14px;
  z-index: 3;
}
.device__badge {
  position: absolute;
  bottom: -8px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
  padding: 9px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.app {
  padding: 50px 14px 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.app__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
  padding: 0 4px;
}
.app__dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.app__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.app__avatar {
  width: 28px; height: 28px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--display);
  letter-spacing: -0.02em;
}
.app__card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 13px 14px;
  display: flex; flex-direction: column; gap: 7px;
}
.app__card--accent {
  background: linear-gradient(160deg, #fff 0%, var(--accent-soft) 160%);
  border-color: rgba(15, 61, 46, 0.3);
}
.app__card-head {
  display: flex; justify-content: space-between; align-items: center;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--paper-2);
  color: var(--ink-muted);
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--mono);
}
.tag--live {
  background: var(--ink);
  color: var(--paper);
}
.app__time {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-muted);
}
.app__card-title {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.app__meta {
  display: flex; gap: 6px;
  font-size: 11px;
  color: var(--ink-muted);
}
.app__diet {
  display: flex; gap: 4px; flex-wrap: wrap; margin-top: 2px;
}
.pill {
  background: rgba(15, 61, 46, 0.14);
  color: var(--accent-ink);
  padding: 3px 7px;
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 500;
  white-space: nowrap;
  font-family: var(--mono);
  letter-spacing: 0.02em;
}
.app__foot {
  margin-top: auto;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 7px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.app__foot-item {
  text-align: center;
  font-size: 10px;
  padding: 8px 4px;
  border-radius: 8px;
  color: var(--ink-muted);
  font-weight: 500;
}
.app__foot-item--active {
  background: var(--ink);
  color: var(--paper);
}

/* ---------- HERO BROWSER MOCKUP ---------- */
.browser {
  margin: 0 -10.5%;
  width: 121%;
  background: #fff;
  border: 1px solid #2F3440;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 10px #2F3440,
    0 60px 120px -40px rgba(16, 24, 40, 0.35),
    0 24px 48px -16px rgba(16, 24, 40, 0.2);
  position: relative;
  z-index: 2;
}
.browser__bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 18px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.browser__dots {
  display: inline-flex;
  gap: 7px;
}
.browser__dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.browser__dots span:nth-child(1) { background: #FF5F57; }
.browser__dots span:nth-child(2) { background: #FEBC2E; }
.browser__dots span:nth-child(3) { background: #28C840; }
.browser__url {
  flex: 1;
  max-width: 340px;
  margin: 0 auto;
  padding: 6px 14px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.01em;
  color: var(--ink-muted);
  text-align: center;
}
.browser__screen {
  background: #fff;
  display: block;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 var(--paper-3);
  aspect-ratio: 19.36 / 10.08;
}
.browser__screen--iframe {
  aspect-ratio: 16 / 10;
}
.browser__screen::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(16, 24, 40, 0.04);
  pointer-events: none;
  z-index: 2;
}
.browser__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: #fff;
}
.browser__placeholder {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 420px;
  aspect-ratio: 16 / 10;
  padding: 32px;
  text-align: center;
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 56px 56px,
    var(--paper);
}
.browser__placeholder-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  line-height: 1.5;
}
.browser__placeholder-hint {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 8px;
}
.browser__placeholder code {
  font-family: var(--mono);
  font-size: 13px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 3px 8px;
  border-radius: 6px;
  color: var(--ink);
  margin: 0 2px;
}

/* ---------- METRIC STRIP ---------- */
.metrics {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, transparent 0%, rgba(225, 235, 229, 0.4) 100%);
}
.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
@media (max-width: 760px) {
  .metrics__grid { grid-template-columns: repeat(2, 1fr); }
}
.metric {
  padding: clamp(32px, 4vw, 56px) clamp(16px, 2vw, 32px);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.metric:last-child { border-right: 0; }
@media (max-width: 760px) {
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(1), .metric:nth-child(2) { border-bottom: 1px solid var(--line); }
}
.metric__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 5.6vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.045em;
  color: var(--ink);
}
.metric__num em { font-style: normal; color: var(--accent); font-weight: 700; }
.metric__label {
  font-size: var(--fs-caption);
  color: var(--ink-muted);
  line-height: 1.5;
  font-weight: 500;
}

/* ---------- METAPHOR (Which way would you choose?) ---------- */
.metaphor {
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}
.metaphor__row-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(520px, 1.4fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 980px) {
  .metaphor__row-layout {
    grid-template-columns: 1fr;
    gap: clamp(28px, 4vw, 44px);
  }
}
.metaphor__head {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.4vw, 20px);
  text-align: left;
}
.metaphor__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--ink);
}
.metaphor__title em {
  font-style: normal;
  color: var(--accent);
}
.metaphor__text {
  font-size: clamp(14.5px, 1vw, 16px);
  line-height: 1.55;
  color: var(--ink-muted);
  margin: 0;
  max-width: 440px;
}
.metaphor__text strong {
  color: var(--ink);
  font-weight: 600;
}

.metaphor__visual {
  display: grid;
  grid-template-columns: 1fr auto 1.15fr;
  gap: clamp(14px, 1.8vw, 24px);
  align-items: stretch;
  width: 100%;
  min-width: 0;
}
@media (max-width: 560px) {
  .metaphor__visual {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .metaphor__arrow { display: none; }
  .postit {
    font-size: 10.5px;
    max-width: 60%;
    padding: 7px 9px;
  }
}

.metaphor__side {
  position: relative;
  width: 100%;
  height: clamp(170px, 17vw, 210px);
}
.metaphor__side--chaos {
  background: linear-gradient(180deg, #FBF6E4 0%, #F6EFD6 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
}
.metaphor__side--clean {
  background: transparent;
}
.metaphor__side-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-block;
}
.metaphor__side--chaos .metaphor__side-label {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 3;
  font-size: 9px;
  padding: 4px 8px;
}
.metaphor__side-label--muted {
  background: rgba(255,255,255,0.94);
  color: var(--ink-muted);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.metaphor__side-label--accent {
  background: var(--accent);
  color: #fff;
}

/* Post-it notes (chaos side) */
.postit {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: rotate(var(--r));
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 500;
  max-width: 42%;
  line-height: 1.3;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.06),
    0 6px 14px -6px rgba(0,0,0,0.14);
  border-radius: 2px;
  color: var(--ink);
}
.postit--yellow { background: #FEF3C7; }
.postit--pink { background: #FBCFE8; }
.postit--blue { background: #BFDBFE; }
.postit--green { background: #BBF7D0; }

/* Arrow between sides */
.metaphor__arrow {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 1.8vw, 28px);
  color: var(--ink-muted);
  align-self: center;
  justify-self: center;
  line-height: 1;
  opacity: 0.5;
}

/* Clean side — flat card (no phone frame) */
.metaphor__card {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 12px 28px -16px rgba(16,24,40,0.14),
    0 4px 10px -4px rgba(16,24,40,0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.metaphor__card-header {
  padding: 14px 16px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}
.metaphor__card-header .metaphor__side-label {
  font-size: 9px;
  padding: 4px 9px;
  letter-spacing: 0.12em;
}
.metaphor__card-title {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}
.metaphor__card-body {
  padding: 8px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  overflow: hidden;
}
.metaphor__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  background: var(--paper-2);
  border-radius: 8px;
  font-size: 11.5px;
}
.metaphor__row-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ink-soft);
  flex-shrink: 0;
}
.metaphor__row-dot--accent { background: var(--accent); }
.metaphor__row-dot--live { background: #EF4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.2); }
.metaphor__row-text {
  flex: 1;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.metaphor__row-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #fff;
  color: var(--ink-muted);
  padding: 3px 7px;
  border-radius: 999px;
  border: 1px solid var(--paper-3);
  flex-shrink: 0;
  font-weight: 600;
}
.metaphor__row-tag--accent {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: transparent;
}

/* ---------- VS COMPARISON ---------- */
.vs {
  padding: clamp(72px, 9vw, 120px) 0 clamp(72px, 9vw, 120px);
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}
.vs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.vs__card {
  padding: 14px;
  border-radius: 24px;
  position: relative;
}
.vs__card--old {
  background: var(--night);
}
.vs__card--new {
  background: linear-gradient(160deg, #F3F7F4 0%, var(--accent-soft) 120%);
  border: 1px solid var(--accent-soft);
}
.vs__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 22px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  z-index: 2;
  white-space: nowrap;
}
.vs__badge--old {
  background: #EF4444;
  color: #fff;
}
.vs__badge--new {
  background: #10B981;
  color: #fff;
}
.vs__inner {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 48px 28px 32px;
}
.vs__card--new .vs__inner {
  background: rgba(255, 255, 255, 0.5);
}
.vs__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.vs__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.vs__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: -0.025em;
  margin: 0 0 6px;
  line-height: 1.15;
}
.vs__card--old .vs__title { color: #fff; }
.vs__card--new .vs__title { color: var(--ink); }
.vs__subtitle {
  font-size: 14px;
  margin: 0;
  line-height: 1.45;
}
.vs__card--old .vs__subtitle { color: rgba(255,255,255,0.65); }
.vs__card--new .vs__subtitle { color: var(--ink-muted); }
.vs__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 28px;
}
.vs__list li {
  background: #fff;
  padding: 13px 18px 13px 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.35;
}
.vs__check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.vs__check--old {
  background: #EF4444;
  color: #fff;
}
.vs__check--new {
  background: #10B981;
  color: #fff;
}
.vs__note {
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}
.vs__card--old .vs__note { color: rgba(255,255,255,0.72); }
.vs__card--new .vs__note { color: var(--ink-2); }

.vs__footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1180px;
  margin: clamp(32px, 4vw, 52px) auto 0;
  text-align: center;
}
.vs__footer-label {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 10px;
}
.vs__footer-tagline {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--ink);
}

@media (max-width: 820px) {
  .vs__grid,
  .vs__footer {
    grid-template-columns: 1fr;
  }
}

/* ---------- QUALIFY ---------- */
.qualify {
  padding: clamp(72px, 9vw, 120px) 0 clamp(80px, 10vw, 140px);
  border-top: 1px solid var(--line);
}
.qualify__head {
  max-width: 860px;
  margin: 0 auto clamp(40px, 5vw, 60px);
  text-align: left;
}
.qualify__head .h2 {
  margin: 0;
}
.eyebrow--rule::before { content: none; }
.qualify__list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.qualify__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 28px;
  background: #fff;
  border: 1px solid var(--paper-3);
  border-radius: 999px;
  font-size: var(--fs-body-lg);
  line-height: 1.45;
  color: var(--ink-2);
}
.qualify__check {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}
.qualify__foot {
  max-width: 860px;
  margin: clamp(36px, 4.5vw, 56px) auto 0;
  font-size: var(--fs-body-lg);
  line-height: 1.65;
  color: var(--ink-muted);
}
.qualify__foot strong {
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 640px) {
  .qualify__item {
    border-radius: var(--r-md);
    padding: 16px 20px;
    font-size: 15px;
  }
  .qualify__check {
    width: 28px; height: 28px;
    font-size: 13px;
  }
}

/* ---------- STORY ---------- */
.story {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}
.story__head {
  max-width: 1120px;
  margin: 0 auto 48px;
  text-align: center;
  position: relative;
}
.story__head .h2 { margin: 0 auto 28px; max-width: 900px; }
.story__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.02);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.story__brand:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.06);
}
.story__brand-mark {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.story__brand-mark svg { width: 100%; height: 100%; }
.story__brand-text {
  display: inline-flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.1;
}
.story__brand-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.story__brand-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 3px;
}
.story__grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(32px, 5vw, 72px);
  row-gap: 20px;
}
.story__grid p {
  font-size: var(--fs-body-lg);
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
  text-align: left;
}
@media (max-width: 820px) {
  .story__grid { grid-template-columns: 1fr; }
}

/* Redesigned story */
.story__wrap {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.story__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-bottom: clamp(36px, 4vw, 52px);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}
@media (max-width: 640px) {
  .story__meta { flex-direction: column; align-items: flex-start; gap: 18px; padding: 18px 20px; }
}
.story__founder {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.story__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #1d5a3f 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  box-shadow: 0 4px 10px -4px rgba(15, 61, 46, 0.45);
}
.story__founder-meta { min-width: 0; }
.story__founder-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}
.story__founder-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin-top: 3px;
}

.story__stats {
  display: flex;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.story__stats li {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.15;
}
.story__stat-value {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.025em;
  color: var(--accent);
}
.story__stat-label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 4px;
}
@media (max-width: 640px) {
  .story__stats { align-self: stretch; justify-content: space-between; gap: 12px; }
  .story__stats li { align-items: flex-start; }
}

.story__body {
  position: relative;
  padding-left: clamp(0px, 2vw, 20px);
}
.story__body::before {
  content: "";
  position: absolute;
  top: 4px; bottom: 4px; left: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent) 0%, rgba(15, 61, 46, 0) 100%);
  border-radius: 2px;
  opacity: 0.35;
}
@media (max-width: 640px) {
  .story__body { padding-left: 16px; }
}
.story__body p {
  font-size: var(--fs-body-lg);
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 22px;
  text-align: left;
}
.story__lead {
  font-size: clamp(19px, 1.6vw, 22px) !important;
  line-height: 1.55 !important;
  color: var(--ink) !important;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.story__quote {
  margin: 28px -8px 28px;
  padding: 22px 26px 22px 28px;
  background: rgba(15, 61, 46, 0.04);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--ink);
  position: relative;
}
.story__quote em {
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
}
.story__quote::before {
  content: "“";
  position: absolute;
  top: -4px;
  left: 14px;
  font-family: var(--display);
  font-size: 48px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.18;
  pointer-events: none;
}

.story__sign {
  margin-top: clamp(36px, 4vw, 52px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: right;
}
.story__sign-scribble {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.015em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.story__sign-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.pullquote {
  margin-top: 56px;
  padding: clamp(32px, 4vw, 48px);
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.pullquote::before {
  content: "";
  position: absolute;
  right: -100px; bottom: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(15, 61, 46, 0.3) 0%, transparent 60%);
  pointer-events: none;
}
.pullquote__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--fs-h2);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  color: var(--paper);
  position: relative;
}
.pullquote p {
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 14px;
  max-width: 640px;
  position: relative;
}
.pullquote__kicker {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px !important;
  letter-spacing: -0.02em;
  color: var(--accent-sand) !important;
  padding-top: 10px;
  margin-top: 8px !important;
  max-width: 720px !important;
}

/* ---------- SCENARIOS ---------- */
.scenarios {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}
.scenario {
  max-width: 1080px;
  margin: 0 auto clamp(72px, 8vw, 104px);
  position: relative;
}
.scenario:last-child { margin-bottom: 0; }
.scenario__index {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 24px;
}
.scenario__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(56px, 8.5vw, 112px);
  letter-spacing: -0.06em;
  color: var(--accent);
  line-height: 0.88;
}
.scenario__rule {
  flex: 1;
  height: 1px;
  background: var(--line);
  transform: translateY(-14px);
}
.scenario__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 36px;
  color: var(--ink);
  max-width: 880px;
}
.scenario__visual {
  margin: 0;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--paper-3);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 40px 80px -40px rgba(16, 24, 40, 0.18),
    0 16px 32px -16px rgba(16, 24, 40, 0.1);
  position: relative;
}
.scenario__visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--r-md) - 8px);
  background: var(--paper-2);
}
.scenario__visual-ph {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--r-md) - 8px);
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 48px 48px,
    var(--paper);
  color: var(--ink-muted);
  font-size: 13px;
}
.scenario__visual-ph code {
  font-family: var(--mono);
  font-size: 13px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--ink);
}
.scenario__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 780px) {
  .scenario__columns { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .scenario__columns { grid-template-columns: 1fr; }
}
.scenario__col {
  padding: 32px;
  border-radius: var(--r-md);
  font-size: 15.5px;
  line-height: 1.62;
  position: relative;
}
.scenario__col--before {
  background: var(--paper-2);
  color: var(--ink-muted);
  border: 1px solid var(--paper-3);
}
.scenario__col--before em { color: var(--ink-2); font-style: italic; font-weight: 500; }
.scenario__col--before strong { color: var(--ink-2); font-weight: 600; }
.scenario__col--after {
  background: linear-gradient(180deg, #fff 0%, var(--accent-soft) 180%);
  border: 1px solid var(--accent);
  color: var(--ink);
  position: relative;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 40px 80px -30px rgba(15, 61, 46, 0.28),
    0 16px 32px -16px rgba(15, 61, 46, 0.18);
}

/* Pill badges — X for plain, arrow for CateringOS */
.scenario__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1;
}
.scenario__tag--x {
  background: var(--paper-3);
  color: var(--ink-2);
}
.scenario__tag--arrow {
  background: var(--accent);
  color: #fff;
}
.scenario__tag-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  background: #fff;
  color: var(--ink-2);
}
.scenario__tag--arrow .scenario__tag-icon {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* Internal note — loss on before, gain on after */
.scenario__note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--paper-3);
  font-style: italic;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-muted);
}
.scenario__note--accent {
  border-top: 1px solid rgba(15, 61, 46, 0.2);
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}
.scenario__col--after em { font-style: normal; color: var(--ink); font-weight: 500; }
.scenario__col--after strong { font-weight: 600; color: var(--ink); }
.scenario__col--after p + p { margin-top: 14px; }
.scenario__col p { margin: 0; }
.scenario__label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.scenario__label::before {
  content: "";
  width: 24px; height: 1px;
  background: currentColor;
}
.scenario__label--accent { color: var(--accent); }
.scenario__foot {
  margin-top: 20px;
  padding: 16px 0 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink-muted);
  border-top: 1px solid var(--line);
}
.scenario__foot strong {
  font-weight: 700;
  color: var(--ink);
}

/* ---------- PROCESS ---------- */
.process {
  padding: var(--section-y) 0;
  background: var(--night);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(15, 61, 46, 0.28) 0%, transparent 60%);
  pointer-events: none;
}
.process::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 100%;
  pointer-events: none;
  opacity: 0.5;
}
.process__stages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}
@media (max-width: 980px) { .process__stages { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process__stages { grid-template-columns: 1fr; } }
.stage {
  padding: 36px 28px 36px;
  background: var(--night);
  position: relative;
  transition: background 0.4s var(--ease);
}
.stage:hover { background: #1D1813; }
.stage__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 56px;
  line-height: 0.95;
  color: var(--accent);
  letter-spacing: -0.05em;
  margin-bottom: 28px;
}
.stage__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.stage__emoji {
  font-size: 18px;
  line-height: 1;
}
.stage p {
  font-size: 14.5px;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 22px;
}
.stage__meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent-sand);
  letter-spacing: 0.04em;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  line-height: 1.5;
}

.process__outcome {
  margin-top: clamp(48px, 6vw, 80px);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 36px 40px;
  background: linear-gradient(135deg, rgba(15, 61, 46, 0.14) 0%, transparent 100%);
  border: 1px solid rgba(15, 61, 46, 0.35);
  border-radius: var(--r-md);
  position: relative;
}
.process__outcome-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-sand);
  margin-bottom: 14px;
}
.process__outcome p {
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--fs-h3);
  line-height: 1.2;
  color: var(--paper);
  margin: 0;
  letter-spacing: -0.03em;
}
.process__outcome em { font-style: normal; color: var(--accent-sand); font-weight: 700; }

/* ---------- SHOWCASE (näkymät) ---------- */
.showcase {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}
.showcase > .container { max-width: 1280px; }

.showcase__list {
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 10vw, 140px);
  margin-top: clamp(48px, 6vw, 88px);
}

.showcase__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.showcase__row:nth-child(even) {
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
}
.showcase__row:nth-child(even) .showcase__content { order: 2; }
.showcase__row:nth-child(even) .showcase__visual { order: 1; }

@media (max-width: 860px) {
  .showcase__row,
  .showcase__row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .showcase__row:nth-child(even) .showcase__content { order: 1; }
  .showcase__row:nth-child(even) .showcase__visual { order: 2; }
}

.showcase__content { min-width: 0; }

.showcase__num {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent);
  padding: 5px 12px;
  border: 1px solid rgba(15, 61, 46, 0.22);
  border-radius: 999px;
  margin-bottom: 20px;
  background: rgba(15, 61, 46, 0.04);
}

.showcase__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 14px;
}
.showcase__eyebrow-emoji {
  font-size: 15px;
  filter: saturate(0.9);
}

.showcase__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
  color: var(--ink);
  max-width: 18ch;
}
.showcase__title em {
  font-style: normal;
  color: var(--accent);
}

.showcase__desc {
  font-size: var(--fs-body-lg);
  line-height: 1.55;
  color: var(--ink-muted);
  margin: 0 0 26px;
  max-width: 48ch;
}

.showcase__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.showcase__chips li {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.2;
  font-weight: 500;
}
.showcase__chips li::before {
  content: "✓";
  margin-right: 6px;
  color: var(--accent);
  font-weight: 700;
}

.showcase__visual { min-width: 0; margin: 0; }

.showcase__browser {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow:
    0 1px 2px rgba(16, 24, 40, 0.04),
    0 30px 60px -28px rgba(16, 24, 40, 0.25);
}
.showcase__browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: #f6f7f9;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.showcase__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.showcase__dot--r { background: #ff5f57; }
.showcase__dot--y { background: #ffbd2e; }
.showcase__dot--g { background: #28ca42; }
.showcase__browser-url {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 11.5px;
  color: #6b7280;
  background: #fff;
  padding: 4px 16px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  min-width: 220px;
  max-width: 55%;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 540px) {
  .showcase__browser-url { display: none; }
}
.showcase__browser-body {
  position: relative;
  background: #fff;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.showcase__browser-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.showcase__ph {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    135deg,
    #f4f5f7 0 12px,
    #f8f9fb 12px 24px
  );
}
.showcase__ph code {
  font-family: var(--mono);
  font-size: 12px;
  background: #fff;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.06);
}

/* ---------- FEATURES ---------- */
.features {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}
.features > .container { max-width: 1440px; }
.features__tabs {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 6px;
  max-width: 1200px;
  margin: clamp(32px, 4vw, 56px) auto 0;
}
@media (max-width: 1100px) {
  .features__tabs { flex-wrap: wrap; gap: 8px; }
}
.features__tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px 7px 7px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  line-height: 1.2;
  white-space: nowrap;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.features__tab:hover {
  border-color: var(--accent-sand);
  color: var(--ink);
}
.features__tab.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.features__tab-emoji {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  transition: background 0.2s var(--ease);
}
.features__tab.is-active .features__tab-emoji {
  background: rgba(255, 255, 255, 0.15);
}

.features__panels {
  position: relative;
  margin-top: clamp(28px, 3.5vw, 48px);
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(16,24,40,0.04), 0 24px 48px -32px rgba(16,24,40,0.08);
}
.feature[hidden] { display: none; }
.feature--hero {
  background: #fff;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.68fr);
  gap: clamp(48px, 6vw, 96px);
  padding: clamp(48px, 5vw, 80px);
  align-items: center;
}
.feature.is-active {
  animation: featureFade 0.35s var(--ease-out) both;
}
@keyframes featureFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.feature__body {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  order: 1;
}
.feature--hero .feature__visual { order: 2; }
.feature__emoji { display: none; }

/* Feature visual — single desktop frame (mobile frame hidden) */
.feature__visual {
  margin: 0;
  padding: 0;
  background: transparent;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
}
.feature__shot--mobile { display: none; }
.feature__shot {
  background: #1A1C20;
  padding: 10px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 40px -18px rgba(16,24,40,0.3), 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.feature__shot--desktop { aspect-ratio: 16 / 10; }
.feature--wide .feature__shot--desktop,
.feature--hero .feature__shot--desktop { aspect-ratio: 16 / 10; }
/* Mobile frame has no fixed aspect — it stretches to match desktop's height */

.feature__shot img,
.feature__shot-ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  display: block;
  background: #fff;
}
.feature__shot-ph {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: var(--paper);
  text-align: center;
}
.feature__shot-ph code {
  font-family: var(--mono);
  font-size: 9.5px;
  line-height: 1.3;
  background: #fff;
  border: 1px solid var(--line);
  padding: 3px 6px;
  border-radius: 4px;
  color: var(--ink);
  word-break: break-all;
}

@media (max-width: 900px) {
  .feature--hero {
    grid-template-columns: 1fr;
    padding: clamp(24px, 5vw, 40px);
    gap: 32px;
  }
  .feature--hero .feature__body { order: 1; }
  .feature--hero .feature__visual { order: 2; }
}
@media (max-width: 520px) {
  .feature__shot { padding: 6px; border-radius: 8px; }
}
.feature__num { display: none; }
.feature__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 16px;
  color: var(--ink);
}
.feature--hero .feature__title { max-width: none; }
.feature p {
  font-size: var(--fs-body-lg);
  line-height: 1.55;
  color: var(--ink-muted);
  margin: 0;
  max-width: 520px;
}

.feature__bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
.feature__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-2);
  font-weight: 500;
}
.feature__bullets li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-soft);
  margin-top: 1px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'><path d='M5.5 10.2l3 3 6-6' stroke='%230F3D2E' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 560px) {
  .feature__bullets { grid-template-columns: 1fr; }
}

/* Features CTA — full-width dark demo block */
.features-cta {
  background: var(--night-2);
  color: #fff;
  padding: clamp(48px, 6vw, 96px) 0;
}
.features-cta__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.features-cta__text { flex: 1 1 420px; min-width: 0; }
.features-cta__text h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
  color: #fff;
}
.features-cta__text p {
  margin: 0;
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  line-height: 1.55;
}
.features-cta__btn {
  background: #fff;
  color: var(--ink);
  flex-shrink: 0;
}
.features-cta__btn::before { background: var(--accent-soft); }
.features-cta__btn:hover { color: var(--ink); }
.feature--hero p { font-size: var(--fs-body-lg); max-width: 680px; }

/* ---------- SHOWCASE (features list) ---------- */
.showcase {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}
.showcase > .container { max-width: 1440px; }

.showcase__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: clamp(36px, 4.5vw, 56px) auto clamp(32px, 4vw, 48px);
  max-width: 1100px;
  padding: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.showcase__tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 0;
  background: transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}
.showcase__tab:hover { background: var(--paper-2); color: var(--ink); }
.showcase__tab.is-active {
  background: var(--ink);
  color: var(--paper);
}
.showcase__tab-emoji { font-size: 16px; line-height: 1; }
@media (max-width: 720px) {
  .showcase__tabs {
    border-radius: 20px;
    padding: 10px;
  }
  .showcase__tab { padding: 9px 14px; font-size: 13px; }
}

.showcase__panels {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
}
.showcase__panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 56px);
  background: var(--paper);
  border-radius: 28px;
  padding: clamp(32px, 4vw, 56px);
  box-shadow: 0 1px 2px rgba(16,24,40,0.04), 0 30px 60px -40px rgba(16,24,40,0.18);
}
.showcase__panel[hidden] { display: none; }
.showcase__panel.is-active {
  animation: showcaseFade 0.35s var(--ease-out) both;
}
@keyframes showcaseFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.showcase__panel .showcase__content {
  order: 1;
  max-width: none;
  margin: 0;
  text-align: center;
}
.showcase__panel .showcase__title { white-space: nowrap; max-width: none; margin-left: auto; margin-right: auto; }
.showcase__panel .showcase__desc { margin-left: auto; margin-right: auto; }
.showcase__panel .showcase__chips { justify-content: center; }
.showcase__panel .showcase__visual { order: 2; }
@media (max-width: 900px) {
  .showcase__panel .showcase__title { white-space: normal; }
}
.showcase__num { display: none; }
.showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.showcase__eyebrow-emoji {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.showcase__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 16px;
  color: var(--ink);
}
.showcase__title em {
  font-style: normal;
  color: var(--accent);
}
.showcase__desc {
  font-size: var(--fs-body-lg);
  line-height: 1.55;
  color: var(--ink-muted);
  margin: 0 0 28px;
  max-width: 680px;
}
.showcase__chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.showcase__chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
  line-height: 1.2;
}
.showcase__chips li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #10B981;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
.showcase__visual { margin: 0 10px; }
.showcase__browser {
  background: #fff;
  border: 1px solid #2F3440;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 10px #2F3440,
    0 60px 120px -40px rgba(16, 24, 40, 0.35),
    0 24px 48px -16px rgba(16, 24, 40, 0.2);
}
.showcase__browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.showcase__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.showcase__dot--r { background: #ff5f56; }
.showcase__dot--y { background: #ffbd2e; }
.showcase__dot--g { background: #27c93f; }
.showcase__browser-url {
  margin-left: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-muted);
  padding: 3px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.showcase__browser-body {
  aspect-ratio: 16 / 10;
  background: #fff;
  overflow: hidden;
  position: relative;
}
.showcase__browser-body img,
.showcase__ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.showcase__ph {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: var(--paper);
  text-align: center;
}
.showcase__ph code {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.3;
  background: #fff;
  border: 1px solid var(--line);
  padding: 4px 8px;
  border-radius: 6px;
  color: var(--ink);
}

/* ---------- AI ---------- */
.ai {
  padding: var(--section-y) 0;
  background: var(--night-2);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.ai::before {
  content: "";
  position: absolute;
  bottom: -300px; right: -200px;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(15, 61, 46, 0.28) 0%, transparent 55%);
  pointer-events: none;
}
.ai__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
}
@media (max-width: 880px) {
  .ai__grid { grid-template-columns: 1fr; }
}
.ai__block {
  padding: 36px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  transition: background 0.3s var(--ease);
}
.ai__block:hover { background: rgba(255,255,255,0.04); }
.ai__block--hero {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(15, 61, 46, 0.14) 0%, rgba(255,255,255,0.02) 100%);
  border-color: rgba(15, 61, 46, 0.4);
  padding: 48px;
}
@media (max-width: 880px) {
  .ai__block--hero { grid-column: span 1; padding: 32px; }
}
.ai__label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-sand);
  margin-bottom: 22px;
}
.ai__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--fs-h3);
  line-height: 1.15;
  letter-spacing: -0.035em;
  margin: 0 0 16px;
  color: var(--paper);
}
.ai__block--hero .ai__title { font-size: var(--fs-h2); }
.ai__block p {
  font-size: var(--fs-body);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}
.ai__block em {
  font-style: normal;
  color: var(--accent-sand);
  font-weight: 500;
}

.ai__demo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 780px) {
  .ai__demo { grid-template-columns: 1fr; }
  .ai__demo-arrow { transform: rotate(90deg); justify-self: center; }
}
.ai__demo-in, .ai__demo-out {
  padding: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  font-size: 13.5px;
  line-height: 1.55;
}
.ai__demo-out {
  background: rgba(15, 61, 46, 0.14);
  border-color: rgba(15, 61, 46, 0.4);
}
.ai__demo-head {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ai__demo-head--accent { color: var(--accent-sand); border-color: rgba(15, 61, 46, 0.35); }
.ai__demo-body {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.5;
}
.ai__demo-fields { display: flex; flex-direction: column; gap: 10px; }
.ai__demo-fields li {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px;
  padding-bottom: 6px;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}
.ai__demo-fields li:last-child { border-bottom: 0; padding-bottom: 0; }
.ai__demo-fields span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.ai__demo-fields strong {
  font-weight: 600;
  color: var(--paper);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: -0.015em;
}
.ai__demo-arrow {
  font-size: 28px;
  color: var(--accent);
  font-family: var(--display);
  font-weight: 300;
  line-height: 1;
}

.ai__title-emoji {
  display: inline-block;
  font-size: 0.72em;
  margin-left: 0.3em;
  opacity: 0.85;
  vertical-align: baseline;
  filter: saturate(0.9);
}

/* ---------- WHATSAPP MOCK ---------- */
.wa-demo {
  margin-top: 24px;
  padding: 14px;
  background: #0b141a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  box-shadow: 0 18px 40px -20px rgba(0,0,0,0.6);
  background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 14px 14px;
}
.wa-demo__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 4px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 12px;
}
.wa-demo__logo {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111b21;
  border-radius: 50%;
  flex-shrink: 0;
}
.wa-demo__logo svg { width: 22px; height: 22px; display: block; }
.wa-demo__meta { line-height: 1.2; }
.wa-demo__name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: #e9edef;
}
.wa-demo__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 11px;
  color: #8696a0;
  margin-top: 2px;
}
.wa-demo__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 6px rgba(37, 211, 102, 0.6);
}
.wa-demo__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wa-demo__bubble {
  max-width: 82%;
  padding: 8px 10px 6px;
  border-radius: 10px;
  font-family: var(--sans);
}
.wa-demo__bubble--out {
  align-self: flex-end;
  background: #005c4b;
  color: #e9edef;
  border-top-right-radius: 2px;
}
.wa-demo__bubble--in {
  align-self: flex-start;
  background: #1f2c33;
  color: #e9edef;
  border-top-left-radius: 2px;
}
.wa-demo__voice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 4px 2px;
}
.wa-demo__play {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: #005c4b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
}
.wa-demo__wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 20px;
  flex: 1;
}
.wa-demo__wave span {
  flex: 1;
  background: rgba(255,255,255,0.55);
  border-radius: 2px;
  min-width: 2px;
}
.wa-demo__wave span:nth-child(1)  { height: 30%; }
.wa-demo__wave span:nth-child(2)  { height: 55%; }
.wa-demo__wave span:nth-child(3)  { height: 80%; }
.wa-demo__wave span:nth-child(4)  { height: 45%; }
.wa-demo__wave span:nth-child(5)  { height: 70%; }
.wa-demo__wave span:nth-child(6)  { height: 95%; }
.wa-demo__wave span:nth-child(7)  { height: 60%; }
.wa-demo__wave span:nth-child(8)  { height: 35%; background: rgba(255,255,255,0.3); }
.wa-demo__wave span:nth-child(9)  { height: 75%; background: rgba(255,255,255,0.3); }
.wa-demo__wave span:nth-child(10) { height: 50%; background: rgba(255,255,255,0.3); }
.wa-demo__wave span:nth-child(11) { height: 85%; background: rgba(255,255,255,0.3); }
.wa-demo__wave span:nth-child(12) { height: 40%; background: rgba(255,255,255,0.3); }
.wa-demo__wave span:nth-child(13) { height: 65%; background: rgba(255,255,255,0.3); }
.wa-demo__wave span:nth-child(14) { height: 30%; background: rgba(255,255,255,0.3); }
.wa-demo__time {
  font-size: 10.5px;
  color: rgba(255,255,255,0.65);
  font-family: var(--mono);
  flex-shrink: 0;
}
.wa-demo__text {
  font-size: 13px;
  color: #e9edef;
  line-height: 1.4;
}
.wa-demo__reply-line {
  font-size: 13px;
  font-weight: 500;
  color: #e9edef;
}
.wa-demo__reply-sub {
  font-size: 12px;
  color: #8696a0;
  margin-top: 2px;
}
.wa-demo__reply-confirm {
  font-size: 12.5px;
  color: #e9edef;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.08);
  line-height: 1.35;
}
.wa-demo__list {
  list-style: none;
  padding: 0;
  margin: 6px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wa-demo__list li {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: #e9edef;
  line-height: 1.4;
}
.wa-demo__list li span {
  color: #8696a0;
  font-weight: 600;
  min-width: 18px;
  flex-shrink: 0;
}
.wa-demo__time-stamp {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(233, 237, 239, 0.55);
  text-align: right;
  margin-top: 2px;
}
.wa-demo__ticks {
  color: #53bdeb;
  margin-left: 2px;
}

/* ---------- ONBOARD ---------- */
.onboard {
  padding: var(--section-y) 0;
  background: var(--night-2);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.onboard::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(15, 61, 46, 0.22) 0%, transparent 60%);
  pointer-events: none;
}
.onboard > .container { position: relative; z-index: 1; }
.onboard__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
@media (max-width: 980px) { .onboard__steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .onboard__steps { grid-template-columns: 1fr; } }
.onboard__step {
  padding: 28px 26px 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
  overflow: visible;
}
.onboard__step::before { display: none; }
.onboard__step:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(139, 169, 154, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.5);
}
.onboard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.onboard__num {
  width: 36px; height: 36px;
  background: var(--accent);
  color: var(--paper);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  margin: 0;
}
.onboard__step-emoji {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.85em;
  vertical-align: baseline;
}
.onboard__step h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--fs-h4);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  color: var(--paper);
}
.onboard__step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}
.onboard__step strong { font-weight: 600; color: var(--paper); }

.onboard__vibe {
  margin-top: clamp(36px, 4vw, 56px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.onboard-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px 9px 7px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  line-height: 1.2;
}
.onboard-chip__dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* ---------- PRICING ---------- */
.pricing {
  padding: var(--section-y) 0;
  background: #fff;
  border-top: 1px solid var(--line);
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: clamp(48px, 6vw, 72px);
  align-items: stretch;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) { .pricing__grid { grid-template-columns: 1fr; max-width: 480px; } }
.plan {
  padding: 36px 28px 28px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all 0.3s var(--ease);
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(26,22,20,0.15);
  border-color: var(--ink);
}
.plan--featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: scale(1.03);
  box-shadow: 0 30px 60px -20px rgba(26,22,20,0.25);
}
.plan--featured:hover { transform: scale(1.03) translateY(-4px); }
.plan__badge {
  position: absolute;
  top: -11px; left: 28px;
  background: var(--accent);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.plan__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-bottom: 4px;
}
.plan__amount {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 4.2vw, 52px);
  letter-spacing: -0.045em;
  line-height: 1;
}
.plan__per {
  font-size: 14px;
  opacity: 0.6;
}
.plan__seats {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
  padding: 6px 12px;
  background: rgba(0,0,0,0.05);
  border-radius: 999px;
  align-self: flex-start;
}
.plan--featured .plan__seats { background: rgba(255,255,255,0.1); }
.plan__desc {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.75;
  margin: 4px 0 auto;
  flex: 1;
}
.plan--featured .btn--ghost { color: var(--paper); border-color: rgba(255,255,255,0.2); }
.plan--featured .btn--ghost:hover { border-color: var(--paper); }

/* ---------- RESULTS STRIP ---------- */
.results {
  padding: clamp(72px, 9vw, 120px) 0;
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}
.results--dark {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--paper);
}
.results--dark .result-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.results--dark .result-card:hover {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}
.results--dark .result-card__icon {
  background: rgba(139,169,154,0.16);
}
.results--dark .result-card__stat { color: var(--accent-sand); }
.results--dark .result-card__label { color: var(--paper); }
.results--dark .result-card__desc { color: rgba(255,255,255,0.62); }
.results--dark .result-chip {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
  color: var(--paper);
}
.results__head {
  max-width: 760px;
  margin: 0 auto clamp(36px, 4.5vw, 56px);
  text-align: center;
}
.results__head .h2 { margin: 0; }
.results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto clamp(32px, 4vw, 48px);
}
@media (max-width: 980px) { .results__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .results__grid { grid-template-columns: 1fr; } }

.result-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.result-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-soft);
}
.result-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 6px;
}
.result-card__stat {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 3.6vw, 46px);
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--accent);
}
.result-card__label {
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.3;
}
.result-card__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-muted);
}

.results__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1080px;
  margin: 0 auto;
}
.result-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px 9px 7px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}
.result-chip__dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #10B981;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.pricing__included {
  max-width: 920px;
  margin: 0 auto;
  padding: 40px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.pricing__included-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--fs-h4);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--ink);
}
.pricing__included ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14px;
  margin-bottom: 24px;
}
@media (max-width: 640px) { .pricing__included ul { grid-template-columns: 1fr; } }
.pricing__included li {
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
  background: #fff;
  border: 1px solid var(--line);
  padding: 11px 18px 11px 8px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 11px;
  line-height: 1.3;
}
.pricing__included li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #10B981;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  position: static;
}
.pricing__fineprint {
  font-size: 13px;
  color: var(--ink-muted);
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  letter-spacing: 0.02em;
}

/* ---------- FAQ ---------- */
.faq {
  padding: var(--section-y) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}
.faq__list {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
  transition: background 0.2s var(--ease);
}
.faq__item[open] { background: linear-gradient(180deg, transparent 0%, rgba(225, 235, 229, 0.5) 100%); }
.faq__item summary {
  list-style: none;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  cursor: pointer;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__q {
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--fs-h5);
  line-height: 1.3;
  letter-spacing: -0.025em;
  color: var(--ink);
  padding-right: 16px;
}
.faq__icon {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
  line-height: 0.8;
  margin-top: 6px;
  display: inline-flex;
}
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__a {
  padding: 0 60px 30px 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 720px;
}

/* ---------- CTA ---------- */
.cta {
  padding: var(--section-y) 0;
  background: var(--night);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  bottom: -400px; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 1000px;
  background: radial-gradient(circle, rgba(15, 61, 46, 0.35) 0%, transparent 60%);
  pointer-events: none;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 100%;
  pointer-events: none;
}
.cta__inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta__title {
  margin-bottom: 28px;
  font-size: clamp(44px, 6.5vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-wrap: balance;
  color: var(--paper);
}
.cta__lede {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 40px;
}
.cta__actions { margin-bottom: 32px; }
.cta .btn--primary {
  background: var(--accent);
  color: var(--paper);
}
.cta .btn--primary::before { background: var(--paper); }
.cta .btn--primary:hover { color: var(--ink); }
.cta__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}
.cta__contact a { border-bottom: 1px solid transparent; padding-bottom: 2px; transition: all 0.2s var(--ease); }
.cta__contact a:hover { color: var(--accent-sand); border-color: currentColor; }
.cta__sep { color: rgba(255, 255, 255, 0.25); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--night-2);
  color: rgba(255, 255, 255, 0.65);
  padding: clamp(72px, 9vw, 110px) 0 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}
.footer__top {
  max-width: 760px;
  margin: 0 auto clamp(36px, 4.5vw, 52px);
}
.footer__brand-mark {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 3.4vw, 42px);
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: 22px;
  display: block;
}
.footer__tagline {
  font-size: 15px;
  line-height: 1.7;
  margin: 0 auto clamp(24px, 3vw, 36px);
  max-width: 680px;
  color: rgba(255, 255, 255, 0.7);
}
.footer__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.2;
}
.footer__trust-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  margin-bottom: clamp(32px, 4vw, 48px);
  padding-bottom: clamp(28px, 3.5vw, 40px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s var(--ease);
}
.footer__nav a:hover { color: var(--accent-sand); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
}
.footer__company {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
}
.footer__company-name {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.footer__company-sep { color: rgba(255, 255, 255, 0.3); }

/* ---------- ROLES ---------- */
.roles {
  padding: var(--section-y) 0;
  background: var(--night-2);
  color: var(--paper);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}
.roles::before {
  content: "";
  position: absolute;
  top: -200px; left: -180px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(15, 61, 46, 0.22) 0%, transparent 60%);
  pointer-events: none;
}
.roles > .container { position: relative; z-index: 1; }
.roles__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: clamp(56px, 6vw, 80px);
}
@media (max-width: 1100px) {
  .roles__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
}
@media (max-width: 560px) {
  .roles__grid { grid-template-columns: 1fr; gap: 16px; }
}

.role {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  padding: 24px 22px 22px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}
.role:hover {
  border-color: rgba(15, 61, 46, 0.55);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}
.role--owner {
  background: linear-gradient(165deg, rgba(15, 61, 46, 0.18) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-color: rgba(15, 61, 46, 0.5);
}

.role__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.role__avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.role__avatar--driver { background: rgba(100, 155, 220, 0.18); }
.role__avatar--cook { background: rgba(230, 140, 90, 0.2); }
.role__avatar--sales { background: rgba(180, 140, 230, 0.2); }
.role__avatar--owner { background: var(--accent); }
.role__meta { flex: 1; min-width: 0; }
.role__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--paper);
  line-height: 1.15;
}
.role__who {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  margin-top: 3px;
}
.role__badge {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  padding: 5px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.role__badge--owner {
  background: var(--accent);
  color: #fff;
}

/* ---- Summary ---- */
.role__summary {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 22px;
}
.role--owner .role__summary { color: rgba(255, 255, 255, 0.82); }

/* ---- Sees list ---- */
.role__sees {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}
.role__sees-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  margin-bottom: 10px;
}
.role__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.role__tags li {
  font-size: 11.5px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.2;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.role--owner .role__tags li {
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.1);
}

/* ---- Devices strip ---- */
.roles__devices {
  background: rgba(255, 255, 255, 0.04);
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3.5vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
}
@media (max-width: 820px) {
  .roles__devices { grid-template-columns: 1fr; gap: 24px; }
}
.roles__devices-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin-bottom: 10px;
}
.roles__devices-text {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  margin: 0;
  max-width: 520px;
}
.roles__devices-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.roles__devices-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}
.roles__devices-icon {
  font-size: 16px;
  flex-shrink: 0;
}
@media (max-width: 420px) {
  .roles__devices-list { grid-template-columns: 1fr; }
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  .eyebrow__dot::after { animation: none; }
  .device { animation: none; }
}

/* ---------- CONTACT MODAL ---------- */
.nav__cta { display: inline-flex; align-items: center; gap: 10px; }
@media (max-width: 560px) {
  .nav__cta-contact { display: none; }
}

body.is-contact-open { overflow: hidden; }

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 32px);
}
.contact-modal[hidden] { display: none; }

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 11, 13, 0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  animation: contactFadeIn 0.2s var(--ease-out);
  cursor: pointer;
}
@keyframes contactFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes contactRiseIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.contact-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: 22px;
  max-width: 720px;
  width: 100%;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  padding: clamp(32px, 4.5vw, 52px);
  box-shadow: 0 40px 80px -24px rgba(0, 0, 0, 0.55);
  animation: contactRiseIn 0.3s var(--ease-out) both;
}

.contact-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.contact-modal__close:hover { background: var(--paper-2); border-color: var(--ink-muted); }

.contact-modal__head { margin-bottom: 22px; padding-right: 40px; }
.contact-modal__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 10px 0 10px;
}
.contact-modal__title em {
  font-style: normal;
  color: var(--accent);
}
.contact-modal__lede {
  color: var(--ink-muted);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  margin-bottom: 18px;
}
.contact-form__field--full { margin-bottom: 24px; }
.contact-form__label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  font-family: var(--sans);
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  line-height: 1.4;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 61, 46, 0.14);
}
.contact-form textarea { resize: vertical; min-height: 140px; font-family: var(--sans); }

.contact-form__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.contact-form__hint {
  font-size: 13px;
  color: var(--ink-muted);
}
.contact-form__hint a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 500;
}

.contact-form__success {
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(15, 61, 46, 0.06);
  border: 1px solid rgba(15, 61, 46, 0.2);
  border-radius: 10px;
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
}
