/* ==========================================================================
   Agent Bond — official website
   Design language: warm cream, ink black, minimal bronze accents.
   ========================================================================== */

/* Never allow horizontal page scrolling — decorative full-bleed elements
   (glows, halos) may extend past the viewport and trigger phantom
   scrollWidth in mobile emulation, and 100vw strips can exceed the layout
   viewport. Clip at the root: propagated to the viewport, so position:
   sticky and anchored scrolling keep working. */
html {
  overflow-x: hidden;
  overflow-x: clip;
}

:root {
  --bg: #f4f1e9;
  --bg-alt: #ece6d8;
  --surface: #fdfcf8;
  --surface-2: #f8f5ec;
  --ink: #1c1a14;
  --ink-2: rgba(28, 26, 20, 0.66);
  --ink-3: rgba(28, 26, 20, 0.44);
  --line: rgba(28, 26, 20, 0.12);
  --line-strong: rgba(28, 26, 20, 0.2);
  --accent: #9c6b3f;
  --accent-2: #b9895a;
  --accent-ink: #7a4f2b;
  --dark: #14120e;
  --dark-bg: #16140f;
  --dark-text: #f2efe6;
  --danger: #b43a2b;
  --ok: #3e7c4f;

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(28, 26, 20, 0.06), 0 4px 14px rgba(28, 26, 20, 0.05);
  --shadow-md: 0 1px 2px rgba(28, 26, 20, 0.04), 0 12px 28px rgba(28, 26, 20, 0.06);
  --shadow-lg: 0 2px 6px rgba(28, 26, 20, 0.05), 0 24px 56px rgba(28, 26, 20, 0.1);

  /* Curved liquid-glass system */
  --glass-blur: 18px;
  --glass-blur-strong: 26px;
  --glass-light: rgba(253, 252, 248, 0.66);
  --glass-line: rgba(28, 26, 20, 0.09);
  --glass-line-strong: rgba(28, 26, 20, 0.15);
  --glass-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  --glass-shadow: 0 1px 2px rgba(28, 26, 20, 0.05), 0 16px 40px rgba(28, 26, 20, 0.08);
  --glass-dark: rgba(26, 23, 18, 0.55);
  --glass-dark-line: rgba(255, 255, 255, 0.16);
  --glass-dark-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.18);

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  --display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI",
    Roboto, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */

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

/* The `hidden` attribute must always win — components that set `display:
   flex`/grid on their class (e.g. .biz-form, .biz-status) would otherwise
   override the UA's `[hidden] { display: none }` and stay visible. */
[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 36%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv11", "ss01";
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

.container-narrow {
  max-width: 780px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 200;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 12px;
  font-weight: 600;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 16px;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 650;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.display {
  font-size: clamp(44px, 8.4vw, 86px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.h2 {
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -0.03em;
}

.h3 {
  font-size: clamp(20px, 2.4vw, 24px);
  letter-spacing: -0.02em;
}

.lead {
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.55;
  color: var(--ink-2);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 18px;
}

.kicker::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
}

.muted {
  color: var(--ink-2);
}

.small {
  font-size: 14px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), border-color 0.25s var(--ease);
  min-height: 52px;
}

.btn svg {
  flex: none;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 8px 24px rgba(28, 26, 20, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(28, 26, 20, 0.28);
}

.btn-secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(253, 252, 248, 0.38));
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  backdrop-filter: blur(12px) saturate(1.5);
  color: var(--ink);
  border: 1px solid var(--glass-line-strong);
  box-shadow: var(--glass-highlight);
}

.btn-secondary:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #fdfbf5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 8px 24px rgba(156, 107, 63, 0.3);
}

.btn-accent:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 17px;
  min-height: 58px;
}

.btn-sm {
  padding: 11px 20px;
  font-size: 14.5px;
  min-height: 42px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

/* --------------------------------------------------------------------------
   Navigation — floating curved liquid-glass bar
   -------------------------------------------------------------------------- */

.nav {
  position: sticky;
  top: 12px;
  z-index: 100;
  /* floating inset on desktop */
  margin: 0 clamp(20px, 3vw, 80px);
  border-radius: var(--radius-pill);
  /* curved glass */
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(253, 252, 248, 0.55) 40%,
    rgba(244, 241, 233, 0.45) 100%
  );
  -webkit-backdrop-filter: saturate(1.8) blur(var(--glass-blur-strong)) brightness(1.08);
  backdrop-filter: saturate(1.8) blur(var(--glass-blur-strong)) brightness(1.08);
  /* edge highlights: top reflection + bottom hairline */
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-bottom-color: rgba(28, 26, 20, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(28, 26, 20, 0.04),
    0 2px 8px rgba(28, 26, 20, 0.06),
    0 8px 32px rgba(28, 26, 20, 0.08),
    0 0 0 0.5px rgba(28, 26, 20, 0.05);
  transition:
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease);
}

/* Subtle top-refraction highlight (decorative) */
.nav::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.9) 30%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(255, 255, 255, 0.9) 70%,
    transparent
  );
  border-radius: var(--radius-pill);
  pointer-events: none;
}

.nav.scrolled {
  border-color: rgba(28, 26, 20, 0.1);
  border-bottom-color: rgba(28, 26, 20, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.65) 0%,
    rgba(253, 252, 248, 0.5) 50%,
    rgba(244, 241, 233, 0.42) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 2px 8px rgba(28, 26, 20, 0.08),
    0 12px 40px rgba(28, 26, 20, 0.1),
    0 0 0 0.5px rgba(28, 26, 20, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
  padding: 0 8px;
  border-radius: inherit;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.brand em {
  font-style: normal;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 550;
  color: var(--ink-2);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(28, 26, 20, 0.06);
}

.nav-links a:active {
  transform: scale(0.97);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 11px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(253, 252, 248, 0.5);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 1px 4px rgba(28, 26, 20, 0.06);
  cursor: pointer;
  flex: none;
  transition: background 0.2s var(--ease);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.28s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  /* Mobile: full-width pinned glass bar (no float margin) */
  .nav {
    margin: 0;
    top: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .nav::before { display: none; }

  .nav-inner {
    height: 64px;
    gap: 10px;
    padding: 0 16px;
    border-radius: 0;
  }

  .nav-toggle {
    display: inline-flex;
    order: 4;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    margin: 0;
    padding: 10px 14px 18px;
    border-radius: 22px;
    /* curved glass dropdown */
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.78) 0%,
      rgba(253, 252, 248, 0.62) 40%,
      rgba(244, 241, 233, 0.52) 100%
    );
    -webkit-backdrop-filter: saturate(1.8) blur(28px) brightness(1.06);
    backdrop-filter: saturate(1.8) blur(28px) brightness(1.06);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-bottom-color: rgba(28, 26, 20, 0.08);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.8),
      0 4px 16px rgba(28, 26, 20, 0.08),
      0 16px 48px rgba(28, 26, 20, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
    z-index: 99;
  }

  .nav.is-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: flex;
    width: 100%;
    padding: 13px 14px;
    font-size: 16px;
    border-radius: 14px;
    transition: background 0.15s var(--ease), transform 0.1s var(--ease);
  }

  .nav-links a:hover {
    background: rgba(28, 26, 20, 0.05);
  }

  .nav-links a:active {
    transform: scale(0.98);
  }

  /* Keep the Download CTA visible on mobile */
  .nav-cta .btn-nav {
    display: inline-flex;
    margin-left: auto;
    order: 3;
  }
}

/* Very small phones: keep the brand and CTA on one line without overflow */
@media (max-width: 360px) {
  .nav-inner {
    gap: 8px;
  }

  .nav-cta {
    gap: 8px;
  }

  .nav-cta .btn-nav {
    padding: 11px 14px;
    font-size: 13.5px;
  }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding: clamp(56px, 9vw, 120px) 0 clamp(48px, 7vw, 96px);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 560px;
  background: radial-gradient(ellipse 62% 54% at 50% 40%, rgba(185, 137, 90, 0.15), rgba(185, 137, 90, 0) 72%);
  pointer-events: none;
}

