:root {
  --bg: #07111f;
  --bg-soft: #0b1830;
  --panel: rgba(10, 22, 42, 0.78);
  --panel-strong: rgba(12, 24, 46, 0.96);
  --panel-light: rgba(255, 255, 255, 0.08);
  --surface: #f4f7fb;
  --surface-strong: #ffffff;
  --text: #0d1726;
  --text-soft: #435066;
  --text-inverse: rgba(244, 247, 251, 0.86);
  --title-inverse: #f8fbff;
  --line: rgba(123, 144, 176, 0.2);
  --line-strong: rgba(123, 144, 176, 0.32);
  --primary: #0f53fa;
  --primary-soft: #5ec8ff;
  --accent: #8ee4ff;
  --success: #18c58f;
  --shadow-xl: 0 40px 120px rgba(5, 11, 20, 0.2);
  --shadow-lg: 0 30px 80px rgba(7, 17, 31, 0.18);
  --shadow-md: 0 18px 48px rgba(7, 17, 31, 0.12);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text); 
  font-family: "Circular Std", "Inter", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
  cursor: pointer;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  border-radius: 999px;
  filter: blur(80px);
}

.site-shell::before {
  top: 72px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: rgba(94, 200, 255, 0.18);
}

.site-shell::after {
  top: 420px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: rgba(15, 83, 250, 0.16);
}

.page-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  z-index: 1200;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 0 18px rgba(15, 83, 250, 0.5);
}

.container-shell {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section-shell {
  position: relative;
  padding: 108px 0;
}

.section-shell--tight {
  padding: 84px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(15, 83, 250, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 16px rgba(15, 83, 250, 0.42);
}

.section-heading h2,
.section-heading h3,
.hero-copy h1,
.cta-panel h2 {
  margin: 0;
  font-family: "Inter", "Circular Std", sans-serif;
  letter-spacing: -0.045em;
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 1.02;
}

.section-heading p,
.hero-copy p,
.hero-copy__support,
.cta-panel p {
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.75;
}

.topbar {
  position: sticky;
  inset: 0 0 auto 0;
  z-index: 1100;
  padding: 8px 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
}

.topbar.is-scrolled {
  padding: 5px 0;
  background: rgba(247, 250, 255, 0.32);
  backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 16px 48px rgba(15, 28, 55, 0.08);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(7, 17, 31, 0.7);
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.18);
}

.topbar.is-scrolled .topbar__inner {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(7, 17, 31, 0.78);
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.16);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
}

.brand-mark img {
  width: 142px;
  height: auto;
}

.topbar__nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar__nav a,
.mobile-nav a {
  color: var(--text-inverse);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.topbar.is-scrolled .topbar__nav a,
.topbar.is-scrolled .topbar__actions .button--ghost {
  color: var(--text-inverse);
}

.topbar__nav a:hover,
.mobile-nav a:hover {
  color: var(--accent);
}

.topbar.is-scrolled .topbar__nav a:hover,
.topbar.is-scrolled .topbar__actions .button--ghost:hover {
  color: var(--accent);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}

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

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #1d7dfa 55%, var(--primary-soft) 100%);
  box-shadow: 0 18px 40px rgba(15, 83, 250, 0.22);
}

.button--primary:hover {
  color: #0d1726;
  box-shadow: 0 24px 48px rgba(15, 83, 250, 0.26);
}

.button--secondary {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 83, 250, 0.12);
  box-shadow: 0 18px 34px rgba(12, 24, 46, 0.08);
}

.button--secondary:hover {
  background: #ffffff;
}

.button--ghost {
  color: var(--title-inverse);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button--block {
  width: 100%;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--title-inverse);
}

.topbar.is-scrolled .menu-toggle {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--title-inverse);
}

.mobile-nav {
  display: none;
}

.mobile-nav__vip {
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary) 0%, #1d7dfa 55%, var(--primary-soft) 100%);
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}

