:root {
  --bg: #0c1220;
  --bg-alt: #131d31;
  --surface: rgba(20, 29, 49, 0.7);
  --surface-strong: rgba(24, 35, 58, 0.88);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.1);
  --text: #eef4ff;
  --muted: #9cb1d3;
  --primary: #84f0cf;
  --secondary: #8ca8ff;
  --accent: #ffc978;
  --shadow: 0 32px 80px rgba(4, 8, 20, 0.38);
  --container: 1240px;
  --radius-xl: 36px;
  --radius-lg: 28px;
  --header-height: 92px;
}

body[data-theme="light"] {
  --bg: #eef4fb;
  --bg-alt: #f8fbff;
  --surface: rgba(255, 255, 255, 0.68);
  --surface-strong: rgba(246, 251, 255, 0.94);
  --surface-soft: rgba(255, 255, 255, 0.52);
  --border: rgba(72, 102, 156, 0.16);
  --text: #172033;
  --muted: #5e6a82;
  --primary: #047857;
  --secondary: #3058d5;
  --accent: #3b82f6;
  --shadow: 0 28px 90px rgba(46, 76, 126, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: "Sora", sans-serif; }
html.legal-modal-open,
body.legal-modal-open {
  overflow: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.landing-body {
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, rgba(132, 240, 207, 0.18), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(140, 168, 255, 0.18), transparent 30%),
    radial-gradient(circle at 18% 72%, rgba(132, 240, 207, 0.12), transparent 30%),
    radial-gradient(circle at 78% 68%, rgba(140, 168, 255, 0.12), transparent 32%),
    radial-gradient(circle at 50% 115%, rgba(255, 201, 120, 0.12), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  transition: background 220ms ease, color 220ms ease;
}

body[data-theme="light"].landing-body {
  background:
    radial-gradient(circle at 10% 12%, rgba(132, 240, 207, 0.22), transparent 24%),
    radial-gradient(circle at 12% 38%, rgba(132, 240, 207, 0.14), transparent 26%),
    radial-gradient(circle at 82% 10%, rgba(48, 88, 213, 0.18), transparent 26%),
    radial-gradient(circle at 18% 72%, rgba(132, 240, 207, 0.10), transparent 28%),
    radial-gradient(circle at 78% 68%, rgba(48, 88, 213, 0.10), transparent 30%),
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.76), transparent 34%),
    radial-gradient(circle at 50% 120%, rgba(4, 120, 87, 0.12), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, var(--bg) 32%, var(--bg-alt) 100%);
}

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 75%);
}

.page-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(132, 240, 207, 0.16), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(140, 168, 255, 0.16), transparent 32%),
    radial-gradient(circle at 18% 72%, rgba(132, 240, 207, 0.12), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(140, 168, 255, 0.1), transparent 30%);
}

body[data-theme="light"] .page-shell::before {
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(23, 32, 51, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 51, 0.08) 1px, transparent 1px);
}

body[data-theme="light"] .page-shell::after {
  background:
    radial-gradient(circle at 12% 22%, rgba(132, 240, 207, 0.16), transparent 28%),
    radial-gradient(circle at 14% 40%, rgba(132, 240, 207, 0.10), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(48, 88, 213, 0.14), transparent 32%),
    radial-gradient(circle at 18% 72%, rgba(132, 240, 207, 0.1), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(48, 88, 213, 0.08), transparent 30%);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--border);
}

body[data-theme="light"] .site-header {
  background: color-mix(in srgb, #f8fbff 84%, transparent);
  box-shadow: 0 16px 40px rgba(77, 108, 156, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}

.brand-copy { display: grid; gap: 4px; }
.brand-text { font-size: 1.28rem; font-weight: 800; letter-spacing: -0.05em; }
.brand-subtitle { font-size: 0.76rem; color: var(--muted); }

.site-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.site-nav a,
.footer-nav a,
.footer-link {
  position: relative;
  color: var(--muted);
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.footer-nav a:hover,
.footer-link:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-picker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 0.82rem;
  cursor: pointer;
}

body[data-theme="light"] .language-picker,
body[data-theme="light"] .theme-toggle,
body[data-theme="light"] .nav-toggle,
body[data-theme="light"] .button-secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(238, 245, 255, 0.68));
  box-shadow: 0 16px 34px rgba(92, 120, 168, 0.08);
}

.language-trigger {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  white-space: nowrap;
  cursor: pointer;
  flex: 1;
}

.language-trigger::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.72;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 100%;
  max-height: 220px;
  overflow-y: auto;
  padding: 10px 14px 10px 10px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  display: grid;
  gap: 6px;
  z-index: 60;
}

.language-menu::-webkit-scrollbar {
  width: 5px;
}

.language-menu::-webkit-scrollbar-track {
  background: transparent;
  margin: 10px 4px 10px 0;
}

.language-menu::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(124, 147, 188, 0.4);
}

.language-menu[hidden] {
  display: none !important;
}

.language-option {
  border: 0;
  width: 100%;
  padding: 12px 14px;
  border-radius: 16px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.theme-toggle {
  width: 46px;
  min-width: 46px;
  padding: 0;
  justify-content: center;
}

.auth-button {
  min-width: 128px;
  white-space: nowrap;
}

.auth-button-login {
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.18), transparent 30%),
    radial-gradient(circle at 84% 24%, rgba(140, 168, 255, 0.3), transparent 34%),
    linear-gradient(135deg, #314f95 0%, #223d77 46%, #182e5a 100%);
  color: #14263a;
  font-weight: 800;
  letter-spacing: -0.02em;
  border: 1px solid rgba(171, 196, 255, 0.62);
  box-shadow:
    0 20px 40px rgba(17, 28, 54, 0.34),
    0 0 36px rgba(106, 145, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -10px 22px rgba(10, 18, 36, 0.14);
  position: relative;
  overflow: hidden;
}

.auth-button-login:hover {
  border-color: color-mix(in srgb, var(--secondary) 72%, var(--border));
  box-shadow:
    0 24px 40px rgba(8, 14, 28, 0.24),
    0 0 26px rgba(140, 168, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.auth-button-login::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.14) 50%, transparent 78%);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.auth-button-login:hover::before {
  transform: translateX(120%);
}

body[data-theme="light"] .auth-button-login {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 252, 0.9));
  color: #1d4864;
  font-weight: 800;
  border-color: rgba(117, 155, 189, 0.42);
  box-shadow:
    0 14px 28px rgba(92, 120, 168, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

body[data-theme="light"] .auth-button-login:hover {
  border-color: rgba(84, 136, 176, 0.52);
  box-shadow:
    0 16px 30px rgba(92, 120, 168, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

body[data-theme="light"] .auth-button-login::before {
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.32) 50%, transparent 82%);
}

.language-option:hover,
.language-option[aria-selected="true"] {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  transform: translateY(-1px);
}

body[data-theme="light"] .language-menu {
  background: color-mix(in srgb, #f8fbff 94%, transparent);
}

.theme-toggle,
.button,
.nav-cta {
  border: 0;
  cursor: pointer;
}

.theme-toggle {
  min-height: 46px;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--surface-soft);
  color: var(--text);
  border: 1px solid var(--border);
  font: inherit;
  transition: transform 180ms ease, background 180ms ease;
}

.theme-toggle-icon {
  width: 18px;
  height: 18px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  line-height: 1;
}

.theme-toggle-icon::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid currentColor;
  box-sizing: border-box;
  display: block;
}