@keyframes hero-drift {
  from {
    transform: translateX(-50%) translateY(0) scale(1);
  }
  to {
    transform: translateX(-46%) translateY(26px) scale(1.08);
  }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.hero-copy .display {
  margin: 18px 0 24px;
}

.hero-copy .lead {
  max-width: 54ch;
}

.hero-cta {
  margin-top: 36px;
}

.hero-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--ink-3);
}

.agent-cloud {
  margin-top: clamp(30px, 4.5vw, 48px);
  max-width: 580px;
}

.agent-cloud .cloud-title {
  font-size: clamp(21px, 2.6vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.agent-cloud .cloud-sub {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 500px;
}

.agent-cloud .cloud-row {
  margin-top: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.agent-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  box-shadow: 0 1px 2px rgba(28, 26, 20, 0.05);
}

.agent-chip i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c, var(--accent-2));
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.5);
  flex: none;
}

.agent-chip .mark {
  width: 22px;
  height: 22px;
  flex: none;
  object-fit: contain;
}

.agent-chip .mark-tile {
  border-radius: 5px;
}

.agent-chip .mark.plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-3);
  color: var(--ink-3);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.agent-chip-soon {
  opacity: 0.78;
}

.agent-chip-more {
  background: transparent;
  border-style: dashed;
  color: var(--ink-3);
  font-weight: 500;
}

/* Text-only chips (no logo) used in the hero strip */
.agent-chip-text {
  background: transparent;
  border-style: dashed;
  color: var(--ink-2);
  font-weight: 550;
}

/* Real-app device frame */
.hero-mock {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 10px 0 30px;
}


/* Floating call chip over the device */
.call-chip {
  position: absolute;
  right: -8px;
  bottom: 34px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 20px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  animation: chip-pop 0.7s var(--ease) 0.5s both, chip-float 5s ease-in-out 1.2s infinite;
}

@keyframes chip-pop {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes chip-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.call-chip .wave {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 20px;
}

.call-chip .wave i {
  width: 3px;
  border-radius: 3px;
  background: var(--accent-2);
  animation: wave 1s ease-in-out infinite;
}

.call-chip .wave i:nth-child(1) { height: 40%; }
.call-chip .wave i:nth-child(2) { height: 90%; animation-delay: 0.12s; }
.call-chip .wave i:nth-child(3) { height: 60%; animation-delay: 0.24s; }
.call-chip .wave i:nth-child(4) { height: 100%; animation-delay: 0.36s; }
.call-chip .wave i:nth-child(5) { height: 55%; animation-delay: 0.48s; }

@keyframes wave {
  0%,
  100% {
    transform: scaleY(0.5);
  }
  50% {
    transform: scaleY(1);
  }
}

.call-chip .cc-meta {
  font-size: 12px;
  line-height: 1.3;
}

.call-chip .cc-meta b {
  font-size: 13px;
  display: block;
}

.call-chip .live {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.hero-halo {
  position: absolute;
  inset: auto 6% -6% auto;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 137, 90, 0.1), rgba(185, 137, 90, 0) 68%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    margin-inline: auto;
  }

  .hero-cta,
  .btn-row {
    justify-content: center;
  }

  .agent-cloud {
    max-width: none;
    text-align: center;
  }

  .agent-cloud .cloud-sub {
    margin-inline: auto;
  }

  .agent-cloud .cloud-row {
    justify-content: center;
  }

  .hero-mock {
    margin-top: 10px;
  }

  .phone--hero {
    width: min(280px, 82%);
  }

  .call-chip {
    right: 4%;
  }

  .hero-glow {
    width: 120vw;
  }
}

/* --------------------------------------------------------------------------
   Realistic iPhone device frame
   --------------------------------------------------------------------------
   Structure per phone (all screenshots render at their native aspect ratio,
   never cropped or stretched):
     .phone            titanium frame (metallic band + layered drop shadow)
       .phone-power    right power button
       .phone-bezel    black bezel ring (visible between frame and screen)
         .phone-screen rounded screen with the real app screenshot
           .phone-island  Dynamic Island
   -------------------------------------------------------------------------- */

.phone {
  position: relative;
  width: min(262px, 100%);
  margin-inline: auto;
  padding: 8px;
  border-radius: 56px;
  background: linear-gradient(
    155deg,
    #6b6b72 0%,
    #3c3c43 20%,
    #15151a 45%,
    #4a4a52 70%,
    #232329 88%,
    #56565e 100%
  );
  box-shadow:
    0 60px 100px -34px rgba(20, 18, 14, 0.55),
    0 18px 40px rgba(20, 18, 14, 0.18),
    0 4px 10px rgba(20, 18, 14, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.4),
    inset 0 -3px 6px rgba(0, 0, 0, 0.65);
  z-index: 0;
}

/* Black bezel ring between the titanium frame and the screen */
.phone .phone-bezel {
  position: relative;
  border-radius: 48px;
  background: #000;
  padding: 4px;
  z-index: 1;
}

/* Left side buttons: action + volume up + volume down */
.phone::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 19%;
  width: 3px;
  height: 22px;
  border-radius: 2px 0 0 2px;
  background: linear-gradient(180deg, #56565d, #2e2e34);
  box-shadow: 0 34px 0 0 #3b3b42, 0 68px 0 0 #3b3b42;
  z-index: 6;
}

/* Right side power button */
.phone .phone-power {
  position: absolute;
  right: -2px;
  top: 24%;
  width: 3px;
  height: 70px;
  border-radius: 0 2px 2px 0;
  background: linear-gradient(180deg, #56565d, #2e2e34);
  z-index: 6;
}

.phone .phone-screen {
  position: relative;
  border-radius: 44px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 1179 / 2292;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.phone .phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dynamic Island */
.phone .phone-island {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 13px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
  box-shadow: 0 0 0 0.5px rgba(255, 255, 255, 0.05);
}

/* Larger variants for the hero and the demo player */
.phone--hero {
  width: min(300px, 84%);
  padding: 9px;
  border-radius: 62px;
}

.phone--hero .phone-bezel {
  border-radius: 53px;
  padding: 5px;
}

.phone--hero .phone-screen {
  border-radius: 48px;
  aspect-ratio: 1179 / 2526;
}

/* --------------------------------------------------------------------------
   Inside the app gallery — one consistent phone per screen
   -------------------------------------------------------------------------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
  align-items: start;
  max-width: 960px;
  margin-inline: auto;
}

@media (max-width: 860px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
}

@media (max-width: 620px) {
  .gallery {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

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

.g-cap {
  margin-top: 18px;
}

.g-cap b {
  display: block;
  font-size: 16.5px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.g-cap span {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 30ch;
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   How it works
   -------------------------------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
}

.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.step p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}

.step .step-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--accent-ink);
}

.step .step-cta svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s var(--ease);
}

.step:hover .step-cta svg {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Security band
   -------------------------------------------------------------------------- */

.sec-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 64px);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 900px) {
  .sec-band {
    grid-template-columns: 1fr;
  }
}

.sec-list {
  list-style: none;
  display: grid;
  gap: 20px;
}

.sec-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.sec-list .sec-icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(62, 124, 79, 0.12);
  color: var(--ok);
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.sec-list .sec-icon svg {
  width: 20px;
  height: 20px;
}

.sec-list h3 {
  font-size: 16.5px;
  margin-bottom: 4px;
}

.sec-list p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Download page
   -------------------------------------------------------------------------- */

.dl-hero {
  padding: clamp(48px, 7vw, 88px) 0 40px;
  text-align: center;
}

.dl-hero .display {
  font-size: clamp(40px, 7vw, 72px);
}

.dl-hero .lead {
  max-width: 56ch;
  margin: 20px auto 0;
}

.dl-platform {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.dl-platform svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.dl-platform .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  animation: pulse 2s ease-in-out infinite;
}

.dl-body {
  padding: 24px 0 clamp(64px, 8vw, 100px);
}

.dl-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

@media (max-width: 900px) {
  .dl-grid {
    grid-template-columns: 1fr;
  }
}

