:root {
  color-scheme: dark;
  --bg: #040811;
  --bg-deep: #02050b;
  --panel: rgba(10, 19, 32, 0.78);
  --panel-strong: rgba(10, 20, 34, 0.96);
  --line: rgba(118, 158, 194, 0.2);
  --line-bright: rgba(60, 229, 225, 0.42);
  --text: #f2f7fb;
  --muted: #94a8bb;
  --cyan: #34e5df;
  --cyan-soft: #9af6ee;
  --blue: #5c8cff;
  --violet: #9b71ff;
  --pink: #ef5fa7;
  --green: #3ceab1;
  --danger: #ff7695;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shell: 1220px;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

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

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

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at 76% -6%, rgba(68, 87, 184, 0.22), transparent 34rem),
    radial-gradient(circle at 8% 16%, rgba(19, 176, 184, 0.13), transparent 30rem),
    linear-gradient(180deg, #060b15 0%, #030710 48%, #02050b 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 1000;
  padding: 0.7rem 1rem;
  color: #041012;
  background: var(--cyan-soft);
  border-radius: 10px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0 75%, rgba(2, 5, 11, 0.94));
}

.ambient-grid {
  position: absolute;
  inset: -30% -20% 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(89, 157, 191, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 157, 191, 0.12) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  transform: perspective(720px) rotateX(62deg) translateY(-6%);
  transform-origin: center top;
}

.orb {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.45;
  animation: float 12s ease-in-out infinite;
}

.orb-one {
  top: 10%;
  right: 7%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(52, 229, 223, 0.34);
  box-shadow: inset 0 0 100px rgba(52, 229, 223, 0.06), 0 0 110px rgba(52, 229, 223, 0.08);
}

.orb-two {
  top: 42%;
  left: -130px;
  width: 420px;
  height: 420px;
  background: rgba(65, 68, 178, 0.1);
  filter: blur(55px);
  animation-delay: -4s;
}

.orb-three {
  right: -100px;
  bottom: 6%;
  width: 330px;
  height: 330px;
  background: rgba(180, 60, 140, 0.08);
  filter: blur(54px);
  animation-delay: -7s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(113, 155, 192, 0.15);
  background: rgba(3, 8, 16, 0.72);
  backdrop-filter: blur(22px) saturate(135%);
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  opacity: 0.5;
  background: linear-gradient(90deg, transparent, rgba(52, 229, 223, 0.62), transparent);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: auto;
  height: 29px;
  filter: drop-shadow(0 0 18px rgba(52, 229, 223, 0.16));
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-left: auto;
}

.primary-nav a {
  padding: 0.56rem 0.78rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
  transition: color 160ms ease, background 160ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(100, 168, 194, 0.1);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.52rem;
  padding: 0.7rem 1.08rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  color: #031314;
  border-color: var(--cyan);
  background: linear-gradient(120deg, #93fbf4, #38e6df 52%, #58d8ff);
  box-shadow: 0 12px 30px rgba(52, 229, 223, 0.2), inset 0 1px rgba(255, 255, 255, 0.65);
}

.button-primary:hover {
  box-shadow: 0 17px 38px rgba(52, 229, 223, 0.28), inset 0 1px rgba(255, 255, 255, 0.7);
}

.button-secondary,
.button-quiet {
  color: var(--text);
  border-color: rgba(125, 170, 201, 0.25);
  background: rgba(11, 21, 35, 0.72);
}

.button-secondary:hover,
.button-quiet:hover {
  border-color: rgba(52, 229, 223, 0.5);
  background: rgba(14, 29, 45, 0.94);
}

.button-block {
  width: 100%;
}

.hero {
  min-height: 670px;
  padding: clamp(5.2rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.4rem);
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #b8cedc;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 27px;
  height: 1px;
  display: inline-block;
  background: linear-gradient(90deg, transparent, var(--cyan));
  box-shadow: 0 0 10px rgba(52, 229, 223, 0.7);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.04;
}

h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(3rem, 5.8vw, 5.65rem);
  font-weight: 800;
}

