:root {
  color-scheme: light;
  --bg: #f6f8fc;
  --paper: #ffffff;
  --paper-soft: #f2f5fb;
  --glass: rgba(255, 255, 255, 0.66);
  --glass-strong: rgba(255, 255, 255, 0.82);
  --glass-edge: rgba(255, 255, 255, 0.92);
  --ink: #10131a;
  --muted: #667080;
  --muted-strong: #394250;
  --line: rgba(16, 19, 26, 0.1);
  --line-strong: rgba(16, 19, 26, 0.18);
  --red: #ff4d3d;
  --red-dark: #da3024;
  --orange: #ff8a3d;
  --yellow: #ffd76a;
  --blue: #2458ff;
  --green: #17b978;
  --shadow: 0 24px 70px rgba(25, 35, 56, 0.12);
  --shadow-strong: 0 38px 110px rgba(25, 35, 56, 0.2);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
  line-height: 1.55;
  background:
    linear-gradient(122deg, rgba(255, 77, 61, 0.12) 0%, transparent 28%),
    linear-gradient(238deg, rgba(36, 88, 255, 0.1) 0%, transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fe 44%, #ffffff 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(24, 32, 52, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 32, 52, 0.055) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.62) 42%, transparent 88%);
}

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

a {
  color: var(--red-dark);
  font-weight: 760;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 30;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.site-nav,
.hero,
.section,
.chapter,
.privacy-band,
.final-cta,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 64px;
  margin-top: 14px;
  padding: 10px 12px 10px 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.66));
  border: 1px solid var(--glass-edge);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(20, 30, 50, 0.11);
  backdrop-filter: blur(28px) saturate(1.4);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--ink);
  font-weight: 860;
}

.brand:hover,
.nav-cta:hover {
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 47% 65%, #8f2f24 0 26%, transparent 27%),
    linear-gradient(135deg, #fff 0 48%, #ffb16f 49% 100%);
  border: 2px solid #8f2f24;
  box-shadow:
    inset 0 0 0 4px rgba(255, 255, 255, 0.68),
    0 10px 22px rgba(255, 77, 61, 0.2);
}

.brand-mark::after {
  position: absolute;
  right: -7px;
  top: 8px;
  width: 9px;
  height: 10px;
  content: "";
  border: 2px solid #8f2f24;
  border-left: 0;
  border-radius: 0 9px 9px 0;
}

.nav-links {
  justify-content: center;
  gap: clamp(14px, 2.4vw, 30px);
  font-size: 14px;
}

.nav-links a {
  color: var(--muted-strong);
  font-weight: 760;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  color: #fff;
  background: linear-gradient(135deg, var(--red-dark), var(--red) 58%, var(--orange));
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(255, 77, 61, 0.28);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(32px, 5vw, 74px);
  align-items: center;
  min-height: clamp(680px, calc(100vh - 94px), 820px);
  padding: clamp(60px, 7vw, 90px) 0 clamp(40px, 6vw, 72px);
}

.hero-copy,
.chapter-copy,
.story-stack,
.section-heading,
.privacy-copy,
.final-cta > div {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(56px, 8vw, 98px);
  line-height: 0.92;
  text-wrap: balance;
}

h1 span {
  display: block;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  text-wrap: balance;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.08;
}

p,
li,
dd,
summary {
  font-size: 17px;
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted-strong);
  font-size: clamp(20px, 2vw, 23px);
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 19px;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(25, 35, 56, 0.09);
  backdrop-filter: blur(18px) saturate(1.3);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button::after {
  width: 16px;
  height: 16px;
  margin-left: 10px;
  content: "";
  background: currentColor;
  clip-path: polygon(25% 18%, 75% 50%, 25% 82%, 25% 62%, 48% 50%, 25% 38%);
  transition: transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(25, 35, 56, 0.14);
}

.button:hover::after {
  transform: translateX(3px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red-dark), var(--red) 58%, var(--orange));
  border-color: transparent;
  box-shadow: 0 20px 48px rgba(255, 77, 61, 0.32);
}