.dl-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
}

.dl-card h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 10px;
}

.dl-card > p {
  color: var(--ink-2);
  margin-bottom: 26px;
}

.store-buttons {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  border-radius: 18px;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(28, 26, 20, 0.16);
}

.store-btn svg {
  width: 30px;
  height: 30px;
  flex: none;
}

.store-btn .sb {
  text-align: left;
  line-height: 1.2;
}

.store-btn .sb small {
  display: block;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(244, 241, 233, 0.66);
}

.store-btn .sb b {
  font-size: 18px;
  font-weight: 650;
  display: block;
}

.store-btn.primary {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(156, 107, 63, 0.22);
}

.store-btn .soon {
  margin-left: auto;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-2);
  border: 1px solid rgba(185, 137, 90, 0.5);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
}

.dl-note {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.6;
}

.dl-note a {
  color: var(--accent-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dl-stack {
  display: grid;
  gap: 22px;
}

/* Waitlist form on the download page (light surface) */
.cta-form-dark {
  margin-top: 6px;
}

.cta-form-dark input[type="email"] {
  width: 100%;
  background: var(--surface-2);
  border: 1.5px solid var(--line-strong);
  border-radius: 14px;
  padding: 15px 18px;
  font: inherit;
  font-size: 15.5px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.cta-form-dark input[type="email"]::placeholder {
  color: var(--ink-3);
}

.cta-form-dark input[type="email"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(156, 107, 63, 0.14);
}

/* QR card (desktop) */
.qr-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.qr-card .qr-frame {
  width: min(240px, 72%);
  margin: 6px auto 18px;
  padding: 14px;
  border-radius: 22px;
  background: #fdfcf8;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.qr-card .qr-frame img {
  width: 100%;
  height: auto;
}

.qr-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.qr-card p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
}

.qr-card .qr-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-ink);
}

/* TestFlight-ready note */
.tf-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(62, 124, 79, 0.09);
  border: 1px solid rgba(62, 124, 79, 0.25);
  border-radius: 18px;
  padding: 18px 20px;
  margin-top: 22px;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
}

.tf-note svg {
  flex: none;
  width: 22px;
  height: 22px;
  color: var(--ok);
  margin-top: 2px;
}

@media (max-width: 620px) {
  .dl-card {
    padding: 24px 20px;
  }
}
/* --------------------------------------------------------------------------
   Sections & layout
   -------------------------------------------------------------------------- */

.section {
  padding-block: clamp(64px, 10vw, 120px);
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .kicker {
  justify-content: center;
}

.section-head.center .kicker::before {
  display: none;
}

.section-head .lead {
  margin-top: 18px;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 960px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--accent-soft, rgba(156, 107, 63, 0.13));
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.6;
}

.card-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: rgba(156, 107, 63, 0.12);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
}

/* --------------------------------------------------------------------------
   Marquee
   -------------------------------------------------------------------------- */

.marquee {
  border-block: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  background: var(--bg);
}

.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 38s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee span {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 64px;
  white-space: nowrap;
}

.marquee span::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* --------------------------------------------------------------------------
   Problem section
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.split-visual {
  position: relative;
  padding: 20px;
}

.frag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
}

.frag-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.frag-card .frag-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.frag-card:nth-child(1) .frag-icon { background: #10a37f; }
.frag-card:nth-child(2) .frag-icon { background: #d97757; }
.frag-card:nth-child(3) .frag-icon { background: #4285f4; }
.frag-card:nth-child(4) .frag-icon { background: #f24e1e; }

.frag-card .frag-name {
  font-size: 14.5px;
  font-weight: 650;
}

.frag-card .frag-sub {
  font-size: 12.5px;
  color: var(--ink-3);
  margin-top: 2px;
}

.frag-card:nth-child(2),
.frag-card:nth-child(3) {
  transform: translateY(14px);
}

.frag-arrow {
  position: absolute;
  right: -6px;
  bottom: 8px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
  animation: pulse-soft 3s ease-in-out infinite;
}

.frag-arrow svg {
  width: 26px;
  height: 26px;
}

@keyframes pulse-soft {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }

  .split-visual {
    order: -1;
  }
}

/* --------------------------------------------------------------------------
   Feature list (editorial rows)
   -------------------------------------------------------------------------- */

.feature-row {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
  padding-block: clamp(28px, 4vw, 44px);
}

.feature-row + .feature-row {
  border-top: 1px solid var(--line);
}

.feature-copy h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 14px;
}

.feature-copy p {
  color: var(--ink-2);
  font-size: 16.5px;
  line-height: 1.65;
}

.feature-points {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.feature-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15.5px;
  font-weight: 550;
}

.feature-points li::before {
  content: "";
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(62, 124, 79, 0.16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233e7c4f' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 900px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .feature-row .feature-visual {
    order: -1;
  }
}

/* Feature visuals — mini UI panels built in CSS */
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 26px;
}

.panel-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.panel-title .pill {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent-ink);
  background: rgba(156, 107, 63, 0.12);
  padding: 4px 11px;
  border-radius: var(--radius-pill);
}

.panel .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.panel .row:last-child {
  border-bottom: 0;
}

.panel .row .who {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14.5px;
  font-weight: 600;
}

.panel .row .who .av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12.5px;
  font-weight: 700;
  color: #fdfbf5;
  flex: none;
}

