:root {
  --bg: #071018;
  --bg-deep: #040a0f;
  --surface: #0b1620;
  --surface-raised: #102331;
  --surface-soft: #0d1b26;
  --text: #f5fbff;
  --text-soft: #d6e7f0;
  --muted: #9bb2c1;
  --primary: #0369a1;
  --primary-bright: #22d3ee;
  --cyan: #67e8f9;
  --green: #6ee7b7;
  --line: rgba(148, 180, 199, 0.16);
  --line-strong: rgba(34, 211, 238, 0.32);
  --glow: rgba(14, 165, 233, 0.28);
  --container: 75rem;
  --header-height: 5rem;
  --radius: 1rem;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(circle at 20% 0%, rgba(14, 165, 233, 0.1), transparent 32%);
  content: "";
  pointer-events: none;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--primary);
  color: #fff;
}

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

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

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

button,
input {
  font: inherit;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  font-weight: 750;
  line-height: 1.03;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 em,
h2 em {
  color: var(--primary-bright);
  font-style: normal;
}

.container {
  width: min(calc(100% - 3rem), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  border-radius: 0.5rem;
  background: #fff;
  color: #071018;
  font-weight: 700;
  transition: transform 160ms ease;
}

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

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

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 0.65rem;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 750;
  line-height: 1;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.button svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

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

.button:active {
  transform: translateY(0);
}

.button--primary {
  background: linear-gradient(135deg, #0369a1, #075985);
  box-shadow: 0 0.8rem 2.5rem rgba(3, 105, 161, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  color: #fff;
}

.button--primary:hover {
  background: linear-gradient(135deg, #0277b5, #075985);
  box-shadow: 0 1rem 3rem rgba(3, 105, 161, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button--ghost {
  border-color: var(--line);
  background: rgba(11, 22, 32, 0.62);
  color: var(--text-soft);
}

.button--ghost:hover {
  border-color: var(--line-strong);
  background: rgba(14, 165, 233, 0.1);
  color: #fff;
}

.button--light {
  background: #fff;
  color: #0d1b26;
}

.button--light:hover {
  background: #e0f2fe;
}

.button--compact {
  min-height: 2.75rem;
  padding-inline: 1rem;
  font-size: 0.86rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand__mark {
  position: relative;
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 0.55rem;
  background: rgba(14, 165, 233, 0.12);
  box-shadow: inset 0 0 1rem rgba(14, 165, 233, 0.1);
}

.brand__mark svg {
  width: 1.45rem;
  fill: var(--primary-bright);
}

.brand__spark {
  fill: var(--cyan);
}

.brand__name {
  font-size: 1.08rem;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-is-open {
  border-color: var(--line);
  background: rgba(7, 16, 24, 0.88);
  box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.desktop-nav a,
.header-login {
  position: relative;
  padding-block: 0.8rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.45rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--cyan);
  content: "";
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.header-login:hover {
  color: #fff;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(58rem, 100svh);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 38%, rgba(14, 165, 233, 0.13), transparent 28rem),
    linear-gradient(135deg, var(--bg-deep) 0%, #071722 52%, #03080c 100%);
}

.hero::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 10, 15, 0.98) 0%, rgba(4, 10, 15, 0.82) 40%, rgba(4, 10, 15, 0.2) 72%, rgba(4, 10, 15, 0.38) 100%), linear-gradient(0deg, var(--bg) 0%, transparent 28%);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: -18%;
  background-image:
    linear-gradient(rgba(103, 232, 249, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 232, 249, 0.07) 1px, transparent 1px);
  background-size: 4rem 4rem;
  content: "";
  opacity: 0.46;
  pointer-events: none;
  transform: rotate(-8deg) scale(1.08);
  -webkit-mask-image: radial-gradient(circle at 72% 48%, #000 0%, transparent 58%);
  mask-image: radial-gradient(circle at 72% 48%, #000 0%, transparent 58%);
}

.hero__glow {
  position: absolute;
  z-index: 1;
  inset: -22%;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 38%, rgba(103, 232, 249, 0.24), transparent 17%),
    radial-gradient(circle at 79% 62%, rgba(14, 165, 233, 0.22), transparent 21%),
    radial-gradient(circle at 55% 68%, rgba(110, 231, 183, 0.1), transparent 18%);
  animation: hero-aurora 14s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
  pointer-events: none;
}

.hero__glow::before {
  position: absolute;
  top: 4%;
  bottom: 4%;
  left: 58%;
  width: 22%;
  background: linear-gradient(90deg, transparent, rgba(103, 232, 249, 0.13), transparent);
  content: "";
  filter: blur(0.6rem);
  opacity: 0;
  transform: translate3d(-70%, 0, 0) skewX(-12deg);
  animation: hero-scan 9s ease-in-out infinite;
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: min(58rem, 100svh);
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 3rem;
  padding-top: calc(var(--header-height) + 3.5rem);
  padding-bottom: 2.25rem;
}

.hero__copy {
  max-width: 47rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 1.8rem;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 0.7rem currentColor;
}

.hero h1 {
  max-width: 48rem;
  margin-top: 1.35rem;
  font-size: clamp(3.5rem, 7vw, 6.8rem);
  line-height: 0.94;
}

.hero__lead {
  max-width: 42rem;
  margin-top: 1.7rem;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.1rem;
}

.mode-card::before,
.pricing-card::before {
  position: absolute;
  top: -1px;
  left: 2rem;
  width: 4rem;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  box-shadow: 0 0 1rem rgba(103, 232, 249, 0.7);
  content: "";
}

.hero__facts {
  display: grid;
  grid-column: 1 / -1;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.hero__facts li {
  display: flex;
  min-height: 5.5rem;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 2rem;
  border-right: 1px solid var(--line);
}

.hero__facts li:first-child {
  padding-left: 0;
}

.hero__facts li:last-child {
  border-right: 0;
}

.hero__facts strong {
  color: var(--primary-bright);
  font-family: var(--font-mono);
  font-size: 1.45rem;
}

.hero__facts span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.section {
  position: relative;
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

.section-heading {
  max-width: 48rem;
}

.section-heading h2,
.pricing-card h2,
.final-cta h2 {
  margin-top: 1.1rem;
  font-size: clamp(2.55rem, 5vw, 4.8rem);
}

.section-heading > h2 + p,
.section-heading--split > p {
  max-width: 34rem;
  margin-top: 1.3rem;
  color: var(--muted);
  line-height: 1.75;
}

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
  align-items: end;
  gap: 3rem;
}

.section-heading--split > p {
  margin-top: 0;
  padding-bottom: 0.4rem;
}

.dashboard {
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg), #08131d 55%, var(--bg));
}

.dashboard::before {
  position: absolute;
  top: 22%;
  left: 50%;
  width: min(75rem, 96vw);
  height: 38rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.17);
  content: "";
  filter: blur(7rem);
  pointer-events: none;
}

.dashboard-frame {
  position: relative;
  z-index: 1;
  margin-top: 4rem;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 1.15rem;
  background: #061018;
  box-shadow: 0 3rem 7rem rgba(0, 0, 0, 0.48), 0 0 5rem rgba(14, 165, 233, 0.1);
}

.dashboard-frame__bar {
  display: flex;
  height: 2.8rem;
  align-items: center;
  gap: 0.4rem;
  padding-inline: 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(13, 27, 38, 0.92);
}

.dashboard-frame__bar span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #5d6070;
}

.dashboard-frame__bar span:first-child {
  background: #ef6a68;
}

.dashboard-frame__bar span:nth-child(2) {
  background: #eabf5d;
}

.dashboard-frame__bar span:nth-child(3) {
  background: #5cc790;
}

.dashboard-frame__bar p {
  flex: 1;
  color: #858da6;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-align: center;
}

.dashboard-frame__bar b {
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.61rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-frame > img {
  width: 100%;
  height: auto;
  image-rendering: auto;
}

.proof-list {
  position: relative;
  z-index: 2;
  display: grid;
  width: calc(100% - 4rem);
  margin: -1.2rem auto 0;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: rgba(11, 22, 32, 0.92);
  box-shadow: 0 1.3rem 3rem rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.proof-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border-right: 1px solid var(--line);
}

.proof-list li:last-child {
  border-right: 0;
}

.proof-list > li > span,
.process-list > li > span {
  flex: 0 0 auto;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.proof-list strong {
  font-size: 0.9rem;
}

.proof-list p {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.mode-grid {
  display: grid;
  margin-top: 4rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.mode-card {
  position: relative;
  display: flex;
  min-height: 35rem;
  overflow: hidden;
  flex-direction: column;
  padding: clamp(1.75rem, 4vw, 3.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(16, 35, 49, 0.92), rgba(6, 15, 22, 0.98));
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.mode-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.28);
}

.mode-card--boost {
  background: radial-gradient(circle at 88% 5%, rgba(103, 232, 249, 0.11), transparent 30%), linear-gradient(145deg, rgba(16, 35, 49, 0.92), rgba(6, 15, 22, 0.98));
}

.mode-card--boost::before {
  background: linear-gradient(90deg, var(--primary-bright), transparent);
}

.mode-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.mode-card__number {
  color: #727a94;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.mode-card__badge {
  margin-right: 1rem;
  margin-left: auto;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.mode-card__icon {
  width: 4rem;
  height: 4rem;
  padding: 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 0.75rem;
  background: rgba(14, 165, 233, 0.1);
  fill: none;
  stroke: var(--primary-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.mode-card--boost .mode-card__icon {
  border-color: rgba(103, 232, 249, 0.3);
  background: rgba(103, 232, 249, 0.07);
  stroke: var(--cyan);
}

.mode-card__label {
  margin-top: 3rem;
  color: var(--primary-bright);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mode-card h3 {
  margin-top: 0.75rem;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.mode-card__description {
  max-width: 33rem;
  margin-top: 1.25rem;
  color: var(--muted);
}

.feature-list {
  display: grid;
  margin-top: 2rem;
  gap: 0.75rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.feature-list li::before {
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.55rem;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 0.5rem var(--cyan);
  content: "";
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  margin-top: auto;
  padding-top: 2.2rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 750;
}

.text-link span {
  color: var(--cyan);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(0.3rem);
}

.mode-card__availability {
  width: fit-content;
  margin-top: auto;
  padding-top: 2.2rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process {
  border-block: 1px solid var(--line);
  background: var(--surface-soft);
}

.process__layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.process__heading {
  align-self: start;
}

.process__heading .button {
  margin-top: 2rem;
}

.process-list {
  display: grid;
}

.process-list li {
  display: grid;
  min-height: 10rem;
  grid-template-columns: 3.2rem 1fr;
  gap: 1.5rem;
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list h3 {
  font-size: 1.5rem;
  letter-spacing: -0.025em;
}

.process-list p {
  max-width: 36rem;
  margin-top: 0.75rem;
  color: var(--muted);
}

.pricing {
  overflow: hidden;
}

.pricing-card {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.75fr);
  align-items: end;
  gap: 4rem;
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid var(--line-strong);
  border-radius: 1.15rem;
  background: radial-gradient(circle at 88% 5%, rgba(103, 232, 249, 0.13), transparent 31%), radial-gradient(circle at 20% 100%, rgba(14, 165, 233, 0.22), transparent 45%), var(--surface-raised);
  box-shadow: 0 2.5rem 6rem rgba(0, 0, 0, 0.35);
}

.pricing-card::after {
  position: absolute;
  right: -7rem;
  bottom: -7rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgba(103, 232, 249, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(103, 232, 249, 0.025), 0 0 0 6rem rgba(103, 232, 249, 0.018);
  content: "";
}

.pricing-card__copy,
.pricing-card__action {
  position: relative;
  z-index: 1;
}

.pricing-card__copy > p:last-child {
  max-width: 42rem;
  margin-top: 1.5rem;
  color: var(--muted);
}

.pricing-card__action {
  display: grid;
  justify-items: start;
  gap: 1.5rem;
}

.price-lockup {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.price-lockup strong {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  text-shadow: 0 0 2rem rgba(103, 232, 249, 0.25);
}

.price-lockup span {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.4;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(6rem, 11vw, 10rem);
  border-top: 1px solid var(--line);
  background: radial-gradient(circle at 50% 55%, rgba(14, 165, 233, 0.23), transparent 34%), var(--bg-deep);
  text-align: center;
}

.final-cta::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 5rem;
  background: linear-gradient(var(--cyan), transparent);
  box-shadow: 0 0 1rem var(--cyan);
  content: "";
}

.final-cta__inner {
  position: relative;
  z-index: 3;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta p:not(.eyebrow) {
  max-width: 38rem;
  margin: 1.5rem auto 0;
  color: var(--muted);
}

.final-cta .button {
  margin-top: 2rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #040a0f;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 0.65fr 1.35fr 1.1fr;
  gap: 3rem;
  padding-block: 4rem;
}

.footer-brand p {
  max-width: 18rem;
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-column h2 {
  margin-bottom: 1rem;
  color: var(--text-soft);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column ul,
.footer-column dl {
  display: grid;
  gap: 0.65rem;
}

.footer-column li,
.footer-column dd,
.footer-column dt {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.footer-column a,
.site-footer__bottom a {
  transition: color 160ms ease;
}

.footer-column a:hover,
.site-footer__bottom a:hover {
  color: var(--cyan);
}

.footer-column dl div {
  display: grid;
  gap: 0.15rem;
}

.footer-column dt {
  color: #777f98;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.site-footer__bottom {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #939bb4;
  font-size: 0.74rem;
}

.cookie-banner {
  position: fixed;
  z-index: 200;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  transform: translateY(calc(100% + 2rem));
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner__inner {
  display: flex;
  width: min(100%, 62rem);
  margin-inline: auto;
  align-items: center;
  gap: 2rem;
  padding: 1.15rem;
  border: 1px solid var(--line-strong);
  border-radius: 0.9rem;
  background: rgba(11, 22, 32, 0.96);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(18px);
}

.cookie-banner__copy {
  flex: 1;
}

.cookie-banner h2 {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.cookie-banner p {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

.cookie-banner p a {
  color: var(--text-soft);
  text-decoration: underline;
  text-underline-offset: 0.15rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
}

.cookie-banner__button {
  min-height: 2.75rem;
  padding-inline: 1rem;
  font-size: 0.78rem;
}

.reveal-ready [data-reveal] {
  transform: translateY(1.5rem);
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-ready .mode-card:nth-child(2),
.reveal-ready .process-list li:nth-child(2) {
  transition-delay: 90ms;
}

.reveal-ready .process-list li:nth-child(3) {
  transition-delay: 180ms;
}

@keyframes hero-aurora {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to { transform: translate3d(3%, 2%, 0) scale(1.08); }
}

@keyframes hero-scan {
  0%, 16% { transform: translate3d(-70%, 0, 0) skewX(-12deg); opacity: 0; }
  38% { opacity: 0.72; }
  76% { opacity: 0.16; }
  100% { transform: translate3d(160%, 0, 0) skewX(-12deg); opacity: 0; }
}

@media (max-width: 61.25rem) {
  :root { --header-height: 4.5rem; }
  .desktop-nav,
  .site-header__actions { display: none; }
  .menu-toggle {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-content: center;
    gap: 0.42rem;
    border: 1px solid var(--line);
    border-radius: 0.6rem;
    background: rgba(11, 22, 32, 0.68);
    color: #fff;
    cursor: pointer;
  }
  .menu-toggle span {
    display: block;
    width: 1.15rem;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(0.24rem) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-0.24rem) rotate(-45deg); }
  .mobile-menu {
    display: block;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: rgba(7, 16, 24, 0.97);
    opacity: 0;
    visibility: hidden;
    transition: max-height 240ms ease, opacity 180ms ease, visibility 180ms ease, border-color 180ms ease;
  }
  .mobile-menu.is-open { max-height: 34rem; border-color: var(--line); opacity: 1; visibility: visible; }
  .mobile-menu__inner { display: grid; padding-block: 1rem 1.5rem; }
  .mobile-menu__inner > a { min-height: 3.25rem; padding-block: 0.8rem; border-bottom: 1px solid var(--line); color: var(--text-soft); font-weight: 650; }
  .mobile-menu__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1rem; }
  .hero { min-height: auto; }
  .hero::before { background: linear-gradient(90deg, rgba(4, 10, 15, 0.97), rgba(4, 10, 15, 0.74) 58%, rgba(4, 10, 15, 0.25)), linear-gradient(0deg, var(--bg) 0%, transparent 30%); }
  .hero__inner { min-height: 50rem; grid-template-columns: minmax(0, 1fr); gap: 2.5rem; padding-top: calc(var(--header-height) + 5rem); }
  .hero h1 { font-size: clamp(3.5rem, 8vw, 5.2rem); }
  .section-heading--split { grid-template-columns: 1fr; gap: 1.25rem; }
  .proof-list { width: calc(100% - 2rem); }
  .process__layout { grid-template-columns: 1fr; gap: 3.5rem; }
  .process__heading { max-width: 39rem; }
  .pricing-card { grid-template-columns: 1fr; gap: 2.5rem; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 48rem) {
  .container { width: min(calc(100% - 2rem), var(--container)); }
  .hero::before { background: linear-gradient(90deg, rgba(4, 10, 15, 0.96), rgba(4, 10, 15, 0.66)), linear-gradient(0deg, var(--bg) 0%, transparent 40%); }
  .hero::after { background-size: 3rem 3rem; opacity: 0.3; }
  .hero__inner { display: flex; min-height: 52rem; flex-direction: column; align-items: stretch; justify-content: center; gap: 2rem; padding-top: calc(var(--header-height) + 3rem); padding-bottom: 1rem; }
  .hero h1 { font-size: clamp(3rem, 13vw, 4.7rem); }
  .hero__lead { font-size: 1rem; line-height: 1.65; }
  .hero__facts { margin-top: auto; }
  .hero__facts li { min-height: 4.8rem; gap: 0.5rem; padding: 0.75rem; }
  .hero__facts li:first-child { padding-left: 0; }
  .hero__facts strong { font-size: 1.05rem; }
  .hero__facts span { font-size: 0.66rem; }
  .section-heading h2,
  .pricing-card h2,
  .final-cta h2 { font-size: clamp(2.35rem, 10vw, 3.6rem); }
  .dashboard-frame { margin-top: 2.75rem; border-radius: 0.7rem; }
  .dashboard-frame__bar { height: 2.25rem; padding-inline: 0.7rem; }
  .dashboard-frame__bar p { text-align: right; }
  .dashboard-frame__bar b { display: none; }
  .proof-list { width: calc(100% - 1rem); grid-template-columns: 1fr; }
  .proof-list li { padding: 1rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-list li:last-child { border-bottom: 0; }
  .mode-grid { grid-template-columns: 1fr; margin-top: 2.75rem; }
  .mode-card { min-height: 32rem; }
  .mode-card__label { margin-top: 2rem; }
  .process-list li { grid-template-columns: 2.4rem 1fr; gap: 0.75rem; }
  .pricing-card { width: calc(100% - 2rem); padding: 2rem 1.25rem; }
  .site-footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 0.35rem; }
  .cookie-banner__inner { align-items: stretch; flex-direction: column; gap: 1rem; }
  .cookie-banner__actions { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 34rem) {
  .brand__name { font-size: 1rem; }
  .hero__actions { display: grid; }
  .hero__actions .button { width: 100%; }
  .hero__facts span { display: none; }
  .hero__facts li { justify-content: center; }
  .hero__facts li:first-child { padding-left: 0.75rem; }
  .eyebrow { font-size: 0.63rem; }
  .mobile-menu__actions { grid-template-columns: 1fr; }
  .price-lockup { align-items: flex-start; flex-direction: column; gap: 0.65rem; }
  .pricing-card__action .button { width: 100%; }
  .cookie-banner { right: 0.5rem; bottom: 0.5rem; left: 0.5rem; }
  .cookie-banner__actions { grid-template-columns: 1fr; }
}

@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; }
  .hero__glow,
  .hero__glow::before { animation: none; }
  .reveal-ready [data-reveal] { transform: none; opacity: 1; }
}
