/* Reply marketing — sales landing (UA) */
:root {
  --ink: #1a1412;
  --ink-soft: #5c504a;
  --paper: #fff8f4;
  --paper-2: #ffe8de;
  --coral: #ff6b57;
  --coral-deep: #e84f3a;
  --peach: #ffb49a;
  --peach-soft: #ffd5c4;
  --line: rgba(26, 20, 18, 0.1);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(232, 79, 58, 0.12);
  --radius: 20px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Motion */
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes soft-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.reveal { animation: rise 0.7s ease both; }
.reveal-delay { animation-delay: 0.12s; }
.reveal-delay-2 { animation-delay: 0.24s; }

/* Shell */
.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

/* Nav */
.topnav {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.topnav.is-solid { border-bottom-color: var(--line); }
.topnav__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 56px; gap: 16px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; font-weight: 700;
}
.brand img { width: 40px; height: 40px; border-radius: 12px; }
.brand span {
  font-family: var(--font-display);
  font-size: 1.2rem; letter-spacing: -0.03em;
}
.nav-links {
  display: none; gap: 22px; align-items: center;
  font-size: 0.92rem; font-weight: 600; color: var(--ink-soft);
}
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--ink); }
@media (min-width: 860px) { .nav-links { display: flex; } }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 20px; border-radius: 999px;
  font: inherit; font-weight: 600; font-size: 0.9rem;
  letter-spacing: -0.01em; line-height: 1;
  text-decoration: none; border: 0; cursor: pointer;
  box-sizing: border-box;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }
.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--coral-deep));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(232, 79, 58, 0.22);
}
.btn-primary:hover {
  box-shadow: 0 10px 24px rgba(232, 79, 58, 0.28);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  border: 1px solid rgba(26, 20, 18, 0.12);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}
.btn-ghost:hover {
  border-color: rgba(26, 20, 18, 0.2);
  background: rgba(255, 255, 255, 0.92);
}
.btn-dark { background: var(--ink); color: var(--white); }

/* Hero — one composition */
.hero {
  position: relative;
  min-height: min(94vh, 900px);
  display: grid; align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 70% 55% at 80% 20%, rgba(255, 180, 154, 0.55), transparent 55%),
    radial-gradient(ellipse 50% 45% at 10% 90%, rgba(255, 107, 87, 0.18), transparent 50%),
    linear-gradient(165deg, #fff6f1 0%, #ffe6d8 42%, #fff8f4 100%);
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b57' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.9;
}
.hero__content {
  padding: 48px 0 64px;
  display: grid;
  gap: 36px;
  align-items: end;
}
@media (min-width: 900px) {
  .hero__content {
    grid-template-columns: 0.92fr 1.08fr;
    padding: 56px 0 72px;
    align-items: center;
  }
}
.hero__copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 14px 0 18px;
  max-width: 11ch;
}
.hero__brand-row {
  display: flex; align-items: center; gap: 14px;
}
.hero__brand-row img {
  width: clamp(56px, 8vw, 72px);
  height: clamp(56px, 8vw, 72px);
  border-radius: 18px;
  animation: soft-float 5s ease-in-out infinite;
}
.hero__brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}
.hero__lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 36ch;
  margin: 0 0 28px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.hero__trust span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
}

/* Hero demo stage — product-is-the-demo */
.hero__visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.hero-stage {
  position: relative;
  width: min(100%, 460px);
  height: 520px;
  margin: 0 auto;
}
.hero-stage__glow {
  position: absolute;
  inset: 8% 6%;
  border-radius: 40px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,180,154,0.55), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255,107,87,0.28), transparent 50%);
  filter: blur(8px);
  z-index: 0;
  animation: glow-pulse 5s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