.panel .row .tag {
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.tag-agent {
  background: rgba(156, 107, 63, 0.14);
  color: var(--accent-ink);
}

.tag-human {
  background: rgba(28, 26, 20, 0.08);
  color: var(--ink);
}

.tag-done {
  background: rgba(62, 124, 79, 0.14);
  color: var(--ok);
}

.tag-pending {
  background: rgba(156, 107, 63, 0.14);
  color: var(--accent-ink);
}

.tag-live {
  background: rgba(62, 124, 79, 0.14);
  color: var(--ok);
}

.panel .bar {
  height: 8px;
  border-radius: var(--radius-pill);
  background: var(--line);
  overflow: hidden;
  margin-top: 6px;
}

.panel .bar i {
  display: block;
  height: 100%;
  border-radius: var(--radius-pill);
  background: var(--accent);
}

.panel .bar i.green {
  background: var(--ok);
}

/* --------------------------------------------------------------------------
   Voice section
   -------------------------------------------------------------------------- */

.voice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

@media (max-width: 560px) {
  .voice-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

.voice-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.voice-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.voice-card .voice-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  font-size: 17px;
  margin-bottom: 14px;
}

.voice-card .voice-name {
  font-size: 15.5px;
  font-weight: 650;
  line-height: 1.3;
}

.voice-card .voice-lang {
  font-size: 12.5px;
  color: var(--ink-3);
  margin-top: 3px;
}

.voice-note {
  margin-top: 22px;
  font-size: 14.5px;
  color: var(--ink-2);
}

/* --------------------------------------------------------------------------
   Trust section
   -------------------------------------------------------------------------- */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

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

@media (max-width: 560px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

.trust-item {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
}

.trust-item .t-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: rgba(62, 124, 79, 0.12);
  color: var(--ok);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.trust-item .t-icon svg {
  width: 21px;
  height: 21px;
}

.trust-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq-list {
  max-width: 780px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  text-align: left;
  font-size: 17.5px;
  font-weight: 620;
  letter-spacing: -0.01em;
}

.faq-q .faq-icon {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.faq-q .faq-icon svg {
  width: 14px;
  height: 14px;
}

.faq-item[open] .faq-q .faq-icon {
  transform: rotate(45deg);
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

.faq-a {
  padding: 0 4px 24px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
  max-width: 66ch;
}

/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--dark);
  color: var(--dark-text);
  padding: clamp(56px, 8vw, 96px) clamp(28px, 6vw, 88px);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 90%;
  background: none;
  pointer-events: none;
}

.cta-band .h2 {
  position: relative;
  max-width: 640px;
  margin-inline: auto;
}

.cta-band .lead {
  position: relative;
  color: rgba(242, 239, 230, 0.72);
  max-width: 54ch;
  margin: 20px auto 36px;
}

.cta-band .btn-row {
  position: relative;
  justify-content: center;
}

.cta-band .btn-primary {
  background: var(--dark-text);
  color: var(--dark);
}

.cta-band .btn-secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
  border-color: rgba(242, 239, 230, 0.32);
  color: var(--dark-text);
  box-shadow: var(--glass-dark-highlight);
}

.cta-band .btn-secondary:hover {
  border-color: var(--dark-text);
}

.store-row {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 22px;
  border-radius: 14px;
  border: 1px solid rgba(242, 239, 230, 0.24);
  background: rgba(242, 239, 230, 0.06);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.store-badge:hover {
  background: rgba(242, 239, 230, 0.12);
  transform: translateY(-2px);
}

.store-badge svg {
  width: 26px;
  height: 26px;
}

.store-badge .sb-label {
  text-align: left;
  line-height: 1.15;
}

.store-badge .sb-label small {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(242, 239, 230, 0.6);
}

.store-badge .sb-label b {
  font-size: 15px;
  font-weight: 650;
  display: block;
}

.cta-note {
  position: relative;
  margin-top: 22px;
  font-size: 13.5px;
  color: rgba(242, 239, 230, 0.52);
}

.cta-form {
  position: relative;
  max-width: 460px;
  margin: 34px auto 0;
}

.cta-form-inline {
  display: flex;
  gap: 10px;
  background: rgba(242, 239, 230, 0.08);
  border: 1px solid rgba(242, 239, 230, 0.24);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 22px;
  align-items: center;
}

.cta-form input[type="email"] {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: none;
  color: var(--dark-text);
  font: inherit;
  font-size: 15.5px;
}

.cta-form input[type="email"]::placeholder {
  color: rgba(242, 239, 230, 0.5);
}

.cta-form input[type="email"]:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 4px;
  border-radius: 6px;
}

.cta-form .btn {
  min-height: 44px;
  padding: 12px 22px;
  background: var(--dark-text);
  color: var(--dark);
  box-shadow: none;
  flex: none;
}

.form-note {
  margin-top: 14px;
  font-size: 14px;
  min-height: 1.4em;
}

.form-note.ok {
  color: #9fd4ad;
}

.form-note.error {
  color: #e88f7f;
}

@media (max-width: 560px) {
  .cta-form-inline {
    flex-direction: column;
    border-radius: 22px;
    padding: 12px;
    align-items: stretch;
  }

  .cta-form input[type="email"] {
    padding: 8px 10px;
  }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  border-top: 1px solid var(--line);
  padding: clamp(48px, 6vw, 72px) 0 40px;
  margin-top: clamp(40px, 6vw, 80px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.footer .brand {
  margin-bottom: 14px;
}

.footer-blurb {
  font-size: 14.5px;
  color: var(--ink-2);
  max-width: 32ch;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 11px;
}

.footer-col a {
  font-size: 15px;
  color: var(--ink-2);
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--ink);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--ink-3);
}

.footer-bottom .legal-links {
  display: flex;
  gap: 22px;
}

.footer-bottom .legal-links a:hover {
  color: var(--ink);
}
/* Product-of-ELVATE label */
.footer-elvate {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  margin-left: 8px;
  vertical-align: middle;
  opacity: 0.7;
}
.footer-elvate strong {
  font-weight: 600;
  color: var(--ink-2);
  opacity: 1;
}


/* --------------------------------------------------------------------------
   Legal pages
   -------------------------------------------------------------------------- */

.legal-hero {
  padding: clamp(48px, 8vw, 88px) 0 32px;
}

.legal-hero .kicker {
  margin-bottom: 14px;
}

.legal-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
}

.legal-hero .updated {
  margin-top: 14px;
  font-size: 14.5px;
  color: var(--ink-3);
}

.legal-body {
  padding: 24px 0 clamp(64px, 8vw, 100px);
}

.legal-body .container-narrow {
  max-width: 780px;
}

.legal-body h2 {
  font-size: clamp(22px, 2.6vw, 27px);
  margin: 44px 0 14px;
  letter-spacing: -0.02em;
}

.legal-body h3 {
  font-size: 18.5px;
  margin: 28px 0 10px;
}

.legal-body p,
.legal-body li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
  overflow-wrap: break-word;
}

.legal-body a,
.legal-body code {
  overflow-wrap: anywhere;
}

.legal-body p + p {
  margin-top: 14px;
}

.legal-body ul,
.legal-body ol {
  padding-left: 22px;
  margin: 14px 0;
  display: grid;
  gap: 9px;
}

/* Bracketed items in the authoritative legal documents that still need the
   operator's input (company name, addresses, emails). Kept visible so the
   page never silently publishes an empty field. */
.legal-fill {
  background: rgba(200, 162, 96, 0.16);
  border-bottom: 1px dashed rgba(200, 162, 96, 0.65);
  border-radius: 3px;
  padding: 0 4px;
  color: inherit;
  font-style: italic;
}

.legal-body li::marker {
  color: var(--accent);
}

.legal-body a {
  color: var(--accent-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(122, 79, 43, 0.35);
}

.legal-body a:hover {
  text-decoration-color: var(--accent-ink);
}

.legal-body .toc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 28px 0;
}

.legal-body .toc h2 {
  margin: 0 0 12px;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.legal-body .toc ol {
  padding-left: 20px;
  display: grid;
  gap: 7px;
  margin: 0;
}

.legal-body .toc a {
  color: var(--ink);
  text-decoration: none;
}

.legal-body .toc a:hover {
  color: var(--accent-ink);
}

/* --------------------------------------------------------------------------
   Reveal animations
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .phone--hero,
  .hero-glow,
  .hero-halo,
  .marquee-track,
  .call-chip,
  .call-chip .wave i,
  .dl-platform .pulse,
  .frag-arrow,
  .demo-phone::before,
  .phone--demo .phone-screen::after,
  .conv-logo,
  .float-msg,
  .call-wave i,
  .call-avatar {
    animation: none !important;
    transition: opacity 0.01s linear;
  }

  .conv-logo {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   Agent cloud marks
   -------------------------------------------------------------------------- */

.agent-chip .soon {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(185, 137, 90, 0.12);
  border-radius: 999px;
  padding: 2px 7px;
  margin-left: 1px;
}

.cloud-note {
  margin-top: 14px;
  max-width: 560px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-3);
}

.cloud-note em {
  font-style: normal;
  color: var(--ink-2);
  font-weight: 600;
}

.cloud-note a {
  color: var(--accent-ink);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .cloud-note {
    text-align: center;
    margin-inline: auto;
  }
}

/* --------------------------------------------------------------------------
   Product demo — a large YouTube-style 16:9 video window. The launch film is
   a vertical 1080x1920 capture, so it letterboxes inside the 16:9 stage on a
   dark backdrop: nothing is cropped or stretched, and the film stays easy to
   watch with standard playback controls and fullscreen support.
   -------------------------------------------------------------------------- */

.demo-player {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0e0c09;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    var(--shadow-lg);
}

.demo-video-16 {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0e0c09;
}

/* Big centered play button — the "thumbnail + play" affordance, shown until
   the film actually starts (JS hides it on play). */
.demo-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: opacity 0.4s var(--ease);
}

.demo-play:hover .demo-play-circle {
  transform: scale(1.05);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.1);
}