h1 span {
  color: transparent;
  background: linear-gradient(94deg, #f4fbff 0%, #7ff6ef 42%, #84a7ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.lead {
  max-width: 64ch;
  margin-bottom: 1.75rem;
  color: #aec0cf;
  font-size: clamp(1rem, 1.6vw, 1.13rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.honesty-note {
  max-width: 650px;
  margin-top: 1.25rem;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  border: 1px solid rgba(52, 229, 223, 0.2);
  border-radius: 13px;
  background: rgba(9, 22, 34, 0.54);
}

.honesty-note p {
  margin: 0;
  color: #93aabb;
  font-size: 0.82rem;
}

.honesty-note strong {
  color: #dcebf3;
}

.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 0.37rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(60, 234, 177, 0.8);
}

.hero-scene {
  min-height: 450px;
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.scene-halo {
  position: absolute;
  width: 90%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(52, 229, 223, 0.14), rgba(88, 106, 255, 0.07) 36%, transparent 68%);
  filter: blur(3px);
  animation: haloPulse 8s ease-in-out infinite;
}

.scene-stack {
  width: min(100%, 500px);
  height: 350px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(8deg) rotateY(-15deg) rotateZ(1deg);
  animation: sceneDrift 9s ease-in-out infinite;
}

.scene-card {
  position: absolute;
  width: 84%;
  min-height: 150px;
  padding: 1.2rem 1.3rem;
  overflow: hidden;
  border: 1px solid rgba(131, 189, 219, 0.28);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(17, 33, 53, 0.94), rgba(6, 14, 26, 0.82)),
    radial-gradient(circle at 20% 0, rgba(52, 229, 223, 0.16), transparent 45%);
  box-shadow: 0 38px 65px rgba(0, 0, 0, 0.32), inset 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.scene-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(124, 189, 211, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 189, 211, 0.09) 1px, transparent 1px);
  background-size: 24px 24px;
}

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

.scene-card span {
  display: block;
  color: #8fa9bd;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
}

.scene-card strong {
  margin-top: 1rem;
  display: block;
  color: #e7f8fb;
  font-size: 1.05rem;
}

.scene-card-back {
  top: 5px;
  left: 17%;
  opacity: 0.52;
  transform: translateZ(-80px) translateY(-32px);
}

.scene-card-mid {
  top: 93px;
  left: 8%;
  opacity: 0.78;
  transform: translateZ(-26px);
}

.scene-card-front {
  top: 194px;
  left: 0;
  min-height: 160px;
  border-color: rgba(52, 229, 223, 0.48);
  transform: translateZ(42px);
  box-shadow: 0 44px 85px rgba(0, 0, 0, 0.48), 0 0 35px rgba(52, 229, 223, 0.09);
}

.mini-lines {
  margin-top: 1.8rem;
  display: grid;
  gap: 0.55rem;
}

.mini-lines i {
  height: 5px;
  display: block;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(79, 213, 211, 0.68), rgba(94, 124, 252, 0.14));
}

.mini-lines i:nth-child(2) { width: 78%; }
.mini-lines i:nth-child(3) { width: 91%; }
.mini-lines i:nth-child(4) { width: 63%; }

.mini-bars {
  height: 54px;
  margin-top: 1.2rem;
  display: flex;
  align-items: end;
  gap: 7px;
}

.mini-bars i {
  width: 13%;
  display: block;
  border-radius: 4px 4px 1px 1px;
  background: linear-gradient(180deg, #71f7e9, rgba(69, 112, 221, 0.28));
}

.mini-bars i:nth-child(1) { height: 26%; }
.mini-bars i:nth-child(2) { height: 62%; }
.mini-bars i:nth-child(3) { height: 45%; }
.mini-bars i:nth-child(4) { height: 90%; }
.mini-bars i:nth-child(5) { height: 72%; }

.scene-pulse {
  margin-top: 1.45rem;
  display: flex;
  gap: 0.5rem;
}

.scene-pulse i {
  width: 9px;
  height: 9px;
  display: block;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(52, 229, 223, 0.74);
}

.scene-pulse i:nth-child(2) { opacity: 0.55; }
.scene-pulse i:nth-child(3) { opacity: 0.25; }

.trust-strip {
  border-block: 1px solid rgba(105, 151, 185, 0.15);
  background: rgba(6, 14, 24, 0.66);
  backdrop-filter: blur(12px);
}

.trust-grid {
  min-height: 78px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
}

.trust-grid span {
  min-height: 34px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-right: 1px solid var(--line);
  color: #9fb0be;
  font-size: 0.77rem;
  font-weight: 700;
}

.trust-grid span:first-child {
  padding-left: 0;
}

.trust-grid span:last-child {
  border-right: 0;
}

.trust-grid i {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-style: normal;
}

.plans-section,
.comparison-section,
.faq-section {
  padding: clamp(5rem, 9vw, 8.5rem) 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.6rem;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading h2,
.final-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  font-weight: 790;
}

.section-heading > p:last-child,
.final-card p {
  color: var(--muted);
}

.section-heading.compact {
  margin-bottom: 2rem;
}

.plan-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
  perspective: 1600px;
}

