:root {
  --ink: #101713;
  --muted: #66716b;
  --line: #dfe4e0;
  --paper: #f4f3f1;
  --white: #fff;
  --forest: #11382a;
  --forest-2: #1a4c39;
  --lime: #dffc2f;
  --mint: #eaf2ec;
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
.ph { font-size: 18px; }

/* —— Top announcement marquee (Airtel · Kunal Shah) —— */
.announce-banner {
  --announce-h: 38px;
  background:
    linear-gradient(
      105deg,
      #3b0f6e 0%,
      #5b21b6 28%,
      #7c3aed 52%,
      #a78bfa 68%,
      #6d28d9 82%,
      #4c1d95 100%
    );
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 4px 18px rgba(76, 29, 149, 0.22);
  color: #f5f0ff;
  height: var(--announce-h);
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 40;
}
.announce-banner::before,
.announce-banner::after {
  content: "";
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 72px;
  z-index: 2;
}
.announce-banner::before {
  background: linear-gradient(90deg, rgba(59, 15, 110, 0.95), transparent);
  left: 0;
}
.announce-banner::after {
  background: linear-gradient(270deg, rgba(76, 29, 149, 0.95), transparent);
  right: 0;
}
/* Seamless infinite marquee: two equal strips, loop on -50% forever */
.announce-track {
  align-items: center;
  animation: announce-slide 28s linear infinite;
  animation-iteration-count: infinite;
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  width: max-content;
  will-change: transform;
}
.announce-group {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-shrink: 0;
  gap: 0;
  height: 100%;
  /* Full viewport minimum → seamless when content is short */
  min-width: max(100vw, max-content);
}
.announce-item {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 12.5px;
  font-weight: 550;
  gap: 8px;
  letter-spacing: 0.02em;
  padding: 0 36px;
  white-space: nowrap;
}
.announce-item .ph {
  color: #e9d5ff;
  font-size: 15px;
  filter: drop-shadow(0 0 6px rgba(233, 213, 255, 0.55));
}
.announce-item strong {
  color: #fff;
  font-weight: 750;
  letter-spacing: 0.01em;
}
.announce-dot {
  background: radial-gradient(circle, #f0abfc 0%, #c084fc 45%, transparent 70%);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(240, 171, 252, 0.65);
  display: inline-block;
  flex: 0 0 auto;
  height: 5px;
  opacity: 0.9;
  width: 5px;
}
@keyframes announce-slide {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .announce-track {
    animation: none;
    justify-content: center;
    transform: none;
    width: 100%;
  }
  .announce-group { min-width: 0; justify-content: center; }
  .announce-group[aria-hidden="true"] { display: none; }
  .announce-item { padding: 0 14px; font-size: 12px; flex: 0 1 auto; }
}

.site-header {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: auto 1fr auto;
  height: 76px;
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 26px;
}
.wordmark {
  align-items: center;
  display: inline-flex;
  font-size: 21px;
  font-weight: 750;
  gap: 9px;
  letter-spacing: -0.6px;
}
.logo-mark-img {
  border-radius: 10px;
  display: block;
  flex: 0 0 auto;
  height: 36px;
  width: 36px;
}
.logo-mark {
  align-items: center;
  background: var(--lime);
  border-radius: 10px;
  color: var(--forest);
  display: inline-flex;
  height: 35px;
  justify-content: center;
  width: 35px;
}
.logo-mark .ph { font-size: 23px; }
.site-nav {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.site-nav a {
  color: #313833;
  font-size: 14px;
}
.site-nav a:hover { color: var(--forest-2); }
.nav-actions { display: flex; gap: 9px; }
.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 650;
  gap: 8px;
  height: 44px;
  justify-content: center;
  padding: 0 18px;
  transition: 160ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-dark { background: #161a18; color: white; }
.button-lime { background: var(--lime); color: #11150f; }
.button-outline { background: transparent; border-color: #aeb6b1; }
.button-ghost { background: transparent; }
.full { width: 100%; }
.menu-button {
  background: transparent;
  border: 0;
  display: none;
}

.hero {
  background: white;
  border-radius: 18px;
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 1fr) 330px;
  margin: 0 auto;
  max-width: 1392px;
  min-height: 590px;
  overflow: hidden;
  padding: 92px 74px 80px;
}
.hero-copy { align-self: center; max-width: 850px; }
.kicker {
  align-items: center;
  color: #557062;
  display: inline-flex;
  font-size: 11px;
  font-weight: 750;
  gap: 7px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.kicker .ph { font-size: 14px; }
.hero h1,
.section-heading h2,
.workflow-intro h2,
.pricing-copy h2,
.trust-section h2,
.faq-heading h2,
.final-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.hero h1 {
  font-size: clamp(54px, 6vw, 88px);
  letter-spacing: -4.8px;
  line-height: 0.94;
  margin: 28px 0 26px;
  max-width: 950px;
}
.hero-copy > p {
  color: #53605a;
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
  max-width: 700px;
}
.hero-actions { display: flex; gap: 10px; margin-top: 32px; }
.hero-proof {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}
.hero-proof span {
  align-items: center;
  color: #65716b;
  display: inline-flex;
  font-size: 12px;
  gap: 6px;
}
.hero-proof .ph { color: var(--forest-2); font-size: 16px; }
.hero-aside {
  align-self: stretch;
  background: #151a17;
  border-radius: 16px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}
.aside-label {
  color: #a5b2ab;
  font-size: 11px;
  letter-spacing: 1px;
  margin: 0 0 auto;
  text-transform: uppercase;
}
.hero-aside > strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 78px;
  font-weight: 400;
  letter-spacing: -4px;
}
.hero-aside > span { color: #b7c1bc; font-size: 13px; line-height: 1.5; }
.hero-aside dl { border-top: 1px solid #354139; margin: 28px 0 0; padding-top: 16px; }
.hero-aside dl div { display: flex; justify-content: space-between; padding: 7px 0; }
.hero-aside dt { color: #9ba7a1; font-size: 11px; }
.hero-aside dd { font-size: 12px; font-weight: 650; margin: 0; }

.category-strip {
  align-items: center;
  display: grid;
  gap: 30px;
  grid-template-columns: 200px 1fr;
  margin: 0 auto;
  max-width: 1280px;
  padding: 43px 0;
}
.category-strip p { color: #78817c; font-size: 11px; margin: 0; text-transform: uppercase; }
.coverage-icons {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, 1fr);
}
.coverage-icons span {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--forest-2);
  display: flex;
  height: 72px;
  justify-content: center;
  transition: 160ms ease;
}
.coverage-icons span:hover {
  background: var(--lime);
  border-color: #c5dc21;
  transform: translateY(-2px);
}
.coverage-icons .ph { font-size: 28px; }

.brand-proof {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  margin: 0 auto 24px;
  max-width: 1392px;
  padding: 34px;
}

/* —— India stealth pilot · matches category-strip / white card language —— */
.pilot-campaign {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  margin: 0 auto 24px;
  max-width: 1392px;
  padding: 40px 42px 36px;
}
.pilot-campaign-intro {
  margin-bottom: 28px;
  max-width: 640px;
}
.pilot-campaign-intro .kicker {
  color: #557062;
}
.pilot-campaign-intro h2 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 400;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin: 10px 0 12px;
}
.pilot-campaign-intro p {
  color: #66716b;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  max-width: 520px;
}

/* Same card language as .coverage-icons */
.hero-brand-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-brand-grid li {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  height: 88px;
  justify-content: center;
  min-width: 0;
  padding: 16px 14px;
  transition: 160ms ease;
}
.hero-brand-grid li:hover {
  background: var(--mint);
  border-color: #cbd8cf;
  transform: translateY(-2px);
}
.hero-brand-grid img {
  display: block;
  height: auto;
  max-height: 44px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}
.hero-brand-grid li:nth-child(3) img {
  border-radius: 10px;
  max-height: 48px;
}
.brand-logo-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}
.brand-logo-grid li {
  align-items: center;
  background: #f6f7f4;
  border: 1px solid #e7e9e5;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  min-height: 112px;
  min-width: 0;
  padding: 12px;
  transition: 160ms ease;
}
.brand-logo-grid li:hover {
  background: var(--mint);
  border-color: #cbd8cf;
  transform: translateY(-2px);
}
.brand-logo-grid img {
  display: block;
  height: 72px;
  object-fit: contain;
  width: 72px;
}

.product-section,
.workflow-section,
.value-section,
.pricing-section,
.trust-section,
.faq-section {
  margin: 0 auto;
  max-width: 1392px;
  padding: 110px 74px;
}
.product-section { background: #161a18; border-radius: 18px; color: white; }
.section-heading { margin: 0 auto 50px; max-width: 780px; text-align: center; }
.section-heading h2,
.workflow-intro h2,
.pricing-copy h2,
.trust-section h2,
.faq-heading h2,
.final-cta h2 {
  font-size: clamp(40px, 4.5vw, 62px);
  letter-spacing: -2.8px;
  line-height: 1;
  margin: 15px 0 18px;
}
.section-heading p,
.workflow-intro p,
.pricing-copy > p,
.faq-heading > p {
  color: #69736d;
  font-size: 16px;
  line-height: 1.65;
}
.product-section .section-heading p { color: #abb5af; }
.product-section .kicker { color: #a5b4ac; }
.product-frame {
  background: #e8e8e5;
  border-radius: 14px;
  overflow: hidden;
  padding: 12px;
}
.frame-bar {
  align-items: center;
  display: flex;
  gap: 5px;
  height: 26px;
  padding: 0 5px;
}
.frame-bar span { background: #afb3b0; border-radius: 50%; height: 7px; width: 7px; }
.frame-bar small { color: #777e79; font-size: 9px; margin-left: 8px; }
.product-frame img { border-radius: 8px; display: block; height: auto; width: 100%; }

.workflow-section {
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
}
.workflow-intro { padding-top: 10px; }
.workflow-intro p { max-width: 500px; }
.text-link {
  align-items: center;
  border-bottom: 1px solid #25312b;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  margin-top: 18px;
  padding-bottom: 5px;
}
.workflow-list { list-style: none; margin: 0; padding: 0; }
.workflow-list li {
  border-top: 1px solid #cbd1cd;
  display: grid;
  gap: 24px;
  grid-template-columns: 44px 1fr;
  padding: 28px 0 31px;
}
.workflow-list li > span { color: #909994; font-size: 11px; }
.workflow-list .ph { color: var(--forest-2); font-size: 24px; }
.workflow-list h3 { font-size: 18px; margin: 15px 0 6px; }
.workflow-list p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0; }

.value-section { background: white; border-radius: 18px; }
.section-heading.compact { max-width: 650px; }
.value-grid {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.value-grid article { border-right: 1px solid var(--line); min-height: 240px; padding: 30px 25px; }
.value-grid article:last-child { border-right: 0; }
.value-grid .ph { color: var(--forest-2); font-size: 27px; }
.value-grid h3 { font-size: 16px; margin: 55px 0 9px; }
.value-grid p { color: var(--muted); font-size: 13px; line-height: 1.6; margin: 0; }

.pricing-section {
  display: grid;
  gap: 70px;
  grid-template-columns: 350px 1fr;
}
.pricing-note {
  align-items: flex-start;
  border-top: 1px solid #cbd1cd;
  display: flex;
  gap: 10px;
  margin-top: 30px;
  padding-top: 22px;
}
.pricing-note .ph { color: var(--forest-2); font-size: 22px; }
.pricing-note span { color: var(--muted); font-size: 12px; line-height: 1.5; }
.pricing-note strong { color: var(--ink); display: block; }
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.price-grid article {
  background: white;
  border: 1px solid #ccd2ce;
  min-height: 290px;
  padding: 28px;
  position: relative;
}
.price-grid article:nth-child(1) { border-radius: 14px 0 0; }
.price-grid article:nth-child(2) { border-radius: 0 14px 0 0; }
.price-grid article:nth-child(3) { border-radius: 0 0 0 14px; }
.price-grid article:nth-child(4) { border-radius: 0 0 14px; }
.price-grid article.popular { background: #fbfee8; border-color: #b6c92b; }
.popular-label {
  background: var(--lime);
  border-radius: 5px;
  font-size: 9px;
  font-weight: 800;
  padding: 5px 8px;
  position: absolute;
  right: 20px;
  text-transform: uppercase;
  top: 20px;
}
.plan-name { color: #66716b; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.price-grid h3 { font-size: 27px; margin: 35px 0 7px; }
.price-grid h3 small { color: var(--muted); font-size: 12px; font-weight: 500; }
.price-grid article > strong { display: block; font-family: Georgia, serif; font-size: 31px; font-weight: 400; }
.price-grid article > p { color: var(--muted); font-size: 11px; margin: 7px 0 28px; }

/* Dedicated /pricing page */
.pricing-page {
  margin: 0 auto;
  max-width: 1280px;
  padding: 36px 32px 0;
}
.pricing-hero {
  max-width: 720px;
  padding: 40px 0 48px;
}
.pricing-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 500;
  letter-spacing: -1.8px;
  line-height: 1.08;
  margin: 14px 0 18px;
}
.pricing-hero > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  max-width: 560px;
}
.pricing-section-solo {
  display: block;
  margin-bottom: 80px;
}
.price-grid-page {
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.price-grid-five {
  /* Prefer roomy cards over cramming five columns */
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.founding-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 16px 0 0;
  max-width: 560px;
}
.founding-note strong { color: var(--ink); }
.price-grid-page article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px !important;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 !important;
  min-height: 0;
  padding: 28px 26px 26px;
  position: relative;
}
.price-grid-page article.popular {
  padding-top: 40px;
}
.price-grid-page article + article {
  margin-left: 0;
}
.price-grid-page .plan-name {
  font-size: 12px;
  letter-spacing: 0.06em;
}
.price-grid-page h3 {
  font-size: 28px;
  margin: 18px 0 8px;
}
.price-grid-page article > strong {
  font-size: 34px;
  letter-spacing: -0.6px;
  margin-top: 4px;
}
.price-grid-page article > p {
  font-size: 13px;
  margin: 8px 0 20px;
}
.price-grid-page .popular-label {
  font-size: 10px;
  padding: 6px 10px;
  right: 16px;
  top: 16px;
}
.price-grid-page .button {
  margin-top: auto;
}
.plan-bullets {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.plan-bullets li {
  border-top: 1px solid var(--line);
  padding: 10px 0;
}
.plan-bullets li:first-child { border-top: 0; padding-top: 0; }
.pricing-rules {
  background: #dfe9e2;
  border-radius: 18px;
  margin-bottom: 72px;
  padding: 42px 36px 48px;
}
.pricing-rules .trust-list {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 48px;
}
.pricing-compare {
  display: grid;
  gap: 48px;
  grid-template-columns: 320px 1fr;
  margin-bottom: 40px;
  padding-bottom: 20px;
}
.compare-table-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.compare-table {
  border-collapse: collapse;
  width: 100%;
}
.compare-table th,
.compare-table td {
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  padding: 16px 18px;
  text-align: left;
}
.compare-table th {
  background: #f0f2ef;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.compare-table tr:last-child td { border-bottom: 0; }
.compare-popular { background: #fbfee8; }
.mini-pill {
  background: var(--lime);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 800;
  margin-left: 8px;
  padding: 3px 6px;
  text-transform: uppercase;
}
.site-nav a[aria-current="page"] {
  color: var(--forest);
  font-weight: 700;
}

@media (max-width: 1200px) {
  .price-grid-five { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-brand-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1100px) {
  .price-grid-page { grid-template-columns: repeat(2, 1fr); }
  .price-grid-five { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-rules .trust-list { grid-template-columns: repeat(2, 1fr); }
  .pricing-compare { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .price-grid-page { grid-template-columns: 1fr; }
  .price-grid-page article + article { margin-left: 0; }
  .pricing-rules { padding: 28px 20px; }
  .pricing-rules .trust-list { grid-template-columns: 1fr; }
  .pricing-hero { padding: 18px 0 36px; }
}

.trust-section { background: #dfe9e2; border-radius: 18px; }
.trust-section > div:first-child { max-width: 630px; }
.trust-list { display: grid; gap: 38px; grid-template-columns: repeat(3, 1fr); margin-top: 70px; }
.trust-list article { border-top: 1px solid #9eb0a4; padding-top: 20px; }
.trust-list .ph { color: var(--forest); font-size: 25px; }
.trust-list h3 { font-size: 16px; margin: 38px 0 8px; }
.trust-list p { color: #56665d; font-size: 13px; line-height: 1.6; }

.faq-section { display: grid; gap: 90px; grid-template-columns: 390px 1fr; }
.faq-heading .button { margin-top: 20px; }
.faq-list { border-top: 1px solid #bfc6c2; }
.faq-list details { border-bottom: 1px solid #bfc6c2; }
.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 15px;
  font-weight: 650;
  justify-content: space-between;
  list-style: none;
  padding: 22px 0;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details[open] summary .ph { transform: rotate(45deg); }
.faq-list summary .ph { transition: transform 160ms ease; }
.faq-list details p { color: var(--muted); font-size: 13px; line-height: 1.7; margin: -5px 40px 22px 0; }

.final-cta {
  background: #151a17;
  border-radius: 18px;
  color: white;
  margin: 0 auto 24px;
  max-width: 1392px;
  padding: 100px 70px;
  text-align: center;
}
.final-cta .kicker { color: #a9b6af; }
.final-cta p { color: #aeb8b2; font-size: 16px; margin: 0 auto 30px; max-width: 620px; }

footer {
  background: #0d2119;
  color: white;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1.2fr;
  margin-top: 80px;
  padding: 70px max(40px, calc((100vw - 1280px) / 2));
}
footer > div:first-child p { color: #91a39a; font-size: 13px; margin-top: 16px; }
.wordmark.inverted .logo-mark { color: var(--forest); }
.wordmark.inverted .logo-mark-img { box-shadow: 0 0 0 1px rgba(223, 252, 47, 0.25); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); }
.footer-links div { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong { font-size: 11px; margin-bottom: 8px; text-transform: uppercase; }
.footer-links a { color: #aebbb5; font-size: 12px; }
footer > small { color: #71877c; font-size: 10px; grid-column: 1 / -1; }

@media (max-width: 1000px) {
  .site-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero { grid-template-columns: 1fr; padding: 70px 45px; }
  .hero-aside { min-height: 330px; }
  .category-strip { padding-left: 25px; padding-right: 25px; }
  .brand-proof { margin-left: 24px; margin-right: 24px; padding: 24px; }
  .pilot-campaign { margin-left: 24px; margin-right: 24px; padding: 28px 24px; }
  .hero-brand-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .brand-logo-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .workflow-section, .pricing-section, .faq-section { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid article:nth-child(2) { border-right: 0; }
  .trust-list { gap: 24px; }
}

@media (max-width: 720px) {
  .announce-banner { --announce-h: 34px; }
  .announce-item { font-size: 11.5px; padding: 0 18px; }
  .announce-item .ph { font-size: 13px; }
  .site-header { height: 66px; padding: 0 16px; }
  .nav-actions { display: none; }
  .menu-button { display: block; }
  .site-nav.open {
    background: white;
    border: 1px solid var(--line);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0;
    left: 14px;
    padding: 8px;
    position: absolute;
    right: 14px;
    top: 62px;
    z-index: 5;
  }
  .site-nav.open a { padding: 11px; }
  .hero { border-radius: 0; margin: 0; padding: 58px 24px; }
  .hero h1 { font-size: 50px; letter-spacing: -3px; }
  .hero-copy > p { font-size: 16px; }
  .hero-actions, .hero-proof { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .category-strip { grid-template-columns: 1fr; overflow: hidden; }
  .coverage-icons { grid-template-columns: repeat(6, 56px); overflow-x: auto; }
  .coverage-icons span { height: 56px; }
  .coverage-icons .ph { font-size: 23px; }
  .brand-proof { border-radius: 0; margin: 0; padding: 22px; }
  .pilot-campaign { border-radius: 0; margin: 0; padding: 24px 18px; }
  .hero-brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-brand-grid li { height: 76px; }
  .hero-brand-grid li:last-child { grid-column: 1 / -1; }
  .brand-logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .brand-logo-grid li { min-height: 96px; padding: 9px; }
  .brand-logo-grid img { height: 64px; width: 64px; }
  .product-section, .workflow-section, .value-section, .pricing-section, .trust-section, .faq-section {
    border-radius: 0;
    padding: 75px 22px;
  }
  .product-frame { margin-left: -12px; margin-right: -12px; overflow-x: auto; }
  .product-frame img { min-width: 900px; }
  .section-heading h2, .workflow-intro h2, .pricing-copy h2, .trust-section h2, .faq-heading h2, .final-cta h2 {
    font-size: 42px;
    letter-spacing: -2px;
  }
  .value-grid, .price-grid, .trust-list { grid-template-columns: 1fr; }
  .value-grid article { border-bottom: 1px solid var(--line); border-right: 0; }
  .price-grid article { border-radius: 0 !important; }
  .price-grid article:first-child { border-radius: 14px 14px 0 0 !important; }
  .price-grid article:last-child { border-radius: 0 0 14px 14px !important; }
  .final-cta { border-radius: 0; margin-bottom: 0; padding: 80px 24px; }
  footer { grid-template-columns: 1fr; padding: 55px 24px; }
}