.demo-play-circle {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  color: #fff;
  background: rgba(20, 18, 14, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.demo-play-circle svg {
  width: 34px;
  height: 34px;
  margin-left: 3px;
}

.demo-play-label {
  font-size: 15px;
  font-weight: 600;
  color: #f2efe6;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

.demo-player.is-playing .demo-play {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 700px) {
  .demo-play-circle {
    width: 68px;
    height: 68px;
  }
  .demo-play-circle svg {
    width: 28px;
    height: 28px;
  }
}

/* --------------------------------------------------------------------------
   Trust facts
   -------------------------------------------------------------------------- */

.trust-facts {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}

.trust-facts li {
  padding-left: 18px;
  position: relative;
}

.trust-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
}

.trust-facts b {
  display: block;
  font-size: 14.5px;
  color: var(--ink);
}

.trust-facts span {
  display: block;
  margin-top: 3px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-2);
}

.trust-facts a {
  color: var(--accent-ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 620px) {
  .trust-facts {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Waitlist form states
   -------------------------------------------------------------------------- */

.cta-form input[aria-invalid="true"] {
  border-color: #e88f7f !important;
  box-shadow: 0 0 0 3px rgba(232, 143, 127, 0.25) !important;
}

.cta-form button:disabled {
  opacity: 0.6;
  cursor: default;
}

/* --------------------------------------------------------------------------
   Pricing page
   -------------------------------------------------------------------------- */

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 6px 0 34px;
}

.pt-btn {
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.2s var(--ease-soft);
}

.pt-btn:hover {
  border-color: var(--line-strong);
}

.pt-btn.is-active {
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(253, 252, 248, 0.68));
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  backdrop-filter: blur(14px) saturate(1.5);
  border-color: var(--glass-line-strong);
  box-shadow: var(--glass-highlight), 0 6px 18px rgba(28, 26, 20, 0.08);
}

.pt-save {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(156, 107, 63, 0.14);
  color: var(--accent-ink);
  font-size: 11.5px;
  letter-spacing: 0.4px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 26px;
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.plan-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.plan-card-featured {
  border-color: var(--accent);
  box-shadow: 0 18px 44px rgba(156, 107, 63, 0.12);
}

.plan-card-featured:hover {
  box-shadow: 0 22px 52px rgba(156, 107, 63, 0.16);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fdfbf5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.1px;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(156, 107, 63, 0.35);
}

.plan-name {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--ink);
  margin: 0;
}

.plan-tag {
  font-size: 13.5px;
  color: var(--ink-2);
  margin: 6px 0 0;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 22px;
}

.pp-amount {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.4px;
  color: var(--ink);
}

.pp-period {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
}

.plan-yearly {
  font-size: 13px;
  color: var(--ink-2);
  margin: 6px 0 0;
}

.plan-yearly s {
  color: var(--ink-3);
}

.plan-yearly b {
  color: var(--ink);
  font-weight: 700;
}

.plan-yearly em {
  font-style: normal;
  color: var(--ok);
  font-weight: 700;
  margin-left: 4px;
}

.plan-yearly-note {
  font-size: 12px;
  color: var(--ink-2);
  margin: 5px 0 0;
}

.plan-yearly-note b {
  color: var(--ink);
  font-weight: 700;
}

.plan-features {
  list-style: none;
  margin: 22px 0 24px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  flex: 1;
}

.plan-features li {
  padding-left: 0;
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.45;
}

.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(156, 107, 63, 0.14);
}


.btn-block {
  width: 100%;
  display: flex;
  justify-content: center;
}

.btn-outline {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(253, 252, 248, 0.38));
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  backdrop-filter: blur(12px) saturate(1.5);
  color: var(--ink);
  border: 1px solid var(--glass-line-strong);
  box-shadow: var(--glass-highlight);
}

.btn-outline:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.business-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: 26px;
  padding: 30px 34px;
  margin-top: 26px;
}

.business-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 26px;
}

.business-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--ink);
}

.business-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
}

.compare {
  margin-top: 44px;
}

.compare .h2 {
  text-align: center;
  margin-bottom: 20px;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  border: 1.5px solid var(--line);
  background: var(--surface);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 13.5px;
}

.compare-table th,
.compare-table td {
  padding: 12px 18px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
}

.compare-table thead th {
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ink-2);
}

.compare-table thead th:nth-child(3) {
  color: var(--accent-ink);
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.plan-trial {
  display: inline-block;
  margin: 10px 0 2px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ok, #2e7d4f);
  background: rgba(46, 125, 79, 0.12);
}

.biz-price {
  margin-top: 10px;
  align-items: baseline;
}

.biz-price .pp-amount {
  font-size: 26px;
}

.biz-min {
  font-size: 12.5px;
  color: var(--ink-2);
}

/* Free plan — the conversion entry point above the paid grid */
.plan-card-free {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) 1.2fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  border-style: dashed;
  border-color: var(--line-strong);
  background: var(--surface-2);
  margin: 0 auto 22px;
}

.plan-card-free .plan-free-main {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.plan-card-free .plan-price {
  margin-top: 14px;
}

.plan-card-free .plan-free-main .btn-block {
  margin-top: 18px;
  max-width: 240px;
}

.plan-free-features {
  border-top: 0;
  padding-top: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 22px;
}

.plan-card-free .pp-period {
  font-size: 14px;
}

@media (max-width: 720px) {
  .plan-card-free {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .plan-free-features {
    grid-template-columns: 1fr;
  }
}

.table-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--ink-2);
  text-align: center;
}

@media (max-width: 960px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
  .plan-card-featured {
    order: -1;
  }
  .business-band {
    flex-direction: column;
    align-items: flex-start;
  }
  .business-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .plan-card {
    padding: 24px 20px;
  }
  .pp-amount {
    font-size: 34px;
  }
}

/* --------------------------------------------------------------------------
   Store badges (official App Store / Google Play treatment)
   -------------------------------------------------------------------------- */

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.store-badge {
  display: inline-block;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), opacity 0.22s var(--ease);
}

.store-badge img {
  display: block;
  width: auto;
  height: 58px;
}

.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(28, 26, 20, 0.14);
}