.mobile-nav__vip:hover {
  color: #0d1726;
}

.vip-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1120;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 12px 18px 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.88);
  color: #ffffff;
  box-shadow: 0 24px 64px rgba(7, 17, 31, 0.28);
  backdrop-filter: blur(18px) saturate(160%);
  transform: translate3d(0, 18px, 0) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.vip-fab.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.vip-fab:hover {
  color: #ffffff;
  box-shadow: 0 30px 72px rgba(7, 17, 31, 0.34);
}

.vip-fab__pulse,
.vip-fab__icon {
  flex: 0 0 auto;
}

.vip-fab__pulse {
  position: absolute;
  inset: auto auto 10px 14px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(94, 200, 255, 0.38);
  filter: blur(12px);
}

.vip-fab__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(94, 200, 255, 0.24), rgba(15, 83, 250, 0.78));
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.vip-fab__text {
  display: grid;
  gap: 2px;
  text-align: left;
}

.vip-fab__text strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.05;
}

.vip-fab__text span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.2;
}

.vip-modal {
  position: fixed;
  inset: 0;
  z-index: 1140;
  display: grid;
  place-items: center;
  padding: 24px;
}

.vip-modal[hidden] {
  display: none;
}

.vip-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(94, 200, 255, 0.14), transparent 36%),
    rgba(5, 10, 20, 0.62);
  backdrop-filter: blur(14px);
}

.vip-modal__dialog {
  position: relative;
  width: min(100%, 1040px);
  max-height: min(92vh, 860px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 255, 0.94));
  box-shadow: 0 48px 120px rgba(5, 11, 20, 0.28);
  overflow: auto;
}

.vip-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(13, 23, 38, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  box-shadow: 0 18px 40px rgba(15, 28, 55, 0.08);
}

.vip-modal__grid{
    background:
    radial-gradient(circle at top left, rgba(94, 200, 255, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(15, 83, 250, 0.06), rgba(255, 255, 255, 0)) !important;

}

.vip-modal__form-card{
  border-top: none;
}

.vip-modal__content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: stretch;
}

.vip-modal__intro {
  padding: 48px 42px;
  background: transparent !important
}

.vip-modal__intro h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.vip-modal__intro p {
  margin: 0;
  max-width: 52ch;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.8;
}