.button.secondary {
  color: var(--ink);
  background: var(--glass);
  border-color: var(--glass-edge);
}

.hero-cred {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.hero-cred span,
.feature-pills span,
.use-case-rail span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 800;
  background: var(--glass);
  border: 1px solid var(--glass-edge);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(25, 35, 56, 0.05);
  backdrop-filter: blur(16px) saturate(1.2);
}

.use-case-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 610px;
  margin-top: 14px;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.5));
  border: 1px solid var(--glass-edge);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(25, 35, 56, 0.08);
  backdrop-filter: blur(24px) saturate(1.25);
}

.use-case-rail .rail-label {
  color: var(--red-dark);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-stage {
  position: relative;
  min-height: clamp(480px, 57vw, 650px);
  perspective: 1200px;
}

.stage-glow {
  position: absolute;
  inset: 2% 0 auto auto;
  width: 72%;
  height: 64%;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 77, 61, 0.22), rgba(255, 138, 61, 0.18) 38%, rgba(36, 88, 255, 0.14));
  filter: blur(22px);
  transform: rotate(-4deg);
  animation: glow-drift 8s ease-in-out infinite alternate;
}

.app-window,
.showcase-card,
.story-image,
.cta-card,
.feature-card,
.comparison-grid article,
details {
  border: 1px solid var(--glass-edge);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(1.35);
}

.app-window {
  position: absolute;
  inset: 6% 0 auto 2%;
  width: 92%;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.64));
  border-color: rgba(255, 255, 255, 0.95);
  transform: rotateX(5deg) rotateY(-8deg) rotateZ(-1deg);
  transform-style: preserve-3d;
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(28px) saturate(1.35);
}

.app-window::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.55), transparent 32%, rgba(255, 255, 255, 0.18)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 20%);
}

.app-window img,
.showcase-card img,
.story-image img,
.cta-card img,
.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.window-bar {
  display: flex;
  gap: 7px;
  align-items: center;
  height: 34px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px) saturate(1.25);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6259;
}

.window-bar span:nth-child(2) {
  background: #ffbd2e;
}

.window-bar span:nth-child(3) {
  background: #28c840;
}

.floating-panel {
  position: absolute;
  display: grid;
  gap: 3px;
  padding: 15px 17px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58));
  border: 1px solid var(--glass-edge);
  border-radius: var(--radius);
  box-shadow: 0 22px 52px rgba(25, 35, 56, 0.16);
  backdrop-filter: blur(26px) saturate(1.35);
}

.panel-kicker {
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-timer {
  right: 1%;
  bottom: 13%;
  min-width: 168px;
  animation: float-panel 5s ease-in-out infinite;
}

.panel-timer strong {
  font-size: 34px;
  line-height: 1;
}

.panel-status {
  left: 0;
  top: 14%;
  grid-auto-flow: column;
  align-items: center;
  animation: float-panel 5.6s ease-in-out infinite reverse;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(37, 184, 132, 0.64);
  animation: pulse 2s ease-out infinite;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(36, 88, 255, 0.16);
  border-radius: 999px;
  pointer-events: none;
}

.orbit-one {
  right: 2%;
  top: 2%;
  width: 136px;
  height: 136px;
  animation: spin-soft 18s linear infinite;
}

.orbit-two {
  left: 4%;
  bottom: 5%;
  width: 88px;
  height: 88px;
  animation: spin-soft 14s linear infinite reverse;
}

.chapter {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(36px, 6vw, 66px);
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.6)),
    linear-gradient(135deg, rgba(255, 77, 61, 0.1), rgba(36, 88, 255, 0.08));
  border: 1px solid var(--glass-edge);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(1.35);
}

.chapter::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.72), transparent 28%),
    linear-gradient(300deg, rgba(255, 77, 61, 0.08), transparent 38%);
}

.chapter > *,
.feature-card > *,
.comparison-grid article > *,
.privacy-band > *,
.final-cta > *,
details > * {
  position: relative;
  z-index: 1;
}