.store-badge:focus-visible {
  outline: 3px solid var(--accent, #9c6b3f);
  outline-offset: 3px;
  border-radius: 22px;
}

.cta-band .store-badge img {
  height: 62px;
}

@media (max-width: 620px) {
  .store-badge img {
    height: 52px;
  }
}

/* --------------------------------------------------------------------------
   Build your own Jarvis — premium positioning section
   -------------------------------------------------------------------------- */

.jarvis-section {
  background: linear-gradient(180deg, var(--surface, #fffdf7), var(--bg, #f4f1e9));
}

.jarvis-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.jarvis-visual {
  position: relative;
  border-radius: 30px;
  overflow: visible;
}

.jarvis-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.jarvis-fact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(156, 107, 63, 0.1);
  border: 1px solid rgba(156, 107, 63, 0.28);
  color: var(--accent-ink, #7a4f2b);
  font-size: 13px;
  font-weight: 600;
}

.jarvis-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.jarvis-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--surface, #fffdf7);
  border: 1px solid var(--line, #e6e1d5);
}

.jarvis-item .ji-icon {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(156, 107, 63, 0.13);
  color: var(--accent, #9c6b3f);
}

.jarvis-item .ji-icon svg {
  width: 18px;
  height: 18px;
}

.jarvis-item b {
  display: block;
  font-size: 15px;
}

.jarvis-item span {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2, #5c574c);
}

.jarvis-disclaimer {
  margin-top: 24px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-3, #8a8478);
  max-width: 64ch;
}

@media (max-width: 900px) {
  .jarvis-grid {
    grid-template-columns: 1fr;
  }
  .jarvis-visual {
    order: -1;
  }
}

/* --------------------------------------------------------------------------
   Connect: builder prompt + guided setup
   -------------------------------------------------------------------------- */

.builder-band {
  background: var(--surface, #fffdf7);
  border: 1.5px solid var(--line, #e6e1d5);
  border-radius: 26px;
  padding: clamp(24px, 4vw, 40px);
}

.builder-band + .builder-band {
  margin-top: 26px;
}

.builder-prompt-box {
  position: relative;
  margin-top: 18px;
  border-radius: 18px;
  background: var(--dark, #1c1a14);
  color: rgba(244, 241, 233, 0.9);
  padding: 22px 24px 24px;
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.builder-prompt-box pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
  font: inherit;
}

.builder-prompt-box .bp-copy {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 650;
  color: var(--dark-text, #f4f1e9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 7px 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.builder-prompt-box .bp-copy:hover {
  background: rgba(255, 255, 255, 0.2);
}

.guided-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.guided-step {
  border: 1px solid var(--ink-6, #e6e1d5);
  border-radius: 16px;
  padding: 16px;
  background: var(--surface, #fffdf7);
}

.guided-step .gs-num {
  width: 26px;
  height: 26px;
  border-radius: 13px;
  background: rgba(156, 107, 63, 0.14);
  color: var(--accent, #9c6b3f);
  font-size: 13px;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.guided-step b {
  display: block;
  font-size: 14.5px;
  margin-bottom: 4px;
}

.guided-step span {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2, #5c574c);
}

.test-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ok, #3e7c4f);
}

.test-pill svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   Homepage redesign — visual-first product story
   (Arcads-style principles: show the product, short copy, big hierarchy,
    GPU-friendly motion, repeated conversion moments.)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero v2 — one dominant CTA, phone front and center
   -------------------------------------------------------------------------- */

.hero-store-badges {
  margin-top: 24px;
  justify-content: flex-start;
}

.hero-store-badges .store-badge img {
  height: 46px;
}

.hero-copy .kicker {
  margin-bottom: 14px;
}

@media (max-width: 900px) {
  .hero-store-badges {
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   Every AI, one place — convergence stage
   -------------------------------------------------------------------------- */

.converge-section {
  position: relative;
}

.converge {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  min-height: 520px;
}

.converge-phone {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: min(230px, 40vw);
}

.converge-phone .phone {
  width: 100%;
}

/* Connector rings behind the phone — reads as "everything feeds in". */
.converge::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(520px, 88vw);
  height: min(520px, 88vw);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(28, 26, 20, 0.14);
  z-index: 1;
  pointer-events: none;
  animation: converge-ring 16s linear infinite;
}

.converge::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(400px, 70vw);
  height: min(400px, 70vw);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(28, 26, 20, 0.06);
  z-index: 1;
  pointer-events: none;
}

@keyframes converge-ring {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.conv-logo {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(14px) scale(0.92);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.conv-logo img {
  width: 20px;
  height: 20px;
  flex: none;
  object-fit: contain;
}

.converge.in .conv-logo {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.conv-logo--chatgpt {
  top: 6%;
  left: 8%;
  transition-delay: 0.1s;
}

.conv-logo--claude {
  top: 4%;
  right: 10%;
  transition-delay: 0.2s;
}

.conv-logo--gemini {
  top: 38%;
  right: 0%;
  transition-delay: 0.3s;
}

.conv-logo--grok {
  bottom: 12%;
  right: 6%;
  transition-delay: 0.4s;
}

.conv-logo--custom {
  bottom: 2%;
  left: 14%;
  transition-delay: 0.5s;
}

.conv-logo--mcp {
  bottom: 24%;
  left: 0%;
  transition-delay: 0.6s;
}

.conv-logo--selfhosted {
  top: 12%;
  left: 30%;
  transition-delay: 0.7s;
}

/* Gentle hover lift on each provider chip. */
.conv-logo:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.converge-note {
  margin-top: 34px;
  text-align: center;
  font-size: 14.5px;
  color: var(--ink-2);
  max-width: 560px;
  margin-inline: auto;
}

.converge-note a {
  color: var(--accent-ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 720px) {
  .converge {
    min-height: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding-top: 8px;
  }
  .converge::before,
  .converge::after {
    display: none;
  }
  .converge-phone {
    position: static;
    transform: none;
    width: min(210px, 62vw);
    margin-bottom: 16px;
    flex: 0 0 100%;
  }
  .conv-logo {
    position: static;
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Alternating product showcases (messaging, calling, people + agents)
   -------------------------------------------------------------------------- */

.showcase-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}

.showcase-grid--reverse .showcase-visual {
  order: 1;
}

.showcase-visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px 10px;
}

.showcase-copy .kicker {
  margin-bottom: 14px;
}

.showcase-copy .h2 {
  margin-bottom: 18px;
}

.showcase-copy .lead {
  max-width: 44ch;
  margin-bottom: 26px;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.check-list li {
  padding-left: 0;
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.5;
}


/* Floating message bubbles beside the showcases */
.float-msg {
  position: absolute;
  z-index: 5;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  max-width: 230px;
  animation: float-bob 5s ease-in-out infinite;
}

.float-msg--1 {
  top: 6%;
  left: 0;
}

.float-msg--2 {
  bottom: 10%;
  right: 0;
  animation-delay: 1.4s;
  color: var(--surface);
  background: var(--ink);
  border-color: var(--ink);
}

.float-msg--3 {
  top: 12%;
  right: 2%;
}

.float-msg--4 {
  bottom: 8%;
  left: 2%;
  animation-delay: 1.1s;
}

@keyframes float-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@media (max-width: 960px) {
  .showcase-grid,
  .showcase-grid--reverse {
    grid-template-columns: 1fr;
  }
  .showcase-grid--reverse .showcase-visual {
    order: 0;
  }
  .showcase-copy {
    text-align: center;
  }
  .showcase-copy .lead {
    margin-inline: auto;
  }
  .check-list {
    max-width: 420px;
    margin-inline: auto;
    text-align: left;
  }
  .float-msg {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Calling — cinematic signature section (dark)
   -------------------------------------------------------------------------- */

.call-section {
  background: var(--dark-bg);
  color: var(--dark-text);
  position: relative;
  overflow: hidden;
}

.call-section::before {
  content: "";
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 480px;
  background: radial-gradient(ellipse 60% 55% at 50% 30%, rgba(185, 137, 90, 0.13), rgba(185, 137, 90, 0) 70%);
  pointer-events: none;
}

.call-section .h2 {
  color: var(--dark-text);
}

.call-section .lead {
  color: rgba(242, 239, 230, 0.72);
}

.call-kicker {
  color: var(--accent-2);
}

.call-kicker::before {
  background: var(--accent-2);
}

.call-stage {
  position: relative;
  max-width: 980px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.call-phone {
  display: flex;
  justify-content: center;
  order: 1;
}

.call-phone .phone {
  width: min(260px, 100%);
}

.call-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 30px 26px;
  text-align: center;
  order: 0;
}

.call-avatar {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent-2), var(--accent));
  color: #fdfbf5;
  font-size: 30px;
  font-weight: 800;
  box-shadow: 0 0 0 6px rgba(185, 137, 90, 0.14), 0 10px 22px rgba(0, 0, 0, 0.28);
  animation: avatar-pulse 2.4s ease-in-out infinite;
}

@keyframes avatar-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(185, 137, 90, 0.14), 0 10px 22px rgba(0, 0, 0, 0.28);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(185, 137, 90, 0.05), 0 10px 22px rgba(0, 0, 0, 0.28);
  }
}

.call-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.call-sub {
  font-size: 13.5px;
  color: rgba(242, 239, 230, 0.6);
  margin-bottom: 22px;
}

.call-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.call-btn {
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s var(--ease), filter 0.2s var(--ease);
}

.call-btn:hover {
  transform: translateY(-2px);
}

.call-btn--decline {
  background: rgba(180, 58, 43, 0.9);
  color: #fff;
}

.call-btn--accept {
  background: rgba(62, 124, 79, 0.92);
  color: #fff;
}

/* Active call */
.call-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 52px;
  margin: 20px 0 10px;
}

.call-wave i {
  width: 5px;
  height: 18px;
  border-radius: 3px;
  background: var(--accent-2);
  animation: wave-bar 1.1s ease-in-out infinite;
}

.call-wave i:nth-child(2n) {
  animation-delay: 0.18s;
}

.call-wave i:nth-child(3n) {
  animation-delay: 0.36s;
}

.call-wave i:nth-child(4n) {
  animation-delay: 0.54s;
}

@keyframes wave-bar {
  0%,
  100% {
    height: 14px;
  }
  50% {
    height: 46px;
  }
}

.call-timer {
  font-size: 15px;
  font-weight: 650;
  color: rgba(242, 239, 230, 0.8);
  font-variant-numeric: tabular-nums;
  margin-bottom: 20px;
}

.call-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.cc-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 68px;
  padding: 10px 4px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(242, 239, 230, 0.85);
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.cc-btn svg {
  width: 20px;
  height: 20px;
}

.cc-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.cc-btn--end {
  border-color: rgba(180, 58, 43, 0.5);
  color: #f3b3ab;
}

.cc-btn--end:hover {
  background: rgba(180, 58, 43, 0.24);
}

.call-agent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.call-agent-actions span {
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(242, 239, 230, 0.9);
  background: rgba(185, 137, 90, 0.16);
  border: 1px solid rgba(185, 137, 90, 0.3);
}

@media (max-width: 860px) {
  .call-stage {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .call-phone {
    order: 0;
  }
  .call-card {
    order: 1;
  }
}

/* --------------------------------------------------------------------------
   Connect — three-step flow
   -------------------------------------------------------------------------- */

.flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 960px;
  margin-inline: auto;
}

.flow-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px 24px 24px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.flow-step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.flow-num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
}

.flow-step h3 {
  font-size: 17.5px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.flow-step p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 18px;
  min-height: 66px;
}

.flow-logos {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flow-logos img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: grayscale(0.15);
}

.flow-key {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: var(--ink-2);
  background: var(--surface-2);
  border: 1px dashed var(--line-strong);
  border-radius: 10px;
  padding: 10px 14px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.flow-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 650;
  color: var(--ink);
}

.fc-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 3px rgba(62, 124, 79, 0.18);
}

@media (max-width: 860px) {
  .flow {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .flow-step p {
    min-height: 0;
  }
}

/* --------------------------------------------------------------------------
   Cross-device
   -------------------------------------------------------------------------- */

.devices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 880px;
  margin-inline: auto;
}

.device {
  text-align: center;
}

.device .dev-screen {
  position: relative;
  display: block;
  margin: 0 auto 16px;
  background: var(--dark-bg);
  border: 2px solid var(--line-strong);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.device--phone .dev-screen {
  width: 58px;
  height: 118px;
  border-radius: 12px;
}

.device--tablet .dev-screen {
  width: 96px;
  height: 128px;
  border-radius: 14px;
}

.device--watch .dev-screen {
  width: 56px;
  height: 66px;
  border-radius: 50%;
}

.device--vision .dev-screen {
  width: 120px;
  height: 66px;
  border-radius: 34px;
}

.dev-island {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 6px;
  border-radius: 999px;
  background: #000;
}

.device p {
  font-size: 14px;
  font-weight: 650;
  color: var(--ink-2);
}

@media (max-width: 760px) {
  .devices {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 16px;
  }
}

/* --------------------------------------------------------------------------
   Trust — four visual promises
   -------------------------------------------------------------------------- */

.trust-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 960px) {
  .trust-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .trust-grid--4 {
    grid-template-columns: 1fr;
  }
}

.trust-more {
  margin-top: 26px;
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-2);
}

.trust-more a {
  color: var(--accent-ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Social proof (hidden until real data exists)
   -------------------------------------------------------------------------- */

.social-proof-section[hidden] {
  display: none;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 960px;
  margin-inline: auto;
}

@media (max-width: 860px) {
  .social-proof-grid {
    grid-template-columns: 1fr;
  }
}

.sp-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}

.sp-card blockquote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 18px;
}

.sp-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sp-card .sp-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fdfbf5;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
  flex: none;
}

.sp-card .sp-who b {
  display: block;
  font-size: 14px;
}

.sp-card .sp-who span {
  font-size: 12.5px;
  color: var(--ink-3);
}

/* --------------------------------------------------------------------------
   Final CTA — big closing moment
   -------------------------------------------------------------------------- */

.final-cta {
  background: var(--dark-bg);
}

.final-cta .cta-band {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
  text-align: center;
  box-shadow: none;
}

.final-cta .cta-band::before {
  display: none;
}

.final-cta .h2 {
  color: var(--dark-text);
  font-size: clamp(34px, 5.4vw, 58px);
  max-width: 620px;
  margin-inline: auto;
}

.final-sub {
  margin-top: 14px;
  font-size: clamp(18px, 2.4vw, 24px);
  color: rgba(242, 239, 230, 0.75);
}

.final-cta .kicker {
  color: var(--accent-2);
}

.final-cta .kicker::before {
  background: var(--accent-2);
}

.final-cta .store-badge img {
  height: 52px;
}

.final-cta .cta-note {
  color: rgba(242, 239, 230, 0.55);
}

/* Dark CTA band keeps the rounded card look on light sections */
.cta-band--big {
  padding: clamp(48px, 7vw, 84px) clamp(24px, 5vw, 60px);
}

/* --------------------------------------------------------------------------
   Pricing v2 — CTA first, features expandable below
   -------------------------------------------------------------------------- */

.plan-card .plan-cta {
  margin-top: 18px;
}

.plan-card .plan-cta .btn {
  margin-top: 0;
}

.plan-details {
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.plan-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 650;
  color: var(--ink-2);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.2s var(--ease);
}

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

.plan-details summary:hover {
  color: var(--ink);
}

.plan-details .pd-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.plan-details[open] .pd-icon {
  transform: rotate(45deg);
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.plan-details .plan-features {
  margin: 16px 0 0;
  padding: 0 0 4px;
  border-top: 0;
  display: grid;
  grid-template-columns: 1fr;
}

.plan-card-featured .plan-cta .btn-primary {
  box-shadow: 0 6px 14px rgba(156, 107, 63, 0.18);
}

/* --------------------------------------------------------------------------
   Curved liquid-glass system
   Translucent panels with soft blur, a gentle top reflection, hairline
   borders and restrained depth. Light glass on cream sections, ink glass
   on dark sections. Fills stay bright enough that ink text keeps strong
   contrast; blur is scoped so it never drags on low-end GPUs (see the
   mobile fallback at the end of this block).
   -------------------------------------------------------------------------- */

.glass,
.plan-card,
.business-band,
.faq-item,
.biz-price-card,
.biz-form,
.biz-status,
.dl-card,
.sec-band,
.trust-item,
.jarvis-item,
.flow-step,
.guided-step,
.table-wrap,
.dl-platform,
.agent-chip,
.conv-logo,
.frag-card {
  background:
    linear-gradient(168deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.4) 44%, rgba(255, 255, 255, 0.24) 100%),
    var(--glass-light);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.5);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.5);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius-xl);
  box-shadow:
    var(--glass-highlight),
    inset 0 -1px 0 rgba(28, 26, 20, 0.04),
    0 1px 2px rgba(28, 26, 20, 0.05),
    0 16px 40px rgba(28, 26, 20, 0.08);
}

/* Organic-curve tuning: wide bands and hero-scale panels take the biggest
   radius; compact tiles and pills stay tighter so they never look blobby. */
.plan-card,
.business-band,
.sec-band,
.dl-card {
  border-radius: var(--radius-xl);
}

.faq-item,
.trust-item,
.flow-step,
.biz-price-card,
.biz-form,
.biz-status,
.table-wrap,
.frag-card {
  border-radius: var(--radius-lg);
}

.guided-step {
  border-radius: var(--radius);
}

.agent-chip,
.conv-logo,
.dl-platform {
  border-radius: var(--radius-pill);
}

/* Dashed/text chips stay ghosty — no fill, no blur. */
.agent-chip-more,
.agent-chip-text {
  background: transparent;
  border-style: dashed;
  border-color: var(--line-strong);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
}

/* Featured + free plan cards keep their accent/dashed identity. */
.plan-card-featured {
  border-color: var(--accent);
  box-shadow: var(--glass-highlight), 0 18px 44px rgba(156, 107, 63, 0.14);
}

.plan-card-free {
  border-style: dashed;
  border-color: var(--glass-line-strong);
  background:
    linear-gradient(168deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.5) 46%, rgba(255, 255, 255, 0.32) 100%),
    rgba(253, 252, 248, 0.72);
}

/* Floating UI: chips and bubbles get real blur since they sit on imagery. */
.call-chip {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(253, 252, 248, 0.72));
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--glass-highlight), 0 18px 44px rgba(28, 26, 20, 0.18);
}

.float-msg {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(253, 252, 248, 0.7));
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  backdrop-filter: blur(16px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--glass-highlight), var(--shadow-md);
}

.float-msg--2 {
  color: var(--surface);
  background: linear-gradient(180deg, rgba(64, 59, 50, 0.96), rgba(28, 26, 20, 0.9));
  border-color: rgba(28, 26, 20, 0.9);
}

.flow-contact {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(253, 252, 248, 0.66));
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  backdrop-filter: blur(12px) saturate(1.5);
  border: 1px solid var(--glass-line-strong);
  box-shadow: var(--glass-highlight);
}

.jarvis-fact {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(253, 252, 248, 0.55));
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  backdrop-filter: blur(12px) saturate(1.4);
  border: 1px solid rgba(156, 107, 63, 0.28);
  box-shadow: var(--glass-highlight);
}