.vip-modal__highlights {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.vip-modal__highlight {
  padding: 16px 18px;
  /* border: 1px solid rgba(15, 83, 250, 0.08); */
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 44px rgba(15, 28, 55, 0.05);
}

.vip-modal__highlight strong,
.vip-form-card label {
  display: block;
}

.vip-modal__highlight strong {
  margin-bottom: 6px;
  font-size: 1rem;
}

.vip-modal__highlight span {
  color: var(--text-soft);
  line-height: 1.65;
}

.vip-form-card {
  padding: 42px;
  background: rgba(255, 255, 255, 0.82);
  border-left: 1px solid rgba(15, 83, 250, 0.08);
}

.vip-form-card form {
  display: grid;
  gap: 16px;
}

.vip-form-card__field {
  display: grid;
  gap: 8px;
}

.vip-form-card label {
  color: #223047;
  font-size: 0.88rem;
  font-weight: 700;
}

.vip-form-card input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(15, 83, 250, 0.12);
  border-radius: 16px;
  background: rgba(247, 250, 255, 0.98);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.vip-form-card input:focus {
  outline: none;
  border-color: rgba(15, 83, 250, 0.3);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(15, 83, 250, 0.08);
}

.vip-form-card__note {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.vip-form-card__status {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  line-height: 1.65;
}

.vip-form-card__status strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.vip-form-card__status.is-error {
  border-color: rgba(220, 74, 74, 0.16);
  background: rgba(255, 240, 240, 0.94);
  color: #8a1f1f;
}

.vip-form-card__status.is-success {
  border-color: rgba(24, 197, 143, 0.16);
  background: rgba(237, 255, 248, 0.96);
  color: #0f6b50;
}

.hero {
  position: relative;
  margin-top: -104px;
  padding-top: 160px;
  padding-bottom: 180px;
  color: var(--title-inverse);
  background:
    radial-gradient(circle at 15% 18%, rgba(94, 200, 255, 0.28), transparent 24%),
    radial-gradient(circle at 85% 14%, rgba(15, 83, 250, 0.3), transparent 28%),
    linear-gradient(180deg, #0b2344 0%, #0d2d58 46%, #134388 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 24%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 55%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 220px;
  background:
    linear-gradient(180deg, rgba(19, 67, 136, 0) 0%, rgba(232, 241, 251, 0.72) 62%, rgba(255, 255, 255, 0.98) 100%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 540px);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.hero-copy__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding: 10px 15px;
  border-radius: 999px;
  color: rgba(248, 251, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-copy__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-soft), var(--accent));
  box-shadow: 0 0 18px rgba(94, 200, 255, 0.6);
}

.hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(2.27rem, 3.81vw, 3.73rem);
  line-height: 0.98;
  color: #dce9ff;
  text-shadow: 0 2px 18px rgba(5, 17, 38, 0.12);
}

.hero-copy .hero-copy__lede {
  margin-top: 24px;
  max-width: 560px;
  color: #cfddfb !important;
  opacity: 1;
  font-size: clamp(1.08rem, 1.9vw, 1.25rem);
  line-height: 1.7;
  text-shadow: 0 1px 10px rgba(5, 17, 38, 0.12);
}

.hero-copy .hero-copy__support {
  margin-top: 16px;
  max-width: 540px;
  color: #cadbfd !important;
  opacity: 1;
  text-shadow: 0 1px 8px rgba(5, 17, 38, 0.1);
}

.hero-copy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
  align-items: stretch;
} 

.hero-trust__item {
  padding: 14px 14px 13px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-trust__item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--title-inverse);
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-trust__item span {
  display: block;
  color: rgba(236, 244, 255, 0.88);
  font-size: 0.82rem;
  line-height: 1.45;
}

.hero-stage {
  position: relative;
  min-height: 660px;
}

.hero-stage__glow {
  position: absolute;
  inset: 12% 6% 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(94, 200, 255, 0.3) 0%, rgba(94, 200, 255, 0.08) 28%, transparent 66%),
    radial-gradient(circle at 70% 30%, rgba(15, 83, 250, 0.36), transparent 42%);
  filter: blur(18px);
}

.browser-shell,
.device-shell,
.floating-card,
.metric-badge,
.mini-proof,
.story-panel,
.surface-card,
.quote-card,
.link-card,
.cta-panel,
.faq-item,
.footer-shell {
  box-shadow: var(--shadow-lg);
}

.browser-shell {
  position: absolute;
  top: 154px;
  left: 0;
  width: min(100%, 560px);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(20, 36, 62, 0.96) 0%, rgba(7, 17, 31, 0.96) 100%);
  overflow: hidden;
}

.browser-shell__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 2px 4px 14px;
}

.browser-shell__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.browser-shell__dot:nth-child(1) {
  background: rgba(255, 92, 92, 0.9);
}

.browser-shell__dot:nth-child(2) {
  background: rgba(255, 192, 72, 0.9);
}

.browser-shell__dot:nth-child(3) {
  background: rgba(44, 203, 112, 0.9);
}

.browser-shell__image,
.device-shell__image,
.story-screen__image {
  border-radius: 18px;
  overflow: hidden;
  background: #09101b;
}

.browser-shell__image img,
.device-shell__image img,
.story-screen__image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.device-shell {
  position: absolute;
  right: 12px;
  bottom: 18px;
  width: min(38%, 230px);
  padding: 10px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(17, 33, 61, 0.96) 0%, rgba(7, 17, 31, 0.98) 100%);
}