.plan-card {
  min-height: 560px;
  position: relative;
  padding: clamp(1.3rem, 2.5vw, 1.8rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(160deg, rgba(14, 27, 44, 0.9), rgba(6, 13, 23, 0.92));
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.04);
  transform-style: preserve-3d;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.plan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, 0.045) 48%, transparent 67%);
  transform: translateX(-100%);
  transition: transform 620ms ease;
}

.plan-card:hover {
  border-color: rgba(52, 229, 223, 0.44);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36), 0 0 26px rgba(52, 229, 223, 0.07);
  transform: translateY(-8px) rotateX(1.4deg);
}

.plan-card:hover::after {
  transform: translateX(100%);
}

.plan-featured {
  border-color: rgba(52, 229, 223, 0.54);
  background:
    radial-gradient(circle at 50% -6%, rgba(52, 229, 223, 0.17), transparent 39%),
    linear-gradient(160deg, rgba(14, 32, 49, 0.96), rgba(6, 14, 25, 0.96));
}

.featured-glow {
  position: absolute;
  top: -80px;
  right: 12%;
  left: 12%;
  height: 120px;
  border-radius: 50%;
  background: rgba(52, 229, 223, 0.22);
  filter: blur(42px);
}

.plan-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.plan-index {
  color: #7890a3;
  font-family: var(--mono);
  font-size: 0.72rem;
}

.plan-badge {
  padding: 0.35rem 0.62rem;
  border: 1px solid rgba(108, 171, 196, 0.26);
  border-radius: 999px;
  color: #c1d8e3;
  background: rgba(31, 70, 87, 0.25);
  font-size: 0.68rem;
  font-weight: 800;
}

.plan-card h3 {
  position: relative;
  z-index: 1;
  margin: 2.5rem 0 0.75rem;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 790;
}

.plan-summary {
  min-height: 4.3rem;
  position: relative;
  z-index: 1;
  margin-bottom: 1.35rem;
  color: var(--muted);
  font-size: 0.91rem;
}

.plan-limit {
  position: relative;
  z-index: 1;
  margin-bottom: 1.35rem;
  padding: 1.1rem 1.15rem;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: end;
  gap: 0.75rem;
  border: 1px solid rgba(111, 160, 190, 0.16);
  border-radius: 14px;
  background: rgba(2, 9, 17, 0.5);
}

.plan-limit del {
  color: #71889a;
  font-family: var(--mono);
  font-size: 1rem;
}

.plan-limit strong {
  color: var(--cyan-soft);
  font-family: var(--mono);
  font-size: 2.1rem;
  line-height: 1;
}

.plan-limit span {
  padding-bottom: 0.14rem;
  color: #8499aa;
  font-size: 0.72rem;
}

.feature-list {
  position: relative;
  z-index: 1;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.78rem;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.35rem;
  color: #b5c4cf;
  font-size: 0.83rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.52rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(52, 229, 223, 0.5);
}