.theme-toggle-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.theme-toggle:hover,
.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

body[data-theme="light"] .theme-toggle-icon::before {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: currentColor;
  box-shadow: none;
}

body[data-theme="light"] .theme-toggle-icon::after {
  top: 1px;
  left: 7px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 252, 0.92));
}

body:not([data-theme="light"]) .theme-toggle-icon::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: currentColor;
  box-shadow:
    0 -8px 0 -3px currentColor,
    0 8px 0 -3px currentColor,
    8px 0 0 -3px currentColor,
    -8px 0 0 -3px currentColor,
    6px 6px 0 -3px currentColor,
    -6px 6px 0 -3px currentColor,
    6px -6px 0 -3px currentColor,
    -6px -6px 0 -3px currentColor;
}

body:not([data-theme="light"]) .theme-toggle-icon::after {
  display: none;
}

.nav-cta,
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.nav-cta,
.button-primary {
  color: #081018;
  background: linear-gradient(135deg, var(--primary), #d5fff3 48%, #fff4d8 100%);
  box-shadow: 0 20px 46px rgba(132, 240, 207, 0.22);
}

body[data-theme="light"] .nav-cta,
body[data-theme="light"] .button-primary {
  color: #183c37;
  background: linear-gradient(135deg, #dff7ee 0%, #c9efe2 52%, #eef9d9 120%);
  border: 1px solid rgba(122, 170, 154, 0.34);
  box-shadow:
    0 16px 30px rgba(111, 157, 141, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

body[data-theme="light"] .nav-cta:hover,
body[data-theme="light"] .button-primary:hover {
  border-color: rgba(109, 160, 143, 0.46);
  box-shadow:
    0 18px 34px rgba(111, 157, 141, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.button-secondary {
  color: var(--text);
  background: var(--surface-soft);
  border: 1px solid var(--border);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface-soft);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto;
  background: var(--text);
}

.hero-section {
  position: relative;
  padding: 0 0 16px;
  overflow: visible;
}

.hero-backdrop {
  position: absolute;
  inset: 0 0 -72px 0;
  overflow: hidden;
  pointer-events: none;
}

body[data-theme="light"] .hero-backdrop::before,
body[data-theme="light"] .hero-backdrop::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

body[data-theme="light"] .hero-backdrop::before {
  inset: 3% auto auto 50%;
  width: min(860px, 90vw);
  height: 520px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.9), rgba(220, 236, 255, 0.58) 32%, transparent 72%);
  opacity: 0.95;
}

body[data-theme="light"] .hero-backdrop::after {
  inset: -6% auto auto 12%;
  width: 60%;
  height: 78%;
  background:
    linear-gradient(115deg, rgba(132, 240, 207, 0.16), transparent 48%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.22) 0 2px, transparent 2px 22px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 82%);
  opacity: 0.55;
}

.aurora {
  position: absolute;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.9;
}

.aurora-a {
  width: 34rem;
  height: 34rem;
  top: -9rem;
  left: -9rem;
  background: radial-gradient(circle, rgba(132, 240, 207, 0.28), transparent 64%);
  animation: drift 18s ease-in-out infinite;
}

.aurora-b {
  width: 38rem;
  height: 38rem;
  top: -8rem;
  right: -10rem;
  background: radial-gradient(circle, rgba(140, 168, 255, 0.28), transparent 64%);
  animation: drift 16s ease-in-out infinite reverse;
}

.aurora-c {
  width: 30rem;
  height: 30rem;
  bottom: -10rem;
  left: 26%;
  background: radial-gradient(circle, rgba(255, 201, 120, 0.18), transparent 64%);
  animation: pulse 16s ease-in-out infinite;
}

body[data-theme="light"] .aurora {
  filter: blur(26px);
  opacity: 1;
}

body[data-theme="light"] .aurora-a {
  background: radial-gradient(circle, rgba(132, 240, 207, 0.30), transparent 66%);
}

body[data-theme="light"] .aurora-b {
  background: radial-gradient(circle, rgba(94, 134, 255, 0.22), transparent 66%);
}

body[data-theme="light"] .aurora-c {
  background: radial-gradient(circle, rgba(4, 120, 87, 0.18), transparent 66%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 0.8px, transparent 0.8px);
  background-size: 18px 18px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 80%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
  padding-top: 8px;
  max-width: 620px;
  margin-left: auto;
  padding-left: 28px;
}

.hero-kicker,
.eyebrow,
.panel-tag,
.card-label,
.price-badge,
.timeline-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--secondary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

body[data-theme="light"] .hero-kicker,
body[data-theme="light"] .eyebrow,
body[data-theme="light"] .panel-tag,
body[data-theme="light"] .card-label,
body[data-theme="light"] .price-badge,
body[data-theme="light"] .timeline-label {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(232, 242, 255, 0.72));
  border-color: rgba(88, 124, 184, 0.18);
  box-shadow: 0 12px 24px rgba(92, 120, 168, 0.08);
}

.hero-copy h1,
.section-heading h2,
.story-panel h2,
.contact-copy h2 {
  margin: 18px 0 0;
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 5.15vw, 5.15rem);
  max-width: 9.4ch;
  line-height: 0.92;
  text-wrap: balance;
  white-space: pre-line;
}

.section-heading h2,
.contact-copy h2 {
  max-width: 11ch;
}

.section-heading h2,
.story-panel h2,
.contact-copy h2 {
  max-width: none;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
}