.device-shell__notch {
  width: 42%;
  height: 18px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.floating-card {
  position: absolute;
  max-width: 220px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
}

.floating-card strong,
.metric-badge strong,
.surface-card__number strong,
.story-step__title,
.quote-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-weight: 700;
}

.floating-card span,
.metric-badge span,
.surface-card p,
.quote-card p,
.link-card p,
.footer-shell p,
.faq-answer p,
.story-step p,
.story-legend p {
  color: var(--text-soft);
}

.floating-card--schedule {
  top: 0;
  right: 28px;
}

.floating-card--reminder {
  bottom: 104px;
  left: -24px;
}

.metric-badge {
  position: absolute;
  right: 34px;
  bottom: -24px;
  min-width: 210px;
  padding: 18px 20px;
  border-radius: 22px;
  color: var(--title-inverse);
  background: linear-gradient(135deg, rgba(15, 83, 250, 0.96), rgba(94, 200, 255, 0.88));
}

.metric-badge strong,
.metric-badge span {
  color: inherit;
}

.metric-badge__viewport {
  position: relative;
  overflow: hidden;
}

.metric-badge__viewport--body {
  margin-top: 2px;
}

.metric-badge__title,
.metric-badge__body,
.metric-badge__value {
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.metric-badge.is-rotating .metric-badge__title,
.metric-badge.is-rotating .metric-badge__body,
.metric-badge.is-rotating .metric-badge__value {
  transform: translateY(-18%);
  opacity: 0;
}

.metric-badge.is-entering .metric-badge__title,
.metric-badge.is-entering .metric-badge__body,
.metric-badge.is-entering .metric-badge__value {
  transform: translateY(18%);
  opacity: 0;
}

.metric-badge__value {
  display: block;
  margin-top: 8px;
  font-family: "Inter", "Circular Std", sans-serif;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-proof {
  position: relative;
  margin-top: -132px;
  min-height: 50vh;
  padding: clamp(92px, 13vh, 150px) 0 clamp(8px, 2vh, 18px);
  background: transparent;
  z-index: 2;
}

.hero-proof__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
  position: sticky;
  top: 104px;
}

.mini-proof {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding: 24px 24px 22px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 249, 255, 0.92) 100%);
  border: 1px solid rgba(12, 24, 46, 0.08);
  box-shadow:
    0 18px 40px rgba(12, 24, 46, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  opacity: 0.18;
  transform: translate3d(0, 36px, 0) scale(0.965);
  filter: blur(10px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.mini-proof.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  box-shadow:
    0 24px 52px rgba(12, 24, 46, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.mini-proof__label {
  display: block;
  margin-bottom: 10px;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-proof strong {
  display: block;
  margin-bottom: 0;
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: -0.04em;
  font-family: "Inter", "Circular Std", sans-serif;
}

.mini-proof p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.mini-proof__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 83, 250, 0.1);
  background: rgba(15, 83, 250, 0.06);
  color: #173158;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-pill i {
  color: var(--primary);
}

.brand-pill--meta {
  background: rgba(15, 83, 250, 0.08);
  color: #1551d8;
}

.brand-pill--whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #168a45;
}

.brand-pill--whatsapp i {
  color: #1ea952;
}

.brand-pill--google {
  background: rgba(66, 133, 244, 0.1);
  color: #2559c3;
}

.brand-pill--device {
  width: 40px;
  justify-content: center;
  padding: 0;
  background: rgba(255, 255, 255, 0.72);
}

.brand-pill--cloud {
  background: rgba(255, 153, 0, 0.12);
  color: #b16905;
}

.brand-pill--channel {
  background: rgba(15, 83, 250, 0.08);
}

.storytelling {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 54%, #f1f6fd 100%);
}

.storytelling__grid {
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
  gap: 62px;
  align-items: start;
}

.hero-proof + .section-shell {
  padding-top: clamp(28px, 5vh, 52px);
}

.story-panel {
  position: sticky;
  top: 116px;
  padding: 26px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(12, 24, 46, 0.08);
  background:
    radial-gradient(circle at top right, rgba(94, 200, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 255, 0.99) 100%);
}

.story-panel__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.story-panel__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-panel__label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.story-panel__pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 83, 250, 0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.story-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  border-radius: 30px;
  background: transparent;
  overflow: visible;
}