.plan-card .button {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.pricing-disclaimer {
  max-width: 850px;
  margin: 1.4rem auto 0;
  color: #758b9c;
  font-size: 0.76rem;
  text-align: center;
}

.comparison-section {
  border-block: 1px solid rgba(105, 151, 185, 0.13);
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(7, 15, 26, 0.76);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
  scrollbar-color: rgba(52, 229, 223, 0.45) transparent;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(106, 150, 181, 0.12);
  text-align: left;
  font-size: 0.82rem;
}

thead th {
  color: #e5f2f7;
  background: rgba(19, 38, 57, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

tbody th {
  color: #aebfcc;
  font-weight: 700;
}

tbody td {
  color: #d3e0e7;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr:hover {
  background: rgba(52, 229, 223, 0.035);
}

.yes,
.no {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.yes::before,
.no::before {
  width: 7px;
  height: 7px;
  content: "";
  display: block;
  border-radius: 50%;
}

.yes {
  color: #8ff2d1;
}

.yes::before {
  background: var(--green);
  box-shadow: 0 0 9px rgba(60, 234, 177, 0.42);
}

.no {
  color: #9cafbd;
}

.no::before {
  background: #667a8b;
}

.faq-grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 0.65rem;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(8, 17, 29, 0.74);
  transition: border-color 160ms ease, background 160ms ease;
}

.faq-grid details[open] {
  border-color: rgba(52, 229, 223, 0.4);
  background: rgba(10, 24, 38, 0.88);
}

.faq-grid summary {
  min-height: 64px;
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #dfeaf0;
  font-size: 0.92rem;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary span {
  color: var(--cyan);
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform 160ms ease;
}

.faq-grid details[open] summary span {
  transform: rotate(45deg);
}

.faq-grid details p {
  margin: -0.2rem 1.15rem 1.15rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.final-cta {
  padding: 0 0 clamp(5rem, 9vw, 8rem);
}

.final-card {
  position: relative;
  padding: clamp(1.6rem, 4vw, 3.3rem);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  overflow: hidden;
  border: 1px solid rgba(52, 229, 223, 0.32);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 0, rgba(91, 110, 255, 0.2), transparent 35%),
    radial-gradient(circle at 5% 100%, rgba(52, 229, 223, 0.12), transparent 43%),
    rgba(10, 22, 36, 0.89);
  box-shadow: 0 38px 86px rgba(0, 0, 0, 0.3);
}

.final-card::before {
  content: "";
  position: absolute;
  top: -190px;
  right: -90px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(52, 229, 223, 0.18);
  border-radius: 50%;
}

.final-card > div {
  position: relative;
  z-index: 1;
}

.final-card h2 {
  max-width: 720px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.final-card p:last-child {
  max-width: 620px;
  margin-bottom: 0;
}

.final-actions {
  flex: 0 0 auto;
  display: grid;
  gap: 0.7rem;
}

.site-footer {
  padding: 3rem 0 1.3rem;
  border-top: 1px solid rgba(104, 149, 180, 0.15);
  background: rgba(2, 5, 10, 0.76);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand img {
  width: auto;
  height: 27px;
}

.footer-brand p {
  margin: 0.8rem 0 0;
  color: #74899a;
  font-size: 0.78rem;
}

.footer-links {
  max-width: 640px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem 1.1rem;
}

.footer-links a {
  color: #8da0b0;
  font-size: 0.76rem;
}

.footer-links a:hover {
  color: var(--cyan-soft);
}

.legal-line {
  margin-top: 2.5rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(105, 151, 184, 0.1);
  color: #5f7281;
  font-family: var(--mono);
  font-size: 0.65rem;
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -18px, 0); }
}

@keyframes sceneDrift {
  0%, 100% { transform: rotateX(8deg) rotateY(-15deg) rotateZ(1deg) translate3d(0, 0, 0); }
  50% { transform: rotateX(6deg) rotateY(-11deg) rotateZ(-0.4deg) translate3d(0, -10px, 0); }
}

@keyframes haloPulse {
  0%, 100% { transform: scale(0.96); opacity: 0.7; }
  50% { transform: scale(1.04); opacity: 1; }
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 70px;
    gap: 1rem;
  }

  .primary-nav a:nth-child(3),
  .primary-nav a:nth-child(4) {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 5.5rem;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-scene {
    min-height: 410px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid span {
    min-height: 54px;
    padding: 0 0.8rem;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid span:nth-child(even) {
    border-right: 0;
  }

  .trust-grid span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .plan-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-inline: auto;
  }

  .plan-card {
    min-height: 0;
  }

  .plan-summary {
    min-height: 0;
  }

  .final-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-actions {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 24px, var(--shell));
  }

  .site-header {
    position: static;
  }

  .header-inner {
    min-height: 66px;
  }

  .brand img {
    height: 25px;
  }

  .primary-nav {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0.55rem 0.8rem;
    font-size: 0.8rem;
  }

  .hero {
    padding: 4.2rem 0 3.8rem;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.5rem);
  }

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

  .honesty-note {
    padding: 0.8rem;
  }

  .hero-scene {
    min-height: 330px;
    margin-top: 0.5rem;
  }

  .scene-stack {
    height: 300px;
    transform: rotateX(6deg) rotateY(-8deg) rotateZ(0.5deg);
    animation: none;
  }

  .scene-card {
    width: 90%;
    min-height: 126px;
    padding: 1rem;
  }

  .scene-card-back { top: 8px; left: 10%; }
  .scene-card-mid { top: 78px; left: 5%; }
  .scene-card-front { top: 160px; min-height: 138px; }

  .trust-grid {
    grid-template-columns: 1fr;
    padding-block: 0.45rem;
  }

  .trust-grid span,
  .trust-grid span:first-child {
    min-height: 45px;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid span:nth-last-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .trust-grid span:last-child {
    border-bottom: 0;
  }

  .plans-section,
  .comparison-section,
  .faq-section {
    padding: 4.5rem 0;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading .eyebrow {
    justify-content: flex-start;
  }

  .plan-card {
    padding: 1.15rem;
  }

  .plan-card h3 {
    margin-top: 2rem;
  }

  .final-actions {
    grid-template-columns: 1fr;
  }

  .footer-inner,
  .legal-line {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

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

  .scene-stack {
    transform: rotateX(7deg) rotateY(-12deg);
  }
}