.hero-chat {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-1deg);
  width: min(100%, 300px);
  z-index: 5;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow:
    0 40px 80px rgba(232, 79, 58, 0.18),
    0 12px 24px rgba(26, 20, 18, 0.06);
  overflow: hidden;
}
.hero-chat__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fff8f4);
}
.hero-chat__bar img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
}
.hero-chat__bar strong {
  display: block;
  font-size: 0.88rem;
  letter-spacing: -0.02em;
}
.hero-chat__bar span {
  display: block;
  font-size: 0.7rem;
  color: var(--coral-deep);
  font-weight: 700;
}
.hero-chat__live {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a9f5c;
  background: #e8f7ef;
  padding: 4px 8px;
  border-radius: 999px;
  position: relative;
}
.hero-chat__live::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1a9f5c;
  margin-right: 5px;
  vertical-align: middle;
  animation: live-blink 1.6s ease-in-out infinite;
}
@keyframes live-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.hero-chat__thread {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 14px 12px 16px;
  min-height: 280px;
  background:
    radial-gradient(ellipse 80% 40% at 100% 0%, rgba(255,180,154,0.18), transparent),
    #faf7f5;
}
.bubble {
  max-width: 88%;
  padding: 9px 12px;
  border-radius: 16px;
  font-size: 0.84rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.bubble.is-in {
  opacity: 1;
  transform: none;
}
.bubble--client {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--coral), var(--coral-deep));
  color: #fff;
  border-bottom-right-radius: 5px;
}
.bubble--bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  border-bottom-left-radius: 5px;
  box-shadow: 0 6px 16px rgba(26,20,18,0.04);
}
.bubble--bot small {
  display: block;
  margin-bottom: 3px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral-deep);
}
.bubble--meta {
  align-self: center;
  max-width: none;
  padding: 0;
  font-size: 0.68rem;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  box-shadow: none;
}
.typing {
  align-self: flex-start;
  display: none;
  align-items: center;
  gap: 5px;
  padding: 11px 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  border-bottom-left-radius: 5px;
}
.typing.is-on { display: inline-flex; }
.typing i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--peach);
  animation: typing-dot 1s infinite ease-in-out;
}
.typing i:nth-child(2) { animation-delay: 0.15s; }
.typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing-dot {
  0%, 80%, 100% { opacity: 0.3; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-3px); }
}

/* Floating proof cards */
.float-card {
  position: absolute;
  z-index: 6;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(26, 20, 18, 0.1);
  padding: 12px 14px;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}
.float-card.is-on {
  opacity: 1;
  transform: none;
}
.float-card--product {
  top: 18px;
  left: 0;
  width: 168px;
  animation: float-y 5.5s ease-in-out infinite;
}
.float-card--speed {
  top: 36px;
  right: 0;
  width: 148px;
  animation: float-y 6.2s ease-in-out infinite;
  animation-delay: 0.4s;
}
.float-card--order {
  bottom: 78px;
  right: -4px;
  width: 190px;
  animation: float-y 5.8s ease-in-out infinite;
  animation-delay: 0.8s;
}
.float-card--ttn {
  bottom: 42px;
  left: -2px;
  width: 176px;
  animation: float-y 6.5s ease-in-out infinite;
  animation-delay: 1.1s;
}
.float-card--kpi {
  top: 46%;
  left: -18px;
  width: 132px;
  z-index: 4;
  animation: float-y 7s ease-in-out infinite;
  animation-delay: 0.2s;
}
@keyframes float-y {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}
.float-card__label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.float-card__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
}
.float-card__sub {
  margin: 3px 0 0;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.float-card__row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.float-card__swatch {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background:
    linear-gradient(145deg, #ffd0c0, #ff7a6e 60%, #e84f3a);
  flex-shrink: 0;
}
.float-card__value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--coral-deep);
  line-height: 1;
}
.float-card__ok {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #146c43;
  margin-top: 6px;
}
.float-card__ok::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1a9f5c;
}
.orbit-chip {
  position: absolute;
  z-index: 3;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  color: var(--ink);
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(26,20,18,0.06);
}
.orbit-chip--a {
  top: 8px;
  left: 42%;
  animation: orbit-a 9s ease-in-out infinite;
}
.orbit-chip--b {
  bottom: 12px;
  right: 18%;
  animation: orbit-b 10s ease-in-out infinite;
}
@keyframes orbit-a {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, 6px); }
}
@keyframes orbit-b {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-8px, -6px); }
}