.story-stage::before {
  display: none;
}

.story-screen {
  position: relative;
  width: min(100%, 348px);
  height: 560px;
  border-radius: 30px;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: 0 24px 60px rgba(15, 83, 250, 0.14);
}

.story-screen--video {
  background: transparent;
}

.story-screen__image {
  height: 100%;
}

.story-screen__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.story-video-shell {
  position: relative;
  width: 100%;
  height: 100%;
}

.story-video-shell__frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #d7e7fb;
}

.story-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #d7e7fb;
  cursor: pointer;
}

.story-video__trigger {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(7, 17, 31, 0.34);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(7, 17, 31, 0.12);
  backdrop-filter: blur(8px);
  opacity: 0.58;
  transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
  transform: none;
}

.story-video__trigger:hover {
  color: #ffffff;
  opacity: 0.9;
  background: rgba(7, 17, 31, 0.48);
  box-shadow: 0 12px 28px rgba(7, 17, 31, 0.16);
}

.story-video__trigger-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 0.92rem;
}

.story-video__hint {
  display: none;
}


.story-mobile {
  position: absolute;
  right: 24px;
  bottom: 26px;
  width: 158px;
  padding: 9px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 83, 250, 0.1);
  box-shadow: 0 20px 44px rgba(12, 24, 46, 0.12);
}

.story-mobile__notch {
  width: 42%;
  height: 12px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: rgba(15, 83, 250, 0.1);
}

.story-card {
  position: absolute;
  max-width: 220px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.story-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.story-card span {
  display: block;
  color: #3b4960;
  font-size: 0.92rem;
  line-height: 1.55;
}

.story-card--one-a {
  top: 38px;
  right: 18px;
}

.story-card--one-b {
  left: 18px;
  bottom: 144px;
}

.story-card--two-a {
  top: 54px;
  left: 18px;
}

.story-card--two-b {
  right: 26px;
  bottom: 152px;
}

.story-card--three-a {
  top: 42px;
  right: 24px;
}

.story-card--three-b {
  left: 24px;
  bottom: 152px;
}

.story-panel[data-story-state="1"] .story-card[data-story-group="1"],
.story-panel[data-story-state="2"] .story-card[data-story-group="2"],
.story-panel[data-story-state="3"] .story-card[data-story-group="3"] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.story-legend {
  margin-top: 24px;
  min-height: 92px;
}

.story-legend__item {
  display: none;
}

.story-legend__item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.05rem;
}

.story-panel[data-story-state="1"] .story-legend__item[data-story-group="1"],
.story-panel[data-story-state="2"] .story-legend__item[data-story-group="2"],
.story-panel[data-story-state="3"] .story-legend__item[data-story-group="3"] {
  display: block;
}