.hero-lead,
.section-heading p,
.feature-card p,
.step-card p,
.integration-card p,
.price-card p,
.faq-item p,
.story-panel p,
.contact-copy p,
.contact-card p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-lead {
  margin: 14px 0 0;
  max-width: 58ch;
  font-size: 1.08rem;
  white-space: normal;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.hero-actions {
  justify-content: center;
}

.hero-channel-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
  overflow-x: auto;
  overflow-y: visible;
  padding-top: 8px;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.hero-channel-list::-webkit-scrollbar { display: none; }

.hero-channel-item {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 88px;
  text-align: center;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), filter 220ms ease;
}

.hero-channel-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), filter 220ms ease;
}

.hero-channel-item span {
  font-size: 0.88rem;
  line-height: 1.25;
  color: var(--muted);
  font-weight: 600;
  transition: color 220ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-channel-item:hover {
  transform: translateY(-3px) scale(1.04);
}

.hero-channel-item:hover img {
  transform: scale(1.06);
  filter: drop-shadow(0 10px 18px rgba(92, 120, 168, 0.16));
}

.hero-channel-item:hover span {
  color: var(--text);
  transform: scale(1.03);
}

.hero-cta {
  min-height: 64px;
  padding: 0 40px;
  font-size: 1.14rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  box-shadow:
    0 24px 44px rgba(132, 240, 207, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.22) inset;
}

.hero-cta:hover {
  transform: translateY(-3px) scale(1.015);
}

body[data-theme="light"] .hero-cta {
  color: #123a34;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.62), transparent 28%),
    linear-gradient(135deg, #dff8ef 0%, #c3efdd 56%, #eef8d7 120%);
  border: 1px solid rgba(126, 178, 159, 0.42);
  box-shadow:
    0 22px 38px rgba(117, 166, 149, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.42) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

body[data-theme="light"] .hero-cta:hover {
  border-color: rgba(108, 162, 143, 0.54);
  box-shadow:
    0 26px 42px rgba(117, 166, 149, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.48) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.stat-card-inline,
.feature-card,
.step-card,
.integration-card,
.price-card,
.faq-item,
.story-panel,
.glass-panel,
.contact-card,
.contact-panel,
.timeline-card,
.signal-card {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

body[data-theme="light"] .stat-card-inline,
body[data-theme="light"] .feature-card,
body[data-theme="light"] .step-card,
body[data-theme="light"] .integration-card,
body[data-theme="light"] .price-card,
body[data-theme="light"] .faq-item,
body[data-theme="light"] .story-panel,
body[data-theme="light"] .glass-panel,
body[data-theme="light"] .contact-card,
body[data-theme="light"] .contact-panel,
body[data-theme="light"] .timeline-card,
body[data-theme="light"] .signal-card,
body[data-theme="light"] .marquee-track,
body[data-theme="light"] .tier-card {
  box-shadow:
    0 24px 50px rgba(92, 120, 168, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.stat-card-inline { padding: 18px; }
.stat-card-inline strong { display: block; font-size: 1.2rem; }
.stat-card-inline span { display: block; margin-top: 8px; color: var(--muted); font-size: 0.92rem; }

.hero-stage {
  position: relative;
  min-height: 490px;
  max-width: 620px;
  width: 100%;
  margin-right: auto;
}

.orbital-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0.45;
}

.orbital-ring-a { inset: 90px 10% auto; height: 460px; }
.orbital-ring-b { inset: 30px 18% auto; height: 580px; }

body[data-theme="light"] .orbital-ring {
  border-color: rgba(101, 139, 201, 0.24);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.34) inset;
}

.glass-panel {
  padding: 24px;
}

.hero-stage-grid {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 560px;
  padding-top: 6px;
  perspective: 1400px;
}

.savings-panel,
.proof-panel {
  position: relative;
  transform-style: preserve-3d;
}

.savings-panel {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.hero-calendar-strip {
  position: absolute;
  top: 18px;
  left: -24px;
  z-index: 2;
  display: grid;
  gap: 12px;
  justify-items: start;
  width: auto;
  pointer-events: none;
  filter: none;
}

.hero-calendar-tag {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: #5377d9;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.95;
  transform: none;
}

.hero-calendar-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 0;
}

.hero-calendar-icon {
  position: static;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.86));
  border: 1px solid rgba(154, 173, 209, 0.14);
  box-shadow:
    0 14px 24px rgba(92, 120, 168, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  pointer-events: auto;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease, opacity 260ms ease;
  transform: none;
}

.hero-calendar-icon:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow:
    0 18px 30px rgba(92, 120, 168, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.hero-calendar-icon img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  display: block;
}

body[data-theme="light"] .savings-panel {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.savings-panel:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
  background: transparent;
}

body[data-theme="light"] .savings-panel:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
  background: transparent;
}

.hero-phone-image {
  display: block;
  width: min(100%, 360px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 22px 36px rgba(8, 14, 30, 0.14));
  transform: translateZ(0);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), filter 260ms ease;
}

.hero-stage .savings-panel:hover .hero-phone-image {
  transform:
    translate3d(calc(var(--float-x, 0px) * 0.45), calc(var(--float-y, 0px) * 0.45 - 8px), 0)
    scale(1.01);
}

body[data-theme="light"] .hero-phone-image {
  filter: drop-shadow(0 20px 32px rgba(92, 120, 168, 0.12));
}

.iphone-mockup {
  display: none;
}

body[data-theme="light"] .iphone-mockup {
  display: none;
}

.hero-stage .savings-panel:hover .iphone-mockup {
  transform: none;
}

.iphone-modern {
  display: none;
}

.iphone-island {
  display: none;
}

.iphone-island-camera {
  display: none;
}

.iphone-screen {
  display: none;
}

.proof-panel {
  position: absolute;
  inset: 0;
  min-height: 560px;
  display: block;
  padding: 0;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  pointer-events: none;
}

.savings-panel,
.proof-panel {
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.savings-panel:hover,
.proof-panel:hover {
  transform:
    translate3d(var(--float-x, 0px), calc(var(--float-y, 0px) - 10px), 0)
    rotateX(var(--float-rx, 0deg))
    rotateY(var(--float-ry, 0deg))
    scale(1.01);
  border-color: color-mix(in srgb, var(--secondary) 46%, var(--border));
  box-shadow:
    0 28px 60px rgba(8, 14, 30, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body[data-theme="light"] .savings-panel:hover,
body[data-theme="light"] .proof-panel:hover {
  box-shadow:
    0 28px 60px rgba(92, 120, 168, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.hero-stage .proof-panel,
body[data-theme="light"] .hero-stage .proof-panel {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.hero-stage .proof-panel:hover,
body[data-theme="light"] .hero-stage .proof-panel:hover {
  box-shadow: none;
  background: transparent;
  border-color: transparent;
  transform: none;
}

.hero-stage .savings-panel:hover,
body[data-theme="light"] .hero-stage .savings-panel:hover {
  transform: none;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.spotlight-panel h2,
.price-card h3,
.feature-card h3,
.step-card h3,
.integration-card h3,
.faq-item summary,
.timeline-card h3 {
  margin: 16px 0 0;
  font-size: 1.42rem;
  letter-spacing: -0.04em;
}

.spotlight-panel p,
.savings-panel p { margin: 14px 0 0; }

.panel-caption { color: var(--muted); font-size: 0.82rem; }
.savings-panel strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(3rem, 7vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.proof-strip {
  position: absolute;
  display: grid;
  gap: 10px;
  pointer-events: auto;
}

.proof-strip:first-child {
  top: 18px;
  left: -18px;
}

.proof-strip:last-child {
  right: 8px;
  bottom: 40px;
  justify-items: end;
}

.proof-inline-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 6px;
}

.proof-inline-icons-delivery {
  gap: 14px;
  justify-content: flex-end;
}

.proof-mini-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(154, 173, 209, 0.14);
  box-shadow:
    0 14px 24px rgba(92, 120, 168, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease;
  opacity: 0.9;
}

.proof-mini-icon:hover {
  transform: translate3d(0, -5px, 0) scale(1.02);
  opacity: 1;
}

.proof-mini-icon img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  display: block;
}

.marquee-section {
  position: relative;
  z-index: 1;
  margin-top: -18px;
  padding: 6px 0 10px;
}

.marquee-title {
  width: min(1120px, 100%);
  margin: 0 auto 14px;
  color: color-mix(in srgb, var(--text) 82%, var(--muted));
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}

.marquee-track {
  display: flex;
  gap: 0;
  overflow: hidden;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 18px;
  min-height: 92px;
  align-items: center;
  border-radius: 36px;
  background: rgba(20, 29, 49, 0.68);
  border: 1px solid var(--border);
  position: relative;
  backdrop-filter: blur(14px);
}

.marquee-row {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
  min-width: max-content;
  animation: marqueeLoop 42s linear infinite;
}

.marquee-track span {
  padding: 10px 16px;
  border-radius: 0;
  background: transparent;
  color: color-mix(in srgb, var(--text) 86%, var(--muted));
  font-weight: 600;
  white-space: nowrap;
  transition: color 220ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.marquee-track span:hover {
  color: var(--secondary);
  transform: scale(1.03);
}

.marquee-title[hidden],
.marquee-track[hidden] {
  display: none !important;
}

.sector-headline-panel[hidden] {
  display: none !important;
}

.sector-headline-text {
  margin: 0;
  color: #54637d;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  width: 100%;
}

body[data-sector="fisioterapeutas"] .marquee-track {
  display: none;
}

body[data-sector="fisioterapeutas"] .sector-headline-panel {
  display: flex;
  justify-content: center;
}

body[data-theme="light"] .marquee-title {
  color: #54637d;
}

body[data-theme="light"] .marquee-track {
  background: rgba(255, 255, 255, 0.72);
}

body[data-theme="light"] .marquee-track span {
  background: transparent;
  color: var(--muted);
}

body[data-theme="light"] .marquee-track span:hover {
  color: var(--secondary);
}

.section { padding: 60px 0; }

.section-alt {
  background: transparent;
}

body[data-theme="light"] .section-alt {
  background: transparent;
}

.section-story { padding-top: 12px; }

.section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading.align-left {
  text-align: left;
  margin-left: 0;
}

.section-heading.narrow { max-width: 700px; }

.section-heading.section-heading-compact {
  margin-bottom: 22px;
}

.feature-grid,
.steps-grid,
.integration-panels,
.pricing-grid,
.tiers-grid {
  display: grid;
  gap: 22px;
}

.feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.feature-card,
.step-card,
.integration-card,
.price-card {
  padding: 28px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.feature-card {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-areas:
    "index title"
    "copy copy";
  align-items: start;
  column-gap: 18px;
  row-gap: 18px;
  transform-origin: center center;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    z-index 0ms linear 0ms;
}

.feature-card:hover {
  transform: scale(1.08);
  z-index: 3;
  border-color: color-mix(in srgb, var(--secondary) 52%, var(--border));
  box-shadow: var(--shadow);
}

.step-card:hover,
.integration-card:hover,
.price-card:hover,
.story-panel:hover,
.faq-item:hover {
  transform:
    translate3d(0, -8px, 0)
    rotateX(var(--card-tilt-x, 0deg))
    rotateY(var(--card-tilt-y, 0deg))
    scale(1.08);
  z-index: 3;
  border-color: color-mix(in srgb, var(--secondary) 45%, var(--border));
}

body[data-theme="light"] .step-card:hover,
body[data-theme="light"] .integration-card:hover,
body[data-theme="light"] .price-card:hover,
body[data-theme="light"] .story-panel:hover,
body[data-theme="light"] .faq-item:hover,
body[data-theme="light"] .tier-card:hover {
  box-shadow:
    0 30px 60px rgba(92, 120, 168, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

body[data-theme="light"] .feature-card:hover {
  border-color: color-mix(in srgb, var(--secondary) 52%, var(--border));
  background: var(--surface);
  box-shadow:
    0 24px 50px rgba(92, 120, 168, 0.12);
}

.feature-index,
.step-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(132, 240, 207, 0.18), rgba(140, 168, 255, 0.18));
  color: var(--text);
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.feature-index {
  grid-area: index;
}

.feature-card:hover .feature-index {
  transform: scale(1.1);
  box-shadow: none;
}

.price-card:hover .price-badge {
  transform: scale(1.1);
}

.feature-card h3 {
  grid-area: title;
  margin: -2px 0 0;
  align-self: start;
  transition: transform 220ms ease;
  transform-origin: left center;
}

.feature-card p {
  grid-area: copy;
  margin: 0;
}

.step-card h3,
.integration-card h3,
.price-card h3 {
  margin-top: 18px;
  transition: transform 220ms ease;
  transform-origin: left center;
}

.feature-card:hover h3 {
  transform: scale(1.06);
}

.price-card:hover h3 {
  transform: scale(1.06);
}

.steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step-card { background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 86%, transparent), rgba(255, 255, 255, 0.04)); }

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: start;
}

.faq-layout {
  display: grid;
  gap: 28px;
}

.faq-layout .section-heading {
  max-width: 58rem;
}

.faq-layout .section-heading h2 {
  color: var(--text);
  opacity: 1;
  mix-blend-mode: normal;
  -webkit-text-fill-color: currentColor;
  text-shadow: none;
}

.contact-copy h2 {
  color: var(--text);
  opacity: 1;
  mix-blend-mode: normal;
  -webkit-text-fill-color: currentColor;
  text-shadow: none;
}

.integration-panels { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.integration-card-accent {
  background:
    radial-gradient(circle at top right, rgba(255, 201, 120, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(140, 168, 255, 0.12), rgba(132, 240, 207, 0.08));
}

.clean-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.clean-list li {
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.price-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.price-note-placeholder {
  visibility: hidden;
}

.pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pricing-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pricing-grid-three > .price-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-grid-three > .price-card .inline-tiers {
  margin-top: auto;
}

.pricing-grid-three > .featured-price:not(.recommended-price-card) .price-summary-bar {
  margin-top: auto;
}

.price-badge.highlight { color: var(--secondary); }

body[data-theme="light"] .price-badge.highlight { color: var(--accent); }
.block-button { width: 100%; margin-top: 28px; }

.price-card-with-tiers {
  grid-column: span 1;
}

.recommended-price-card {
  position: relative;
  overflow: hidden;
}

.recommended-ribbon {
  position: absolute;
  top: 28px;
  right: -74px;
  z-index: 2;
  width: 240px;
  padding: 9px 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 800;
  color: #eef4ff;
  background: linear-gradient(90deg, rgba(85, 110, 214, 0.92), rgba(60, 86, 194, 0.92));
  border-top: 1px solid rgba(221, 231, 255, 0.28);
  border-bottom: 1px solid rgba(205, 219, 255, 0.18);
  transform: rotate(42deg);
  box-shadow: 0 14px 28px rgba(48, 72, 156, 0.22);
  pointer-events: none;
}

.inline-tiers {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.tiers-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.tiers-label {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.tier-volume-picker {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 4px;
  flex: 1;
  max-width: 220px;
}

.tier-stepper-button {
  min-height: 30px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tier-stepper-button:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--secondary) 45%, var(--border));
}

.tier-volume-input-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 48px;
  padding: 0 10px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
}

.tier-volume-input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  outline: none;
}

.tier-volume-input::-webkit-outer-spin-button,
.tier-volume-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.tier-volume-input[type="number"] {
  -moz-appearance: textfield;
}

.tier-selection-suffix {
  color: var(--muted);
  font-weight: 600;
}

.tiers-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 0;
  gap: 14px;
}

.tiers-grid-compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.tier-card {
  min-width: 0;
  padding: 14px 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.tier-card:hover {
  transform:
    translate3d(0, -10px, 0)
    rotateX(var(--card-tilt-x, 0deg))
    rotateY(var(--card-tilt-y, 0deg))
    scale(1.01);
  border-color: color-mix(in srgb, var(--primary) 45%, var(--border));
}

.tier-card:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--secondary) 72%, white);
  outline-offset: 3px;
}

.tier-card.is-selected {
  border-color: color-mix(in srgb, var(--primary) 68%, var(--border));
  background:
    radial-gradient(circle at top left, rgba(132, 240, 207, 0.2), transparent 42%),
    radial-gradient(circle at bottom right, rgba(140, 168, 255, 0.18), transparent 46%),
    rgba(255, 255, 255, 0.14);
  box-shadow:
    0 22px 42px rgba(12, 20, 40, 0.2),
    0 0 0 1px rgba(132, 240, 207, 0.18) inset;
  transform: translateY(-6px) scale(1.03);
}

.tier-card span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.05;
  text-transform: none;
  letter-spacing: -0.04em;
  word-break: keep-all;
  overflow-wrap: normal;
  white-space: nowrap;
  text-align: center;
  font-weight: 700;
}

.tier-button {
  width: 100%;
  margin-top: 14px;
  min-height: 46px;
  font-size: 0.92rem;
}

.tier-button-main {
  width: auto;
  min-width: 210px;
  padding-inline: 26px;
  margin-top: 0;
}

.tier-selection-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  min-height: 146px;
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.tier-selection-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}

.tier-selection-copy strong,
#tierSelectionPrice {
  color: var(--text);
  font-size: 1rem;
}

#tierSelectionPrice {
  margin-left: 12px;
  font-weight: 700;
  font-size: 1.55rem;
  white-space: nowrap;
}

body[data-theme="light"] .tier-card.is-selected {
  background:
    radial-gradient(circle at top left, rgba(120, 227, 193, 0.26), transparent 42%),
    radial-gradient(circle at bottom right, rgba(149, 181, 255, 0.22), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 248, 0.94));
  box-shadow:
    0 22px 40px rgba(92, 120, 168, 0.18),
    0 0 0 1px rgba(89, 188, 148, 0.22) inset;
}

body[data-theme="light"] .tier-selection-bar {
  background: rgba(238, 245, 255, 0.7);
  box-shadow: 0 18px 34px rgba(92, 120, 168, 0.08);
}

.price-summary-bar {
  margin-top: 22px;
  min-height: 146px;
}

.price-summary-value {
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

body[data-theme="light"] .recommended-ribbon {
  color: #f8fbff;
  background: linear-gradient(90deg, rgba(78, 110, 224, 0.96), rgba(60, 93, 210, 0.96));
  border-top-color: rgba(255, 255, 255, 0.5);
  border-bottom-color: rgba(185, 205, 255, 0.26);
  box-shadow: 0 14px 24px rgba(92, 120, 168, 0.18);
}

.price-card-upcoming {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(92, 101, 124, 0.16), rgba(56, 66, 89, 0.18)),
    rgba(34, 45, 68, 0.74);
  border-color: rgba(160, 171, 196, 0.16);
}

.price-card-upcoming::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  pointer-events: none;
}