@media (max-width: 899px) {
  .hero__visual { min-height: auto; padding-bottom: 8px; }
  .hero-stage {
    height: auto;
    min-height: 0;
    padding: 56px 0 48px;
  }
  .hero-stage__glow { inset: 12% 4%; }
  .hero-chat {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 auto;
    width: min(100%, 320px);
  }
  .float-card--product { top: 0; left: 0; }
  .float-card--speed { top: 0; right: 0; }
  .float-card--order { bottom: 8px; right: 0; }
  .float-card--ttn { bottom: 8px; left: 0; }
  .float-card--kpi { display: none; }
  .orbit-chip { display: none; }
}
@media (max-width: 520px) {
  .float-card--product,
  .float-card--speed,
  .float-card--ttn { display: none; }
  .float-card--order {
    position: relative;
    bottom: auto;
    right: auto;
    width: min(100%, 320px);
    margin: 12px auto 0;
    display: block;
  }
  .hero-stage { padding: 8px 0 24px; }
}

/* Sections */
section { padding: 88px 0; }
.section-kicker {
  display: inline-block;
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0 0 14px;
  max-width: 16ch;
}
.section-lead {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 48ch;
  margin: 0 0 36px;
}

/* Audience */
.audience {
  background: var(--white);
  border-block: 1px solid var(--line);
}
.audience-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0;
}
.audience-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.audience-list li:last-child { border-bottom: 1px solid var(--line); }
.audience-list strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 4px;
}
.audience-list p { margin: 0; color: var(--ink-soft); }
.audience-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--coral);
  min-width: 2ch;
}

/* AI Manager big plus */
.ai-plus {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #1a1412 0%, #2a1c18 55%, #3a221c 100%);
  color: #fff8f4;
}
.ai-plus .section-kicker { color: var(--peach); }
.ai-plus .section-lead { color: rgba(255, 248, 244, 0.72); }
.ai-plus__grid {
  display: grid; gap: 28px;
}
@media (min-width: 860px) {
  .ai-plus__grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
}
.ai-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.ai-points li {
  display: grid; grid-template-columns: 28px 1fr; gap: 12px;
  align-items: start;
  font-size: 1.02rem;
}
.ai-points li::before {
  content: "✦";
  color: var(--peach);
  font-size: 1rem;
  line-height: 1.5;
}
.ai-badge {
  border: 1px solid rgba(255, 180, 154, 0.35);
  border-radius: 24px;
  padding: 28px 26px;
  background: rgba(255, 255, 255, 0.04);
}
.ai-badge h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}
.ai-badge p { margin: 0; color: rgba(255, 248, 244, 0.7); }

/* How */
.steps {
  counter-reset: step;
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 20px;
}
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
.steps li {
  position: relative;
  padding-top: 8px;
}
.steps li::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--peach);
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.steps h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.steps p { margin: 0; color: var(--ink-soft); }

/* Features — editorial rows, not card grid */
.features { background: var(--white); border-block: 1px solid var(--line); }
.feature-row {
  display: grid; gap: 12px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.feature-row:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 800px) {
  .feature-row {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: baseline;
  }
}
.feature-row h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  margin: 0;
}
.feature-row p { margin: 0; color: var(--ink-soft); font-size: 1.05rem; }

/* Growth */
.growth-note {
  display: grid; gap: 18px;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, var(--paper-2), #fff);
  border: 1px solid var(--line);
}
.growth-note h3 {
  font-family: var(--font-display);
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}
.growth-note p { margin: 0; color: var(--ink-soft); }