.story-steps {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

.story-step {
  position: relative;
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(12, 24, 46, 0.08);
  background: rgba(255, 255, 255, 0.84);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.story-step.is-active {
  transform: translateY(-4px);
  border-color: rgba(15, 83, 250, 0.16);
  box-shadow: 0 24px 56px rgba(12, 24, 46, 0.1);
}

.story-step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(15, 83, 250, 0.08);
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 700;
}

.story-step__title {
  margin-bottom: 12px;
  font-size: 1.38rem;
  line-height: 1.1;
  font-family: "Inter", "Circular Std", sans-serif;
  letter-spacing: -0.03em;
}

.story-step ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.story-step li {
  position: relative;
  padding-left: 22px;
  color: #3b4960;
  line-height: 1.65;
}

.story-step li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.surface-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.surface-grid,
.path-grid,
.quote-grid {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

.faq-grid {
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

.surface-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(12, 24, 46, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.surface-card--booking {
  color: #f8fbff;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.14) 0%, rgba(7, 17, 31, 0.42) 48%, rgba(7, 17, 31, 0.82) 100%),
    radial-gradient(circle at top left, rgba(94, 200, 255, 0.12), transparent 32%),
    url("../image/persona/mulher-celuar-recepcao.png") center center / cover no-repeat;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 60px rgba(12, 24, 46, 0.16);
}

.surface-card--booking::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0) 18%, rgba(7, 17, 31, 0.12) 34%, rgba(7, 17, 31, 0.48) 62%, rgba(7, 17, 31, 0.84) 100%);
  pointer-events: none;
}

.surface-card--booking > * {
  position: relative;
  z-index: 1;
}

.surface-card--booking .surface-card__number {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.surface-card--booking h3 {
  color: #ffffff;
}

.surface-card--booking p,
.surface-card--booking .surface-card__list li {
  color: rgba(244, 248, 255, 0.92);
}

.surface-card--booking .surface-card__list li i {
  color: #8ee4ff;
}




 

.surface-card--dashboard {
  color: #f8fbff;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.14) 0%, rgba(7, 17, 31, 0.42) 48%, rgba(7, 17, 31, 0.82) 100%),
    radial-gradient(circle at top left, rgba(94, 200, 255, 0.12), transparent 32%),
    url("../image/persona/homem-celular-recepcao.png") center center / cover no-repeat;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 60px rgba(12, 24, 46, 0.16);
}

.surface-card--dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0) 18%, rgba(7, 17, 31, 0.12) 34%, rgba(7, 17, 31, 0.48) 62%, rgba(7, 17, 31, 0.84) 100%);
  pointer-events: none;
}

.surface-card--dashboard > * {
  position: relative;
  z-index: 1;
}

.surface-card--dashboard .surface-card__number {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.surface-card--dashboard h3 {
  color: #ffffff;
}

.surface-card--dashboard p,
.surface-card--dashboard .surface-card__list li {
  color: rgba(244, 248, 255, 0.92);
}

.surface-card--dashboard .surface-card__list li i {
  color: #8ee4ff;
}



.surface-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 16px;
  background: rgba(15, 83, 250, 0.08);
  color: var(--primary);
}

.surface-card__number--logo {
  padding: 6px;
  overflow: hidden;
}

.surface-card__number--logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.surface-card h3,
.link-card h3,
.faq-question span,
.cta-panel__meta strong {
  margin: 0 0 12px;
  font-family: "Inter", "Circular Std", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.surface-card__list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.surface-card__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-soft);
}

.surface-card__list li i {
  color: var(--primary);
}

.path-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
  padding: 60px ;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 60px ;
}

.quote-card {
  height: 100%;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(12, 24, 46, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.quote-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.quote-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(15, 83, 250, 0.14), rgba(94, 200, 255, 0.24));
  color: var(--primary);
  font-family: "Inter", "Circular Std", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.quote-card__role {
  display: block;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.quote-card p {
  margin: 0;
  line-height: 1.75;
}

.link-card {
  height: 100%;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(12, 24, 46, 0.08);
  background: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 83, 250, 0.18);
  box-shadow: 0 24px 56px rgba(12, 24, 46, 0.1);
}

.link-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(15, 83, 250, 0.12), rgba(94, 200, 255, 0.12));
  color: var(--primary);
  font-size: 1.1rem;
}

.link-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--primary);
  font-weight: 700;
}

.link-card--booking {
  position: relative;
  overflow: hidden;
  color: #f8fbff;
  background:
    linear-gradient(180deg, rgba(8, 15, 28, 0.18) 0%, rgba(8, 15, 28, 0.56) 58%, rgba(8, 15, 28, 0.82) 100%),
    linear-gradient(135deg, rgba(15, 83, 250, 0.08), rgba(94, 200, 255, 0.08)),
    url("../image/persona/mulher-celular-agendando.png") center center / cover no-repeat;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 60px rgba(12, 24, 46, 0.18);
}