.plan-badge {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 16px rgba(156, 107, 63, 0.35);
}

.biz-step-btn {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(253, 252, 248, 0.7));
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  backdrop-filter: blur(12px) saturate(1.5);
  border: 1px solid var(--glass-line-strong);
  box-shadow: var(--glass-highlight), var(--shadow-sm);
}

/* Ink glass — dark sections (call stage, demo player, CTA bands). */
.cta-band,
.cta-band--big,
.final-cta .cta-band,
.call-card,
.demo-player,
.demo-play-circle,
.cc-btn {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.02) 48%, rgba(255, 255, 255, 0.04) 100%),
    var(--glass-dark);
  -webkit-backdrop-filter: blur(var(--glass-blur-strong)) saturate(1.3);
  backdrop-filter: blur(var(--glass-blur-strong)) saturate(1.3);
  border: 1px solid var(--glass-dark-line);
  border-radius: var(--radius-xl);
  box-shadow:
    var(--glass-dark-highlight),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3),
    0 24px 64px rgba(0, 0, 0, 0.3);
}

.cta-band {
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 48%, rgba(255, 255, 255, 0.05) 100%),
    rgba(21, 18, 14, 0.86);
}

.final-cta .cta-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.015) 50%, rgba(255, 255, 255, 0.05) 100%),
    rgba(22, 19, 14, 0.55);
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 36px;
  box-shadow: var(--glass-dark-highlight), 0 24px 64px rgba(0, 0, 0, 0.3);
}