.chapter p {
  color: var(--muted-strong);
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.feature-pills span {
  background: var(--glass-strong);
}

.showcase-card,
.story-image,
.cta-card {
  margin: 0;
  overflow: hidden;
  background: var(--glass-strong);
}

.section {
  padding: clamp(76px, 10vw, 128px) 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p,
.story-stack p,
.comparison-grid p,
.privacy-copy p,
.final-cta p,
details p {
  color: var(--muted);
}

.feature-board {
  border-top: 1px solid rgba(16, 19, 26, 0.08);
}

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

.feature-card {
  position: relative;
  display: grid;
  gap: 20px;
  min-height: 330px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58));
  backdrop-filter: blur(26px) saturate(1.35);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.feature-card::before,
.comparison-grid article::before,
details::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.64), transparent 36%);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.feature-card p {
  margin: 12px 0 0;
}

.feature-card img {
  align-self: end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.span-two {
  grid-column: span 2;
}

.accent-card {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 38%),
    linear-gradient(135deg, #151923, #2b3144 52%, var(--red-dark));
}

.accent-card h3,
.accent-card .eyebrow,
.accent-card p {
  color: #fff;
}

.image-story,
.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.story-stack {
  display: grid;
  gap: 18px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 16px 14px 40px;
  background: var(--glass-strong);
  border: 1px solid var(--glass-edge);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(25, 35, 56, 0.06);
  backdrop-filter: blur(18px) saturate(1.2);
}

.check-list li::before {
  position: absolute;
  left: 16px;
  top: 19px;
  width: 12px;
  height: 9px;
  content: "";
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.comparison-grid article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 28px;
  background: var(--glass-strong);
}

.privacy-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
  padding: clamp(42px, 6vw, 72px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(135deg, #111827, #232b3f 52%, #4a1f1a);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.privacy-band::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.18), transparent 36%);
}

.privacy-band .eyebrow,
.privacy-band h2 {
  color: #fff;
}

.privacy-band p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
}

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

.privacy-grid span {
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 16px;
  color: #fff;
  font-weight: 820;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(18px) saturate(1.2);
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  position: relative;
  overflow: hidden;
  padding: 20px 22px;
  background: var(--glass-strong);
}

summary {
  cursor: pointer;
  font-weight: 820;
}

details p {
  margin: 12px 0 0;
}

.final-cta {
  position: relative;
  padding: clamp(42px, 6vw, 70px);
  margin-bottom: 54px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
    linear-gradient(135deg, rgba(255, 77, 61, 0.14), rgba(36, 88, 255, 0.08));
  border: 1px solid var(--glass-edge);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(1.35);
}

.final-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.7), transparent 30%);
}

.final-cta p {
  max-width: 680px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0 46px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

.site-footer div {
  display: flex;
  gap: 18px;
}

.support-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.support-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: end;
  padding: clamp(76px, 11vw, 132px) 0 clamp(38px, 6vw, 72px);
}

.support-hero h1 {
  max-width: 850px;
  font-size: clamp(50px, 8vw, 94px);
}

.support-note,
.support-card,
.support-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58));
  border: 1px solid var(--glass-edge);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(1.35);
}

.support-note {
  padding: 24px;
}

.support-note::before,
.support-card::before,
.support-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.68), transparent 36%);
}

.support-note > *,
.support-card > *,
.support-panel > * {
  position: relative;
  z-index: 1;
}

.support-note p:last-child,
.support-card p,
.support-panel p {
  color: var(--muted);
}

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

.support-card {
  min-height: 260px;
  padding: 26px;
}

.support-card h2 {
  margin-top: 22px;
  font-size: clamp(26px, 3vw, 38px);
}

.support-icon {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--red) 0 20%, transparent 21%),
    conic-gradient(from 30deg, var(--red), var(--orange), var(--yellow), var(--red));
  box-shadow: 0 14px 34px rgba(255, 77, 61, 0.22);
}