.price-card-upcoming::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: calc(var(--radius-lg) - 14px);
  border: 1px dashed rgba(165, 176, 198, 0.16);
  pointer-events: none;
}

.price-card-upcoming .price-badge {
  color: #d4dbea;
  background: linear-gradient(180deg, rgba(116, 126, 148, 0.34), rgba(89, 99, 124, 0.28));
  border-color: rgba(177, 188, 209, 0.14);
  box-shadow: none;
}

.price-card-upcoming .price-badge.highlight {
  color: #dce3f1;
}

.upcoming-ribbon {
  position: absolute;
  top: 34px;
  right: -86px;
  z-index: 2;
  width: 280px;
  padding: 10px 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
  color: #eef4ff;
  background: linear-gradient(90deg, rgba(122, 136, 161, 0.92), rgba(91, 104, 128, 0.92));
  border-top: 1px solid rgba(214, 222, 238, 0.18);
  border-bottom: 1px solid rgba(214, 222, 238, 0.12);
  transform: rotate(42deg);
  box-shadow: 0 16px 30px rgba(8, 14, 28, 0.24);
  pointer-events: none;
}

.price-card-upcoming h3,
.price-card-upcoming p,
.price-card-upcoming li,
.price-card-upcoming .clean-list li,
.price-card-upcoming .price-badge,
.price-card-upcoming .button-disabled {
  position: relative;
  z-index: 1;
}