.link-card--booking::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(94, 200, 255, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(7, 17, 31, 0) 24%, rgba(7, 17, 31, 0.42) 62%, rgba(7, 17, 31, 0.78) 100%);
  pointer-events: none;
}

.link-card--booking > * {
  position: relative;
  z-index: 1;
}

.link-card--booking .link-card__icon {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.link-card--booking h3 {
  color: #ffffff;
}

.link-card--booking p {
  color: rgba(244, 248, 255, 0.9);
  max-width: 24ch;
}

.link-card--booking .link-card__cta {
  color: #ffffff;
}

.link-card--booking:hover {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 32px 72px rgba(12, 24, 46, 0.24);
}

.cta-panel {
  position: relative;
  padding: 42px;
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(94, 200, 255, 0.28), transparent 24%),
    linear-gradient(135deg, #081121 0%, #0d1830 48%, #0f53fa 140%);
  color: var(--title-inverse);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: auto -10% -22% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(94, 200, 255, 0.16);
  filter: blur(50px);
}

.cta-panel__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: 28px;
  align-items: center;
}

.cta-panel p {
  color: rgba(236, 244, 255, 0.9);
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.cta-panel__meta {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-panel__meta strong,
.cta-panel__meta span {
  color: inherit;
}

.faq-grid {
  display: grid;
  gap: 16px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 30px;
}

.faq-item {
  border-radius: 24px;
  border: 1px solid rgba(12, 24, 46, 0.08);
  background: rgba(255, 255, 255, 0.88);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  background: transparent;
  border: 0;
  text-align: left;
  color: var(--text);
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer__inner {
  overflow: hidden;
}

.faq-answer__content {
  padding: 0 26px 24px;
}

.faq-answer__content p {
  margin: 0;
  line-height: 1.75;
}

.footer {
  padding: 0 0 42px;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 36px;
  border-radius: 32px;
  background: #091120;
  color: rgba(232, 239, 248, 0.76);
}

.footer-shell strong,
.footer-shell h4 {
  margin: 0 0 14px;
  color: var(--title-inverse);
}

.footer-shell p,
.footer-shell li,
.footer-bottom {
  margin: 0;
  color: inherit;
  line-height: 1.7;
}

.footer-intro {
  margin-top: 18px;
}

.footer-shell ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-shell a {
  color: inherit;
  text-decoration: none;
}

.footer-shell a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-bottom {
  margin-top: 20px;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-soft);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] {
  transition-delay: 0.08s;
}

[data-reveal-delay="2"] {
  transition-delay: 0.16s;
}

[data-reveal-delay="3"] {
  transition-delay: 0.24s;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

.browser-shell,
.device-shell,
.floating-card,
.metric-badge {
  animation: drift 9s ease-in-out infinite;
}

.device-shell {
  animation-delay: 0.6s;
}

.floating-card--schedule {
  animation-delay: 1.1s;
}

.floating-card--reminder {
  animation-delay: 1.8s;
}

.metric-badge {
  animation-delay: 2.4s;
}

@media (max-width: 765px) {
  .path-grid {
    padding: 30px;
  }
  .quote-grid {
    padding: 30px;
  }
}
 

@media (max-width: 1199.98px) {
  .hero__grid,
  .storytelling__grid,
  .path-grid,
  .cta-panel__grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 600px;
  }

  .hero-proof__grid,
  .surface-grid,
  .quote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-panel {
    position: relative;
    top: auto;
  }

  .vip-modal__content {
    grid-template-columns: 1fr;
  }

  .vip-form-card {
    border-left: 0;
    border-top: 1px solid rgba(15, 83, 250, 0.08);
  }

  .hero-proof {
    margin-top: -108px;
    min-height: auto;
    padding: clamp(72px, 11vh, 124px) 0 clamp(28px, 6vh, 54px);
  }

  .hero-proof__grid {
    position: relative;
    top: auto;
  }

  .mini-proof {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero-proof + .section-shell {
    padding-top: clamp(46px, 7vh, 82px);
  }
}

@media (max-width: 991.98px) {
  .topbar__nav,
  .topbar__actions .button--ghost {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    display: none;
    margin-top: 14px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(7, 17, 31, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-nav.is-open {
    display: grid;
    gap: 12px;
  }

  .mobile-nav__vip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .topbar.is-scrolled .mobile-nav {
    background: rgba(7, 17, 31, 0.94);
    border-color: rgba(255, 255, 255, 0.08);
  }

  .topbar.is-scrolled .mobile-nav a {
    color: var(--text-inverse);
  }

  .hero {
    margin-top: -92px;
    padding-top: 148px;
    padding-bottom: 156px;
  }

  .hero-trust,
  .hero-proof__grid,
  .surface-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .browser-shell {
    position: relative;
    top: 0;
    width: 100%;
  }

  .device-shell {
    width: min(42%, 220px);
  }

  .floating-card--reminder {
    left: 12px;
  }

  .hero-proof {
    margin-top: -90px;
    min-height: auto;
    padding: 66px 0 52px;
  }

  .hero-proof + .section-shell {
    padding-top: 52px;
  }

  .vip-fab {
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 767.98px) {
  .container-shell {
    width: min(calc(100% - 28px), var(--container));
  }

  .section-shell {
    padding: 84px 0;
  }

  .topbar__inner {
    padding: 7px 10px;
  }

  .brand-mark img {
    width: 134px;
  }

  .vip-modal {
    padding: 14px;
  }

  .vip-modal__dialog {
    border-radius: 24px;
  }

  .vip-modal__intro,
  .vip-form-card {
    padding: 28px 20px;
  }

  .vip-fab {
    right: 14px;
    bottom: 14px;
    min-height: 60px;
    padding: 10px 14px 10px 12px;
    gap: 10px;
  }

  .vip-fab__text span {
    display: none;
  }

  .hero {
    padding-bottom: 134px;
  }

  .hero-copy h1 {
    max-width: 11ch;
  }

  .hero-stage {
    min-height: 520px;
  }

  .hero::after {
    height: 160px;
  }

  .hero-proof {
    margin-top: -70px;
    padding: 54px 0 42px;
  }

  .hero-proof + .section-shell {
    padding-top: 44px;
  }

  .hero-copy__actions,
  .cta-panel__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .floating-card {
    max-width: 190px;
    padding: 16px;
  }

  .floating-card--schedule {
    top: 8px;
    right: 10px;
  }

  .floating-card--reminder {
    bottom: 98px;
  }

  .metric-badge {
    right: 14px;
    left: 14px;
    min-width: auto;
  }

  .story-panel,
  .surface-card,
  .quote-card,
  .link-card,
  .cta-panel,
  .faq-item,
  .footer-shell {
    border-radius: 24px;
  }

  .story-panel,
  .surface-card,
  .quote-card,
  .link-card,
  .cta-panel {
    padding: 24px;
  }

  .story-stage {
    min-height: 480px;
  }

  .story-screen {
    width: min(100%, 300px);
    height: 480px;
  }

  .story-mobile {
    width: 136px;
    right: 16px;
    bottom: 18px;
  }

  .story-card {
    max-width: 176px;
  }

  .story-card--one-a,
  .story-card--three-a {
    right: 12px;
  }

  .story-card--one-b,
  .story-card--two-a,
  .story-card--three-b {
    left: 12px;
  }

  .faq-question {
    padding: 22px 20px;
  }

  .faq-answer__content {
    padding: 0 20px 22px;
  }

  .footer-shell {
    padding: 28px 24px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