/* FAQ SEO */
.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--coral); font-size: 1.3rem; }
.faq details[open] summary::after { content: "–"; }
.faq details p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  max-width: 62ch;
}

/* CTA band */
.cta-band {
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(255, 180, 154, 0.45), transparent),
    linear-gradient(160deg, #fff 0%, #ffe8de 100%);
  border-block: 1px solid var(--line);
}
.cta-band__inner {
  display: grid; gap: 28px;
}
@media (min-width: 860px) {
  .cta-band__inner { grid-template-columns: 1fr 1fr; align-items: start; }
}
.lead-form {
  display: grid; gap: 12px;
}
.lead-form label {
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft);
}
.lead-form input, .lead-form textarea {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0 16px;
  font: inherit;
  color: var(--ink);
  appearance: none;
  -webkit-appearance: none;
}
.lead-form textarea { min-height: 96px; padding: 14px 16px; resize: vertical; }
.lead-form input:focus, .lead-form textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 107, 87, 0.15);
}
.form-flash {
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.form-flash.ok { background: #e8f7ef; color: #146c43; }
.form-flash.err { background: #fde8e6; color: #b42318; }

/* Footer */
.site-footer {
  padding: 48px 0 36px;
  background: var(--ink);
  color: rgba(255, 248, 244, 0.72);
  font-size: 0.92rem;
}
.site-footer a { color: #fff8f4; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-grid {
  display: grid; gap: 28px;
  margin-bottom: 32px;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand {
  display: flex; align-items: center; gap: 12px;
  color: #fff8f4;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.footer-brand img { width: 36px; height: 36px; border-radius: 10px; }
.footer-col h4 {
  margin: 0 0 12px;
  color: #fff8f4;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between;
}

@media (max-width: 640px) {
  section { padding: 56px 0; }
}

/* Base mobile nav helpers (details in reply-landing-mobile.css) */
.topnav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.topnav__actions .btn {
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.84rem;
  font-weight: 600;
}
.topnav__actions .btn-primary {
  box-shadow: 0 6px 16px rgba(232, 79, 58, 0.2);
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle__bars {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
}
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }
.topnav.is-open .nav-toggle__bars { background: transparent; }
.topnav.is-open .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.topnav.is-open .nav-toggle__bars::after { top: 0; transform: rotate(-45deg); }
.nav-drawer { display: none; }

/* Sticky header offset for in-page anchors */
.audience,
.ai-plus,
.features,
.faq,
.cta-band {
  scroll-margin-top: 80px;
}

/* Lite / reduced-motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-delay, .reveal-delay-2 { animation: none !important; opacity: 1 !important; transform: none !important; }
  * { scroll-behavior: auto !important; }
}

html.lite .topnav,
html.lite .scene-rail,
html.lite .dash-peek {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
html.lite .topnav { background: var(--paper); }
html.lite .hero-stage__glow,
html.lite .dash-peek,
html.lite .hero__bg::before,
html.lite .hero__bg::after {
  display: none !important;
}
html.lite .float-card,
html.lite .dash-peek,
html.lite .hero-stage__glow,
html.lite .hero-avatars i,
html.lite .hero-chat__live::before {
  animation: none !important;
}
html.lite .hero-stage { transform: none !important; transform-style: flat !important; }
html.lite .btn-primary { box-shadow: 0 4px 12px rgba(232, 79, 58, 0.18); }
html.lite .reveal,
html.lite .reveal-delay,
html.lite .reveal-delay-2 {
  animation: none !important;
  opacity: 1;
  transform: none;
}
html.lite .phone {
  box-shadow: 0 16px 36px rgba(26, 20, 18, 0.18);
}
@media (max-width: 979px) {
  html.lite .float-card--product,
  html.lite .float-card--speed,
  html.lite .float-card--ttn,
  html.lite .float-card--order {
    display: none !important;
  }
}