.price-card-upcoming h3 {
  color: #e5ebf7;
}

.price-card-upcoming p,
.price-card-upcoming li {
  color: #aeb9cf;
}

.price-card-upcoming .clean-list li::before {
  background: #93a0bb;
}

.upcoming-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(166, 177, 197, 0.14);
  background: rgba(112, 121, 142, 0.14);
  color: #c3cddd;
  font-weight: 600;
  line-height: 1.6;
}

body[data-theme="light"] .upcoming-note {
  border-color: rgba(131, 141, 160, 0.22);
  background: rgba(187, 194, 206, 0.24);
  color: #526071;
}

body[data-theme="light"] .price-card-upcoming {
  background:
    linear-gradient(180deg, rgba(228, 232, 239, 0.9), rgba(211, 217, 228, 0.78)),
    rgba(243, 246, 251, 0.88);
  border-color: rgba(149, 158, 175, 0.2);
}

body[data-theme="light"] .upcoming-ribbon {
  color: #455266;
  background: linear-gradient(90deg, rgba(216, 222, 231, 0.96), rgba(193, 201, 213, 0.96));
  border-top-color: rgba(255, 255, 255, 0.7);
  border-bottom-color: rgba(144, 156, 174, 0.18);
  box-shadow: 0 14px 26px rgba(106, 118, 136, 0.16);
}