.support-icon-alt {
  border-radius: 15px;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.72), transparent 17px),
    linear-gradient(145deg, #1748ff 0%, #7b7cff 52%, #17d7c8 100%);
  box-shadow:
    0 16px 38px rgba(36, 88, 255, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.support-icon-alt::before {
  position: absolute;
  left: 11px;
  top: 13px;
  width: 24px;
  height: 18px;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.74));
  border-radius: 6px;
  box-shadow:
    inset 0 0 0 1px rgba(16, 19, 26, 0.08),
    0 7px 16px rgba(12, 20, 44, 0.18);
}

.support-icon-alt::after {
  position: absolute;
  left: 21px;
  top: 18px;
  width: 15px;
  height: 10px;
  content: "";
  background: var(--blue);
  clip-path: polygon(0 34%, 54% 34%, 54% 0, 100% 50%, 54% 100%, 54% 66%, 0 66%);
}

.support-icon-ring {
  background:
    radial-gradient(circle at 50% 50%, var(--paper) 0 34%, transparent 35%),
    conic-gradient(from 0deg, var(--green), var(--blue), var(--green));
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 16px;
  padding: clamp(16px, 4vw, 34px) 0 clamp(58px, 8vw, 96px);
}

.support-panel {
  padding: clamp(24px, 4vw, 36px);
}

.support-panel h2 {
  margin-bottom: 18px;
}

.support-panel .check-list {
  margin-top: 0;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

html.motion-ready [data-reveal] {
  transform: translateY(18px);
  transition: transform 680ms ease;
}

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

.tilt-card {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

@keyframes glow-drift {
  from {
    transform: translate3d(0, 0, 0) rotate(-4deg) scale(1);
  }
  to {
    transform: translate3d(-24px, 16px, 0) rotate(4deg) scale(1.035);
  }
}

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 184, 132, 0.64);
  }
  100% {
    box-shadow: 0 0 0 12px rgba(37, 184, 132, 0);
  }
}

@keyframes spin-soft {
  to {
    transform: rotate(360deg);
  }
}

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

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

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

@media (max-width: 980px) {
  .site-nav,
  .hero,
  .support-page,
  .section,
  .chapter,
  .privacy-band,
  .final-cta,
  .site-footer {
    width: min(760px, calc(100% - 28px));
  }

  .site-nav {
    position: static;
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .hero,
  .support-hero,
  .support-layout,
  .chapter,
  .image-story,
  .privacy-band,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-stage {
    min-height: clamp(390px, 78vw, 560px);
  }

  .app-window {
    left: 3%;
    width: 92%;
  }

  .feature-grid,
  .support-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .span-two {
    grid-column: auto;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-nav,
  .hero,
  .support-page,
  .section,
  .chapter,
  .privacy-band,
  .final-cta,
  .site-footer {
    width: min(100% - 24px, 520px);
  }

  .site-nav {
    margin-top: 8px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 48px);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(31px, 9.4vw, 42px);
  }

  .support-hero h1 {
    font-size: clamp(40px, 12vw, 48px);
  }

  .lead {
    font-size: 18px;
  }

  .actions,
  .button {
    width: 100%;
  }

  .hero-stage {
    overflow: hidden;
    min-height: 330px;
  }

  .app-window {
    inset: 8% 0 auto 0;
    width: 100%;
    transform: rotateX(3deg) rotateY(-2deg) rotateZ(-1deg);
  }

  .window-bar {
    height: 28px;
  }

  .panel-timer {
    right: 8px;
    bottom: 17%;
    min-width: 142px;
  }

  .panel-status {
    left: 0;
    top: 10%;
  }

  .floating-panel {
    padding: 12px 14px;
  }

  .panel-timer strong {
    font-size: 28px;
  }

  .hero-cred,
  .use-case-rail {
    justify-content: flex-start;
  }

  .chapter,
  .privacy-band,
  .final-cta {
    padding: 28px 18px;
  }

  .feature-card,
  .support-card,
  .support-panel,
  .support-note,
  .comparison-grid article,
  details {
    padding: 20px;
  }

  .site-footer {
    flex-direction: column;
  }
}