.demo-player {
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(18, 16, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.demo-play-circle {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(20, 18, 14, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.demo-play:hover .demo-play-circle {
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.1), 0 12px 34px rgba(0, 0, 0, 0.4);
}

.call-card {
  border-radius: var(--radius-xl);
}

.cc-btn {
  border-radius: 16px;
}

.cc-btn--end {
  border-color: rgba(180, 58, 43, 0.5);
}

/* Dark glass store badges (CTA bands); the image badges on /download keep
   their existing treatment. */
.cta-band .store-badge,
.final-cta .store-badge {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: var(--glass-dark-highlight);
}

.call-agent-actions span {
  background: linear-gradient(180deg, rgba(185, 137, 90, 0.26), rgba(185, 137, 90, 0.14));
  -webkit-backdrop-filter: blur(10px) saturate(1.3);
  backdrop-filter: blur(10px) saturate(1.3);
  border: 1px solid rgba(185, 137, 90, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

/* Mobile: keep blur where it matters (nav, chips, demo, buttons). Static
   panels drop backdrop-filter so long pages stay smooth on low-end GPUs;
   the bright gradient fill alone still reads as glass. */
@media (max-width: 900px) {
  .glass,
  .business-band,
  .faq-item,
  .biz-price-card,
  .biz-form,
  .biz-status,
  .dl-card,
  .sec-band,
  .trust-item,
  .jarvis-item,
  .flow-step,
  .guided-step,
  .table-wrap,
  .dl-platform,
  .agent-chip,
  .conv-logo,
  .frag-card {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background:
      linear-gradient(168deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.42) 46%, rgba(255, 255, 255, 0.26) 100%),
      rgba(253, 252, 248, 0.9);
  }
}

/* No backdrop-filter support at all: fall back to solid, fully readable
   surfaces. */
@supports not ((backdrop-filter: blur(4px)) or (-webkit-backdrop-filter: blur(4px))) {
  .glass,
  .plan-card,
  .business-band,
  .faq-item,
  .biz-price-card,
  .biz-form,
  .biz-status,
  .dl-card,
  .sec-band,
  .trust-item,
  .jarvis-item,
  .flow-step,
  .guided-step,
  .table-wrap,
  .dl-platform,
  .agent-chip,
  .conv-logo,
  .frag-card {
    background: var(--surface);
  }

  .cta-band,
  .cta-band--big,
  .final-cta .cta-band,
  .call-card,
  .demo-player,
  .demo-play-circle,
  .cc-btn {
    background: var(--dark-bg);
  }
}

/* --------------------------------------------------------------------------
   /business — self-serve Business plans + company verification
   -------------------------------------------------------------------------- */

.biz-price-card {
  max-width: 560px;
  margin: 40px auto 0;
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.biz-seats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.biz-seats-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.biz-seats-name {
  font-weight: 700;
  font-size: 17px;
}

.biz-seats-min {
  font-size: 13px;
  color: var(--ink-3);
}

.biz-stepper {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.biz-step-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.biz-step-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.biz-step-btn:disabled {
  opacity: 0.4;
  cursor: default;
}

.biz-seats-num {
  min-width: 48px;
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.biz-total {
  text-align: center;
  padding: 6px 0;
}

.biz-total-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.biz-total-amount {
  font-size: clamp(44px, 7vw, 58px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.biz-total-period {
  font-size: 16px;
  color: var(--ink-2);
}

.biz-total-note {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-2);
}

.biz-total-save {
  margin-top: 2px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ok);
}

.biz-card-note {
  font-size: 13px;
  color: var(--ink-3);
  text-align: center;
}

/* --- verification form ------------------------------------------- */

.biz-form {
  max-width: 620px;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.biz-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.biz-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.biz-field label {
  font-size: 14px;
  font-weight: 650;
  color: var(--ink);
}

.biz-optional {
  font-weight: 450;
  color: var(--ink-3);
  font-size: 12.5px;
}

.biz-field input,
.biz-field select {
  width: 100%;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.biz-field input:focus,
.biz-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(156, 107, 63, 0.18);
}

.biz-field input::placeholder {
  color: var(--ink-3);
}

.biz-hint {
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.5;
}

.biz-submit {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}

.biz-submit-note {
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.55;
}

.biz-form-error {
  color: var(--danger);
  font-size: 14px;
  font-weight: 550;
}

/* --- status panel -------------------------------------------------- */

.biz-status {
  max-width: 620px;
  margin: 0 auto 30px;
  padding: clamp(22px, 4vw, 30px);
  border-radius: var(--radius-lg);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.biz-status-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.biz-status--ok .biz-status-icon {
  background: var(--ok);
}

.biz-status--pending .biz-status-icon {
  background: #a97b3a;
}

.biz-status--info .biz-status-icon {
  background: var(--accent);
}

.biz-status--bad .biz-status-icon {
  background: var(--danger);
}

.biz-status-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.biz-status-body h3 {
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.biz-status-body > p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}

.biz-status-meta {
  font-size: 14px;
}

.biz-status-price {
  font-size: 15px;
  font-weight: 550;
  color: var(--ink);
}

.biz-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  background: var(--ok);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  box-shadow: 0 1px 3px rgba(62, 124, 79, 0.35);
}

.biz-badge svg {
  width: 14px;
  height: 14px;
}

.biz-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 4px 0 0;
}

.biz-checks li {
  font-size: 14px;
  color: var(--ink-2);
}

.biz-checks li.ok {
  color: var(--ok);
}

.biz-checks li.no {
  color: var(--danger);
}

.biz-issues {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 4px 0 0;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(180, 58, 43, 0.07);
  border: 1px solid rgba(180, 58, 43, 0.2);
}

.biz-issues li {
  font-size: 14px;
  color: var(--danger);
}

.biz-status-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

@media (max-width: 640px) {
  .biz-row {
    grid-template-columns: 1fr;
  }

  .biz-status {
    flex-direction: column;
  }
}