body[data-theme="light"] .price-card-upcoming::after {
  border-color: rgba(149, 158, 175, 0.22);
}

body[data-theme="light"] .price-card-upcoming .price-badge {
  color: #5f6b7f;
  background: linear-gradient(180deg, rgba(225, 229, 236, 0.96), rgba(205, 211, 221, 0.82));
  border-color: rgba(152, 161, 178, 0.2);
}

body[data-theme="light"] .price-card-upcoming h3 {
  color: #2c3546;
}

body[data-theme="light"] .price-card-upcoming p,
body[data-theme="light"] .price-card-upcoming li {
  color: #667388;
}

body[data-theme="light"] .price-card-upcoming .clean-list li::before {
  background: #8b96aa;
}

.button-disabled {
  opacity: 0.82;
  pointer-events: none;
  color: #9eabc2;
  border-style: dashed;
  background: rgba(101, 113, 140, 0.16);
  box-shadow: none;
}

body[data-theme="light"] .button-disabled {
  color: #727e91;
  background: rgba(186, 194, 206, 0.36);
}

.story-panel {
  display: block;
  padding: 34px;
}

.faq-list {
  display: grid;
  gap: 14px;
  width: min(100%, 980px);
  margin: 0 auto;
}
.faq-item {
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color 560ms ease,
    box-shadow 820ms cubic-bezier(0.19, 1, 0.22, 1),
    background 820ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 560ms ease;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 88px;
  margin: 0;
  padding: 0 24px;
  line-height: 1.2;
  list-style: none;
  cursor: pointer;
  transition:
    color 460ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(147, 165, 198, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #dfe7fb;
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1;
  transform: rotate(0deg);
  transition:
    transform 860ms cubic-bezier(0.19, 1, 0.22, 1),
    background 520ms ease,
    border-color 520ms ease,
    color 520ms ease,
    box-shadow 620ms ease;
}

.faq-item.faq-close-instant,
.faq-item.faq-close-instant summary,
.faq-item.faq-close-instant summary::after,
.faq-item.faq-close-instant .faq-answer,
.faq-item.faq-close-instant .faq-answer p {
  transition: none !important;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    max-height 1280ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 720ms ease;
}

.faq-item.is-collapsing .faq-answer {
  transition:
    max-height 420ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 220ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 4px 24px 26px;
  opacity: 0.02;
  transition:
    opacity 880ms ease;
}

.faq-item.is-collapsing .faq-answer p {
  transition: opacity 180ms ease;
}

.faq-item.is-expanded .faq-answer {
  opacity: 1;
  pointer-events: auto;
}

.faq-item.is-expanded {
  background:
    radial-gradient(circle at top right, rgba(132, 240, 207, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.015)),
    var(--surface);
  border-color: rgba(141, 168, 255, 0.18);
  box-shadow: 0 18px 38px rgba(6, 12, 24, 0.22);
}

.faq-item.is-expanded summary {
  color: inherit;
}

.faq-item.is-expanded summary::after {
  content: "-";
  transform: rotate(180deg) scale(1.04);
  background: linear-gradient(135deg, rgba(136, 241, 208, 0.2), rgba(131, 166, 255, 0.16));
  border-color: rgba(151, 201, 255, 0.26);
  color: #14263a;
  box-shadow: 0 10px 24px rgba(90, 132, 220, 0.2);
}

.faq-item.is-expanded.is-collapsing summary::after {
  content: "+";
  transform: rotate(0deg) scale(1);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(147, 165, 198, 0.18);
  color: #dfe7fb;
  box-shadow: none;
}

.faq-item.is-expanded .faq-answer p {
  opacity: 1;
}

body[data-theme="light"] .faq-item.is-expanded {
  background:
    radial-gradient(circle at top right, rgba(117, 214, 185, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.92));
  border-color: rgba(135, 165, 220, 0.22);
  box-shadow: 0 18px 38px rgba(92, 120, 168, 0.14);
}

body[data-theme="light"] .faq-item.is-expanded summary {
  color: #14263a;
}

body[data-theme="light"] .faq-item.is-expanded .faq-answer p {
  color: #14263a;
}

body[data-theme="light"] .faq-item.is-expanded summary::after {
  content: "-";
  color: #14263a;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(135, 165, 220, 0.28);
  box-shadow: 0 10px 24px rgba(92, 120, 168, 0.12);
}

body[data-theme="light"] .faq-item.is-expanded.is-collapsing summary::after {
  content: "+";
  color: rgba(135, 165, 220, 0.9);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(147, 165, 198, 0.18);
  box-shadow: none;
}

.contact-panel {
  padding: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: 28px;
  background:
    radial-gradient(circle at top right, rgba(132, 240, 207, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(140, 168, 255, 0.14), transparent 30%),
    var(--surface-strong);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease, border-color 320ms ease;
}

.contact-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 260ms ease, background 260ms ease;
}

.contact-panel:hover {
  transform: translateY(-10px) scale(1.012);
  box-shadow:
    0 30px 64px rgba(8, 16, 34, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-panel:hover .button {
  transform: translateY(-2px);
}

.contact-link { display: inline-block; font-size: 1.4rem; font-weight: 800; letter-spacing: -0.04em; }

body[data-theme="light"] .contact-panel:hover {
  box-shadow:
    0 32px 68px rgba(92, 120, 168, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.site-footer { padding: 26px 0 40px; }

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
}

.legal-modal-layer {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 24px;
}

.legal-modal-layer[hidden] {
  display: none !important;
}

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(132, 240, 207, 0.06), transparent 24%),
    radial-gradient(circle at top right, rgba(140, 168, 255, 0.08), transparent 28%),
    rgba(8, 12, 22, 0.12);
}

.legal-modal {
  position: relative;
  z-index: 1;
  display: block;
  width: min(860px, 100%);
  max-height: min(86vh, 920px);
}

.legal-modal[hidden] {
  display: none !important;
}

.legal-modal-shell {
  overflow: auto;
  max-height: inherit;
  padding: 34px 30px 34px 34px;
  border-radius: 32px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top right, rgba(140, 168, 255, 0.12), transparent 28%),
    radial-gradient(circle at top left, rgba(132, 240, 207, 0.1), transparent 24%),
    var(--surface-strong);
  box-shadow: 0 40px 120px rgba(2, 6, 18, 0.42);
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(124, 147, 188, 0.5) transparent;
}

.legal-modal-shell::-webkit-scrollbar {
  width: 6px;
}

.legal-modal-shell::-webkit-scrollbar-button {
  height: 10px;
}

.legal-modal-shell::-webkit-scrollbar-track {
  background: rgba(120, 140, 182, 0.08);
  border-radius: 999px;
  margin-block: 22px;
}

.legal-modal-shell::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 2px solid transparent;
  background:
    linear-gradient(180deg, rgba(222, 235, 255, 0.72), rgba(160, 178, 214, 0.66)) padding-box;
}

.legal-modal-shell::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, rgba(234, 242, 255, 0.84), rgba(146, 169, 214, 0.8)) padding-box;
}

.legal-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.legal-modal-kicker {
  margin: 0;
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-modal-close {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-soft);
  color: var(--text);
  font: inherit;
  cursor: pointer;
}

.legal-modal h2 {
  margin: 18px 0 0;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  letter-spacing: -0.06em;
}

.legal-modal p,
.legal-modal li {
  color: var(--muted);
  line-height: 1.8;
}

.legal-modal section {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.legal-modal h3 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.legal-modal ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

body[data-theme="light"] .legal-modal-backdrop {
  background:
    radial-gradient(circle at top left, rgba(132, 240, 207, 0.08), transparent 24%),
    radial-gradient(circle at top right, rgba(140, 168, 255, 0.1), transparent 28%),
    rgba(236, 242, 250, 0.16);
}

body[data-theme="light"] .legal-modal-shell {
  box-shadow: 0 36px 100px rgba(76, 103, 149, 0.18);
  scrollbar-color: rgba(130, 154, 198, 0.56) transparent;
}

[data-reveal] {
  opacity: 0;
  transform: perspective(1200px) translate3d(var(--reveal-x, 0), 56px, 0) scale(0.9) rotateX(10deg);
  filter: saturate(0.82);
  transition:
    opacity 1620ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1620ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 1620ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: perspective(1200px) translate3d(0, 0, 0) scale(1) rotateX(0deg);
  filter: saturate(1);
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(24px, 18px, 0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes marqueeLoop {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-140%); }
}

@media (min-width: 1500px) {
  .hero-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(560px, 0.86fr);
    gap: 56px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-copy h1 {
    max-width: 7.8ch;
    font-size: clamp(3.1rem, 4.65vw, 4.9rem);
    line-height: 0.94;
  }

  .hero-stage-grid { min-height: 620px; }
}

@media (max-width: 1180px) {
  .header-inner { grid-template-columns: auto auto; }
  .site-nav { grid-column: 1 / -1; justify-content: flex-start; order: 3; }

  .hero-layout,
  .split-layout,
  .story-panel,
  .contact-panel,
  .feature-grid,
  .steps-grid,
  .integration-panels,
  .pricing-grid,
  .tiers-grid,
  .tiers-grid-compact {
    grid-template-columns: 1fr;
  }

  .hero-stats { grid-template-columns: 1fr; }
  .hero-stage { min-height: auto; }
  .hero-stage-grid { min-height: auto; }
  .hero-channel-list { gap: 14px 12px; }
  .hero-channel-item { min-width: 78px; }
  .hero-channel-item img {
    width: 42px;
    height: 42px;
  }
  .savings-panel { min-height: auto; }
  .proof-panel {
    position: static;
    min-height: auto;
    display: grid;
    gap: 16px;
    justify-items: center;
    margin-top: 18px;
    pointer-events: auto;
  }
  .proof-strip,
  .proof-strip:first-child,
  .proof-strip:last-child {
    position: static;
    justify-items: center;
  }
  .proof-inline-icons,
  .proof-inline-icons-delivery {
    justify-content: center;
  }
}

@media (max-width: 1440px) {
  .header-inner {
    gap: 14px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .brand-text {
    font-size: 1.04rem;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.96rem;
  }

  .header-controls {
    gap: 6px;
  }

  .language-picker {
    padding: 8px 10px;
    font-size: 0.75rem;
  }

  .theme-toggle {
    min-height: 40px;
    padding: 0 12px;
    gap: 7px;
    font-size: 0.96rem;
  }

  .nav-cta,
  .button {
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.96rem;
  }

  .hero-cta {
    min-height: 64px;
    padding: 0 40px;
    font-size: 1.14rem;
  }

  .auth-button {
    min-width: 102px;
  }
}

@media (max-width: 1180px) {
  .tiers-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas: "brand theme menu";
    align-items: center;
    position: relative;
  }

  .brand {
    grid-area: brand;
    min-width: 0;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    border-radius: 18px;
    background: color-mix(in srgb, var(--bg) 98%, transparent);
    border: 1px solid var(--border);
    box-shadow:
      0 24px 44px rgba(6, 12, 24, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
    z-index: 70;
  }

  .site-nav.is-open { display: flex; }

  .site-nav a {
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--text);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid transparent;
    transform: none;
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(140, 168, 255, 0.18);
    color: var(--text);
  }

  body[data-theme="light"] .site-nav {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.96));
    box-shadow:
      0 24px 44px rgba(92, 120, 168, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
  }

  body[data-theme="light"] .site-nav a {
    color: #34425f;
    background: rgba(232, 240, 252, 0.72);
    border-color: rgba(140, 166, 210, 0.12);
  }

  body[data-theme="light"] .site-nav a:hover,
  body[data-theme="light"] .site-nav a.is-active {
    color: #1c2a44;
    background: rgba(222, 233, 250, 0.94);
    border-color: rgba(116, 145, 199, 0.24);
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    grid-area: menu;
    justify-self: end;
    align-self: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
  }

  .nav-toggle span {
    width: 16px;
    height: 2px;
    margin: 0;
  }

  .nav-toggle span + span {
    margin-top: 5px;
  }

  .header-controls {
    grid-area: theme;
    display: flex;
    justify-self: end;
    align-self: center;
    align-items: center;
    height: 44px;
    margin-top: 0;
  }

  .header-controls .language-picker,
  .header-controls .nav-cta,
  .header-controls .auth-button-login {
    display: none;
  }

  .header-controls .theme-toggle {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    align-items: center;
    justify-content: center;
    align-self: center;
    transform: translateY(-6px);
  }

  .header-controls.is-open {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-column: 1 / -1;
    gap: 12px;
    padding: 14px;
    margin-top: 14px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: color-mix(in srgb, var(--bg) 96%, transparent);
    box-shadow: var(--shadow);
  }

  .header-controls.is-open .language-picker,
  .header-controls.is-open .nav-cta,
  .header-controls.is-open .auth-button-login {
    display: inline-flex;
  }

  .header-controls.is-open .theme-toggle {
    display: none;
  }

  .header-controls.is-open .language-picker,
  .header-controls.is-open .nav-cta,
  .header-controls.is-open .auth-button-login {
    width: 100%;
  }

  .header-controls.is-open .language-picker {
    justify-content: space-between;
    min-height: 48px;
    padding: 10px 12px;
  }

  .header-controls.is-open .nav-cta,
  .header-controls.is-open .auth-button-login {
    min-height: 48px;
    justify-content: center;
  }

  .nav-cta { flex: 1 1 100%; }
  .hero-copy h1 { max-width: none; }
  .hero-stage { min-height: auto; }

  .orbital-ring { display: none; }
}

@media (max-width: 560px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .brand-mark { width: 48px; height: 48px; }
  .brand-subtitle { display: none; }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) 44px 44px;
    grid-template-areas: "brand theme menu";
    gap: 8px;
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .footer-nav {
    flex-wrap: nowrap;
    gap: 10px;
    font-size: 0.72rem;
    align-items: center;
  }

  .header-controls.is-open {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 14px;
    margin-top: 10px;
    border-radius: 20px;
  }

  .header-controls.is-open .language-picker,
  .header-controls.is-open .nav-cta,
  .header-controls.is-open .auth-button-login {
    min-height: 48px;
  }

  .header-controls.is-open .language-picker {
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  .hero-section { padding-top: 0; }
  .hero-copy {
    padding-left: 0;
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 13vw, 4.3rem);
    max-width: 9ch;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-channel-list {
    justify-content: space-between;
    gap: 10px;
    padding-inline: 4px;
    overflow: visible;
  }

  .hero-channel-item {
    min-width: 0;
    flex: 1 1 0;
    gap: 6px;
  }

  .hero-channel-item img {
    width: 38px;
    height: 38px;
  }

  .hero-channel-item span {
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .hero-cta {
    min-height: 58px;
    width: min(100%, 240px);
    padding: 0 28px;
    font-size: 1.02rem;
  }

  .section { padding: 88px 0; }

  .proof-panel {
    gap: 14px;
    margin-top: 12px;
  }

  .proof-panel .panel-tag {
    width: auto;
    padding: 12px 18px;
    justify-content: center;
    font-size: 0.62rem;
    line-height: 1.2;
    letter-spacing: 0.07em;
  }

  .proof-inline-icons {
    gap: 8px;
  }

  .proof-icon {
    width: 44px;
    height: 44px;
  }

  .proof-icon-card small {
    font-size: 0.62rem;
    line-height: 1.25;
  }

  .feature-card,
  .step-card,
  .integration-card,
  .price-card,
  .tier-card,
  .story-panel,
  .faq-item,
  .contact-panel,
  .contact-card,
  .timeline-card,
  .signal-card {
    padding: 22px;
  }

  .device-frame { padding: 10px; }
  .device-screen { padding: 16px; min-height: 460px; }
  .signal-grid { grid-template-columns: 1fr; }

  .hero-calendar-strip {
    position: static;
    margin-bottom: 18px;
    width: auto;
    filter: none;
    transform: none;
  }

  .hero-calendar-tag {
    transform: none;
  }

  .hero-calendar-icons {
    display: flex;
    height: auto;
    gap: 10px;
    margin-top: 12px;
    justify-content: center;
  }

  .hero-calendar-icon {
    width: 56px;
    height: 56px;
  }
}

@media (max-height: 640px) and (orientation: landscape) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
    align-items: center;
    gap: 24px;
  }

  .hero-copy h1 {
    max-width: 8ch;
    font-size: clamp(2.3rem, 5vw, 3.7rem);
    line-height: 0.94;
  }

  .hero-lead {
    max-width: 34ch;
  }

  .hero-stage,
  .hero-stage-grid,
  .savings-panel {
    min-height: 440px;
  }

  .hero-stage-grid {
    padding-top: 0;
  }

  .proof-panel {
    position: absolute;
    inset: 0;
    min-height: 440px;
    display: block;
    margin-top: 0;
    pointer-events: none;
  }

  .proof-strip,
  .proof-strip:first-child,
  .proof-strip:last-child {
    position: absolute;
  }

  .proof-strip:first-child {
    top: 10px;
    left: -6px;
  }

  .proof-strip:last-child {
    right: 4px;
    bottom: 22px;
    justify-items: end;
  }

  .proof-panel .panel-tag {
    width: auto;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.64rem;
  }

  .proof-inline-icons {
    gap: 10px;
    padding-left: 6px;
  }

  .proof-inline-icons-delivery {
    gap: 12px;
    justify-content: flex-end;
  }

  .proof-mini-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .hero-phone-image {
    width: min(100%, 272px);
  }
}
