:root {
  color-scheme: light;
  --bg: #f7fafb;
  --bg-soft: #eef5f7;
  --surface: #ffffff;
  --surface-glass: rgba(255, 255, 255, 0.82);
  --ink: #111317;
  --muted: #5e6672;
  --line: rgba(17, 19, 23, 0.12);
  --line-strong: rgba(17, 19, 23, 0.2);
  --mint: #38e8c6;
  --mint-dark: #00a987;
  --coral: #ff735f;
  --coral-dark: #e55745;
  --shadow: 0 24px 70px rgba(12, 22, 32, 0.14);
  --shadow-soft: 0 10px 36px rgba(12, 22, 32, 0.08);
  --radius: 8px;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: #05080a;
  color: var(--ink);
  font-family: var(--font);
  letter-spacing: 0;
  isolation: isolate;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.ambient-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.22) contrast(1.08);
  opacity: 1;
  transform: scale(1.01);
}

.ambient-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.16), transparent 20rem),
    radial-gradient(circle at 70% 22%, rgba(56, 232, 198, 0.16), transparent 24rem),
    linear-gradient(180deg, rgba(3, 7, 9, 0.48) 0%, rgba(3, 7, 9, 0.28) 62%, rgba(247, 250, 251, 0.72) 92%, rgba(255, 255, 255, 0.96) 100%);
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.42);
}

.rain-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0.95;
  mix-blend-mode: screen;
}

.celebration-confetti {
  position: fixed;
  inset: 0;
  z-index: 10000;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

.celebration-confetti[hidden] {
  display: none;
}

main,
.site-footer,
.purchase-modal {
  position: relative;
  z-index: 1;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto minmax(240px, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  min-height: 72px;
  padding: 14px clamp(18px, 3.4vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 10, 12, 0.54);
  backdrop-filter: blur(24px) saturate(1.18);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 10, 12, 0.76);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #ffffff;
  font-size: 21px;
  font-weight: 760;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: contain;
  filter: drop-shadow(0 9px 16px rgba(0, 0, 0, 0.18));
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 24px;
  border-radius: 8px 8px 12px 12px;
  background: #07090b;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.16), 0 8px 18px rgba(0, 0, 0, 0.16);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  display: block;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 99px;
  background: var(--mint);
}

.brand-mark::before {
  left: 8px;
}

.brand-mark::after {
  right: 8px;
  opacity: 0.58;
}

.brand-mark span:first-child,
.brand-mark span:last-child {
  position: absolute;
  top: -4px;
  width: 7px;
  height: 7px;
  border-radius: 99px 99px 0 0;
  background: #07090b;
}

.brand-mark span:first-child {
  left: 5px;
  transform: rotate(-22deg);
}

.brand-mark span:last-child {
  right: 5px;
  transform: rotate(22deg);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 680;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: #79ffe4;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.language-menu {
  position: relative;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 96px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.language-switch svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 160ms ease;
}

.language-switch:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.language-menu.is-open .language-switch svg {
  transform: rotate(180deg);
}

.language-options {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 140;
  display: grid;
  min-width: 148px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(7, 10, 12, 0.98);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px) saturate(1.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.language-menu.is-open .language-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-options button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-size: 13px;
  font-weight: 760;
  text-align: left;
}

.language-options button:hover,
.language-options button[aria-selected="true"] {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.language-options button[aria-selected="true"]::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(56, 232, 198, 0.72);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(56, 232, 198, 0.38);
  outline-offset: 3px;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-dark {
  background: #07090b;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.button-dark:hover {
  background: #15181d;
}

.button-light {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(14, 25, 34, 0.07);
}

.button-ghost {
  min-height: 38px;
  padding: 0 14px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.button-coral {
  background: var(--coral);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(255, 115, 95, 0.28);
}

.button-coral:hover {
  background: var(--coral-dark);
}

.button-large {
  min-height: 54px;
  padding: 0 22px;
  font-size: 15px;
}

.hero {
  position: relative;
  z-index: 1;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  max-width: min(1680px, calc(100vw - 64px));
  min-height: min(1040px, calc(100svh - 72px));
  margin: 0 auto;
  padding: 64px 0 78px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 28px -18px 36px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018) 40%, rgba(0, 0, 0, 0.16)),
    rgba(8, 12, 14, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 40px 110px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(4px) saturate(1.12);
}

.hero-copy {
  position: static;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  box-sizing: border-box;
  width: min(100%, 980px);
  min-height: clamp(340px, 29vw, 440px);
  text-align: center;
}

.hero h1 {
  order: 2;
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 830;
  letter-spacing: 0;
  line-height: 1.04;
  white-space: pre-line;
  text-shadow: 0 12px 42px rgba(0, 0, 0, 0.46);
}

.hero-title {
  order: 2;
  max-width: 900px;
  margin-top: clamp(-16px, -1vw, -6px);
  text-wrap: balance;
}

.hero-lede {
  order: 4;
  max-width: 760px;
  margin: 12px auto 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(20px, 1.72vw, 27px);
  font-weight: 650;
  line-height: 1.48;
}

.hero-wind-card {
  position: absolute;
  top: clamp(26px, 2.7vw, 58px);
  right: clamp(24px, 3vw, 72px);
  order: 1;
  z-index: 1;
  flex: 0 0 auto;
  width: clamp(150px, 14vw, 320px);
  height: clamp(174px, 16.24vw, 371px);
  aspect-ratio: 1 / 1.16;
  margin: 0;
  opacity: 0.98;
  pointer-events: none;
  overflow: visible;
}

.hero-wind-card img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.2));
}

.hero-wind-card.is-webgl-ready img {
  opacity: 0;
}

.hero-wind-card canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.22));
}

.hero-actions {
  order: 5;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.hero-meta {
  order: 6;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 22px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 650;
  list-style: none;
}

.hero-meta li {
  display: flex;
  align-items: center;
}

.hero-meta li + li::before {
  content: "";
  width: 1px;
  height: 13px;
  margin: 0 13px;
  background: rgba(255, 255, 255, 0.26);
}

.hero-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.real-product-showcase {
  position: relative;
  width: min(1420px, 100%);
  margin: 0 auto;
  padding: clamp(10px, 1.4vw, 20px);
  isolation: isolate;
}

.real-product-showcase::before {
  content: "";
  position: absolute;
  inset: auto 8% -22px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.58), transparent 70%);
  filter: blur(16px);
  opacity: 0.78;
}

.real-product-showcase::after {
  content: "";
  position: absolute;
  inset: 10% 3% 14%;
  z-index: -1;
  border-radius: 36px;
  background:
    radial-gradient(circle at 26% 18%, rgba(69, 255, 119, 0.18), transparent 28rem),
    radial-gradient(circle at 74% 8%, rgba(46, 199, 255, 0.14), transparent 26rem),
    rgba(0, 0, 0, 0.12);
  filter: blur(22px);
}

.real-shot {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(127, 255, 169, 0.2);
  border-radius: clamp(18px, 2vw, 30px);
  background: #020403;
  box-shadow:
    0 32px 92px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.real-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%),
    radial-gradient(circle at 48% 0%, rgba(255, 255, 255, 0.1), transparent 26rem);
  mix-blend-mode: screen;
}

.real-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.real-shot-main {
  aspect-ratio: 21 / 10;
  border-radius: clamp(22px, 2.4vw, 38px);
  transform: rotateX(0deg) rotateY(-1.2deg);
  transform-origin: center;
}

.real-shot-main img {
  object-position: center top;
}

.real-shot-stack {
  position: absolute;
  inset: auto clamp(18px, 3vw, 54px) clamp(-62px, -4.1vw, -34px);
  z-index: 8;
  display: grid;
  grid-template-columns: 1.06fr 0.86fr 1.02fr;
  align-items: end;
  gap: clamp(12px, 1.8vw, 24px);
  pointer-events: none;
}

.real-shot-stack .real-shot {
  border-color: rgba(69, 255, 119, 0.26);
  background: rgba(0, 0, 0, 0.84);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(69, 255, 119, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.real-shot-dashboard {
  aspect-ratio: 1368 / 602;
  transform: translateY(10px) rotate(-1.4deg);
}

.real-shot-search {
  aspect-ratio: 1906 / 1054;
  transform: translateY(34px) scale(1.04);
}

.real-shot-tasks {
  aspect-ratio: 1386 / 524;
  transform: translateY(16px) rotate(1.2deg);
}

.product-screens {
  position: relative;
  z-index: 1;
  max-width: min(1680px, calc(100vw - 64px));
  margin: clamp(58px, 6vw, 108px) auto 0;
}

.screen-rail {
  display: grid;
  grid-template-columns: 1.08fr 0.82fr 0.9fr 1.12fr 0.6fr;
  gap: clamp(12px, 1.4vw, 22px);
  align-items: stretch;
}

.screen-card {
  position: relative;
  overflow: hidden;
  min-height: 168px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.62);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.34);
}

.screen-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 38%),
    inset 0 0 0 1px rgba(127, 255, 169, 0.08);
}

.screen-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.screen-card-wide {
  grid-column: span 1;
}

.screen-card-tall {
  grid-row: span 2;
}

.screen-card-tall img {
  object-position: center top;
}

.screen-card-pill {
  align-self: start;
  min-height: 130px;
}

.screen-card-pill img {
  object-position: center;
}

.mac-showcase {
  position: relative;
  width: min(1280px, 100%);
  padding: clamp(10px, 1.2vw, 22px);
  perspective: 1600px;
}

.mac-showcase::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 2%;
  bottom: -18px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55), transparent 68%);
  filter: blur(10px);
  opacity: 0.9;
}

.desktop-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  background: #050607;
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.48),
    0 0 0 12px rgba(4, 5, 7, 0.82),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  isolation: isolate;
  transform: rotateX(0deg) rotateY(-1.5deg);
  transform-origin: center;
}

.desktop-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), transparent 18%, rgba(0, 0, 0, 0.42) 100%),
    radial-gradient(circle at 50% 92%, rgba(0, 0, 0, 0.7), transparent 24rem);
  pointer-events: none;
}

.app-demo-stage {
  border: 14px solid rgba(3, 4, 5, 0.96);
  border-radius: 30px;
  background:
    linear-gradient(124deg, rgba(250, 140, 79, 0.92) 0 11%, transparent 11% 100%),
    linear-gradient(145deg, transparent 0 16%, rgba(57, 116, 226, 0.98) 16% 34%, rgba(29, 76, 172, 0.82) 34% 48%, transparent 48% 100%),
    linear-gradient(36deg, transparent 0 52%, rgba(247, 171, 101, 0.92) 52% 66%, rgba(184, 122, 187, 0.56) 66% 74%, transparent 74% 100%),
    radial-gradient(circle at 80% 15%, rgba(255, 220, 164, 0.5), transparent 16rem),
    linear-gradient(112deg, rgba(31, 84, 202, 0.98) 0%, rgba(24, 75, 165, 0.76) 38%, rgba(238, 158, 95, 0.82) 69%, rgba(132, 104, 210, 0.9) 100%);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.44),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.app-demo-stage::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 16%),
    radial-gradient(circle at 58% 92%, rgba(7, 8, 10, 0.86), transparent 24rem),
    linear-gradient(180deg, transparent 0%, rgba(4, 5, 6, 0.58) 100%);
}

.demo-video {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.app-demo-stage.has-video .demo-video {
  opacity: 1;
}

.app-demo-stage.has-video .demo-menubar,
.app-demo-stage.has-video .island-window,
.app-demo-stage.has-video .search-result-card,
.app-demo-stage.has-video .terminal-shadow,
.app-demo-stage.has-video .showcase-controls {
  opacity: 0;
  pointer-events: none;
}

.wallpaper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-menubar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 42px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 720;
  backdrop-filter: blur(18px) saturate(1.1);
}

.demo-menubar img {
  width: 26px;
  height: 26px;
  margin-left: auto;
  object-fit: contain;
}

.apple-dot {
  width: 18px;
  height: 18px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.88);
}

.demo-status {
  width: 20px;
  height: 20px;
  border: 2px solid #f3d000;
  border-radius: 99px;
  box-shadow: 0 0 16px rgba(243, 208, 0, 0.5);
}

.terminal-shadow {
  position: absolute;
  left: 20%;
  top: 31%;
  z-index: 2;
  width: 48%;
  height: 44%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0 14%, transparent 14%),
    repeating-linear-gradient(180deg, transparent 0 30px, rgba(255, 255, 255, 0.08) 31px 32px),
    rgba(8, 10, 13, 0.52);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
}

.terminal-shadow::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 14px;
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: #ff5f57;
  box-shadow: 20px 0 #ffbd2e, 40px 0 #28c840;
}

.island-window {
  position: absolute;
  top: 42px;
  left: 50%;
  z-index: 5;
  width: min(48%, 650px);
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 20px 20px;
  background: rgba(0, 0, 0, 0.94);
  color: #fff;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.48);
  transform: translateX(-50%);
}

.island-window-head {
  display: grid;
  grid-template-columns: 44px 1fr auto 42px;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.island-window-head img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(215, 255, 159, 0.22));
}

.island-window-head > div {
  min-width: 0;
}

.island-window-head h2,
.session-card h3,
.mail-card h3 {
  overflow: hidden;
  margin: 0;
  color: #fff;
  font-size: clamp(14px, 1.35vw, 20px);
  font-weight: 840;
  line-height: 1.24;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.island-window-head p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 740;
}

.token-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 36px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 820;
  overflow: hidden;
}

.gear-button {
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
}

.gear-button::before,
.gear-button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.gear-button::before {
  width: 20px;
  height: 20px;
  border: 4px dotted #fff;
  border-radius: 99px;
}

.gear-button::after {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: #fff;
}

.session-card,
.mail-card {
  display: grid;
  align-items: center;
  gap: 16px;
  min-height: 78px;
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(14, 15, 17, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.session-card {
  grid-template-columns: 46px 1fr 14px auto;
}

.codex-mark {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: #fff;
}

.codex-mark::before,
.codex-mark::after {
  content: "";
  position: absolute;
  border-radius: 99px;
  background: #0e0f11;
}

.codex-mark::before {
  left: 10px;
  top: 14px;
  width: 6px;
  height: 6px;
}

.codex-mark::after {
  right: 10px;
  top: 14px;
  width: 6px;
  height: 6px;
}

.session-copy {
  min-width: 0;
}

.session-copy strong {
  display: block;
  margin-top: 8px;
  color: #f4d600;
  font-size: 15px;
  font-weight: 840;
}

.session-copy p,
.mail-card p {
  overflow: hidden;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-light {
  width: 13px;
  height: 13px;
  border-radius: 99px;
  background: #f4d600;
  box-shadow: 0 0 16px rgba(244, 214, 0, 0.8);
}

.codex-chip,
.mail-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 8px;
  background: #193e86;
  color: #a9c9ff;
  font-size: 14px;
  font-weight: 820;
}

.mail-card {
  grid-template-columns: 58px 1fr;
  margin-top: 16px;
}

.island-window > .session-card,
.island-window > .mail-card {
  display: none;
}

.mail-icon {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #0e4a86;
}

.mail-icon::before {
  content: "";
  position: absolute;
  inset: 14px 11px;
  border: 3px solid #2ca8ff;
  border-top: 0;
  transform: skewY(-7deg);
}

.mail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.mail-tags span {
  min-width: 66px;
  background: #0e4a86;
  color: #fff;
}

.mail-tags span:nth-child(4) {
  background: #083f4a;
  color: #22d7ff;
}

.mail-tags span:last-child {
  min-width: 58px;
  background: #10345d;
}

.search-result-card {
  position: absolute;
  left: 16%;
  right: 10%;
  bottom: 34px;
  z-index: 4;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(3, 4, 5, 0.82);
  color: #fff;
  box-shadow: 0 30px 74px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
}

.search-result-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 32%),
    rgba(0, 0, 0, 0.38);
}

.search-head {
  display: grid;
  grid-template-columns: 42px 1fr 30px;
  align-items: center;
  gap: 18px;
  min-height: 64px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.search-head svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.search-head strong {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 860;
}

.search-head button {
  position: relative;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.68);
}

.search-head button::before,
.search-head button::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 14px;
  width: 14px;
  height: 2px;
  background: #151515;
}

.search-head button::before {
  transform: rotate(45deg);
}

.search-head button::after {
  transform: rotate(-45deg);
}

.contract-preview {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 26px 10px;
}

.doc-thumb {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.86)),
    repeating-linear-gradient(180deg, #d2d2d2 0 2px, transparent 2px 6px);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.22);
}

.contract-preview h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 850;
}

.contract-preview p {
  overflow: hidden;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 15px;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contract-preview > strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: 22px;
}

.masked-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 18px;
  margin: 0;
  padding: 6px 26px 20px;
}

.masked-fields div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  min-width: 0;
}

.masked-fields dt {
  color: #37d25f;
  font-size: 14px;
  font-weight: 850;
}

.masked-fields dd {
  overflow: hidden;
  margin: 0;
  color: #23c7f3;
  font-size: 14px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mask-text {
  display: inline-block;
  min-width: 88px;
  height: 0.9em;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.22);
  color: transparent;
  vertical-align: -0.08em;
}

.showcase-controls {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(7, 8, 10, 0.36);
  color: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px) saturate(1.05);
  transform: translateX(-50%);
}

.showcase-controls span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 720;
}

.showcase-controls .is-active {
  border-color: rgba(56, 232, 198, 0.58);
  background: rgba(21, 191, 178, 0.18);
  color: #67f7dc;
  box-shadow: 0 0 24px rgba(56, 232, 198, 0.2);
}

.mac-menubar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 13px;
  height: 34px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(16px);
  color: #141820;
  font-size: 13px;
  font-weight: 760;
}

.mac-menubar span {
  width: 12px;
  height: 12px;
  border: 1.6px solid rgba(17, 19, 23, 0.72);
  border-radius: 99px;
}

.floating-island {
  position: absolute;
  top: 62px;
  left: 50%;
  z-index: 4;
  display: grid;
  grid-template-columns: 14px 45px 32px 32px;
  align-items: center;
  gap: 12px;
  width: 284px;
  height: 62px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background: rgba(4, 5, 7, 0.96);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
}

.island-dot {
  width: 14px;
  height: 14px;
  border-radius: 99px;
  background: var(--mint);
  box-shadow: 0 0 18px rgba(56, 232, 198, 0.82);
}

.island-eye {
  position: relative;
  width: 45px;
  height: 24px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.island-eye::before,
.island-eye::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(56, 232, 198, 0.84);
}

.island-eye::before {
  left: 10px;
}

.island-eye::after {
  right: 10px;
  opacity: 0.48;
}

.floating-island button {
  position: relative;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.floating-island button::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1.8px solid rgba(255, 255, 255, 0.76);
  border-left-color: transparent;
  border-radius: 99px;
}

.review-panel {
  position: absolute;
  top: 148px;
  right: 54px;
  z-index: 3;
  width: min(430px, calc(100% - 92px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(11, 15, 19, 0.88);
  color: #fff;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 14px;
}

.panel-head span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.file-row {
  display: grid;
  grid-template-columns: 38px 1fr 30px;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.file-row strong {
  display: block;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-row small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 650;
}

.file-icon {
  position: relative;
  width: 34px;
  height: 40px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
}

.file-icon::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  border-top: 10px solid rgba(0, 0, 0, 0.16);
  border-left: 10px solid transparent;
}

.file-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 10px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
}

.file-icon.doc {
  color: var(--coral);
}

.file-icon.image {
  color: #51b8ff;
}

.file-icon.note {
  color: var(--mint);
}

.file-row button {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.06);
}

.file-row button::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 12px;
  height: 7px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}

.panel-actions {
  display: flex;
  gap: 10px;
  padding-top: 14px;
}

.panel-actions button {
  min-height: 39px;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-size: 13px;
  font-weight: 760;
}

.panel-actions button:first-child {
  border-color: transparent;
  background: var(--mint);
  color: #03100d;
}

.folder-row {
  position: absolute;
  right: 80px;
  bottom: 52px;
  left: 80px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  color: #eaf6ff;
  font-size: 14px;
  font-weight: 760;
  text-align: center;
}

.folder-row span {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 9px;
}

.folder-row span::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 18px);
  left: 50%;
  width: 2px;
  height: 52px;
  border-left: 2px dashed rgba(56, 232, 198, 0.76);
  transform: translateX(-50%);
}

.folder-row i {
  position: relative;
  display: block;
  width: 72px;
  height: 46px;
  border-radius: 7px;
  background: linear-gradient(180deg, #76d8ff 0%, #3daee8 100%);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.folder-row i::before {
  content: "";
  position: absolute;
  left: 9px;
  top: -8px;
  width: 28px;
  height: 12px;
  border-radius: 6px 6px 0 0;
  background: #79dfff;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.privacy-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 820;
  line-height: 1.05;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.36);
}

.section-heading p {
  margin: 16px 0 0;
  color: rgba(232, 246, 248, 0.74);
  font-size: 17px;
  font-weight: 580;
  line-height: 1.65;
}

.reveal-on-scroll {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(42px);
  transition:
    opacity 900ms ease,
    filter 900ms ease,
    transform 900ms cubic-bezier(0.2, 0.84, 0.18, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.feature-strip,
.workflow,
.pricing,
.faq {
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 24px;
}

.pricing {
  max-width: none;
  padding: 96px 24px 108px;
  overflow-x: clip;
  scroll-margin-top: 92px;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing .section-heading h2 {
  color: #ffffff;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.32);
}

.pricing .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.pricing > .section-heading,
.pricing-showcase {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.feature-strip {
  max-width: none;
  padding-top: 78px;
  padding-bottom: 82px;
  background: transparent;
  border-top: 0;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.feature-strip > .section-heading,
.feature-strip > .feature-grid,
.workflow > .section-heading,
.workflow > .timeline {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(22px, 3vw, 42px);
  border: 0;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.feature-card::after {
  display: none;
}

.feature-card:last-child {
  border-right: 0;
}

.feature-card svg {
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  color: var(--mint-dark);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-card.accent-coral svg {
  color: var(--coral);
}

.feature-card h3,
.timeline h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  font-weight: 820;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.feature-card p,
.timeline p {
  margin: 12px 0 0;
  color: rgba(232, 246, 248, 0.72);
  font-size: 14px;
  font-weight: 610;
  line-height: 1.72;
}

.workflow {
  max-width: none;
  padding-top: 92px;
  padding-bottom: 92px;
  border-top: 0;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
}

.feature-strip .section-heading h2,
.workflow .section-heading h2 {
  color: #ffffff;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.36);
}

.feature-strip .section-heading p,
.workflow .section-heading p {
  color: rgba(232, 246, 248, 0.72);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 17%;
  right: 17%;
  height: 1px;
  border-top: 1px dashed rgba(0, 169, 135, 0.46);
}

.timeline article {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 232px;
  padding: 0 30px 28px;
  text-align: center;
}

.timeline article::after {
  display: none;
}

.timeline span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border: 1px solid rgba(56, 232, 198, 0.6);
  border-radius: 18px;
  background: rgba(56, 232, 198, 0.08);
  color: #ffffff;
  font-size: 24px;
  font-weight: 820;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 22px rgba(56, 232, 198, 0.2);
}

.privacy {
  display: block;
  max-width: min(var(--max), 1280px);
  margin: 0 auto;
  padding: 90px 24px;
  border-top: 1px solid rgba(17, 19, 23, 0.08);
  border-bottom: 1px solid rgba(17, 19, 23, 0.08);
}

.privacy-copy {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.privacy-copy h2 {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  text-wrap: balance;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 30px auto 0;
  padding: 0;
  list-style: none;
}

.privacy .check-list {
  justify-items: stretch;
  box-sizing: border-box;
  max-width: 920px;
  padding-left: clamp(70px, 8vw, 130px);
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 620;
  line-height: 1.58;
  text-align: left;
}

.privacy .check-list li {
  width: min(100%, 780px);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border: 1.6px solid var(--mint-dark);
  border-radius: 99px;
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--mint-dark);
  border-bottom: 2px solid var(--mint-dark);
  transform: rotate(-45deg);
}

.pricing-showcase {
  display: grid;
  justify-items: center;
  gap: 0;
  width: 100%;
  perspective: 1800px;
}

.license-card {
  --spotlight-x: 50%;
  --spotlight-y: 50%;
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 18px;
  width: min(100%, 420px);
  min-height: 565px;
  padding: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background:
    radial-gradient(circle at 86% 10%, rgba(37, 99, 235, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(12, 13, 18, 0.98), rgba(3, 4, 8, 0.98)),
    #030408;
  color: #ffffff;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateZ(0);
  transform-style: preserve-3d;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  will-change: transform, box-shadow;
}

.license-card:hover {
  border-color: rgba(96, 165, 250, 0.42);
  box-shadow:
    0 38px 96px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(37, 99, 235, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.license-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.085) 0 1px, transparent 1.4px);
  background-size: 9px 9px;
  opacity: 0.5;
  pointer-events: none;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.9) 52%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.9) 52%, transparent 100%);
}

.license-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #262626;
  opacity: 0;
  mask-image: radial-gradient(350px circle at var(--spotlight-x) var(--spotlight-y), #fff, transparent 80%);
  -webkit-mask-image: radial-gradient(350px circle at var(--spotlight-x) var(--spotlight-y), #fff, transparent 80%);
  pointer-events: none;
  transition: opacity 180ms ease;
}

.license-card > :not(.price-grid) {
  position: relative;
  z-index: 3;
}

.price-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  border-radius: inherit;
  background: transparent;
  opacity: 0;
  mask-image: radial-gradient(350px circle at var(--spotlight-x) var(--spotlight-y), #fff, transparent 80%);
  -webkit-mask-image: radial-gradient(350px circle at var(--spotlight-x) var(--spotlight-y), #fff, transparent 80%);
  pointer-events: none;
  transition: opacity 180ms ease;
}

.price-grid::before {
  display: none;
}

.license-card:hover::after {
  opacity: 1;
}

.license-card:hover .price-grid {
  opacity: 1;
}

.price-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgb(3, 7, 18), transparent 84%);
  pointer-events: none;
}

.price-grid canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.license-main {
  max-width: 100%;
  padding-top: 4px;
}

.license-techline {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
}

.license-techline span {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(230, 235, 238, 0.62);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.license-main h3 {
  margin: 0 0 24px;
  color: rgba(247, 249, 250, 0.88);
  font-size: 18px;
  font-weight: 680;
}

.price-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.price-row strong {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(52px, 5.2vw, 66px);
  font-weight: 850;
  line-height: 0.9;
  text-shadow: none;
}

.price-row span {
  position: relative;
  align-self: center;
  margin-bottom: 0;
  padding: 7px 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.34);
  font-size: 15px;
  font-weight: 760;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.42);
  white-space: nowrap;
}

.price-row span::after {
  display: none;
}

.license-main p {
  margin: 18px 0 0;
  color: rgba(230, 235, 238, 0.55);
  font-size: 14px;
  font-weight: 620;
}

.license-main .license-deal {
  width: fit-content;
  margin-top: 14px;
  padding: 7px 11px;
  border: 1px solid rgba(68, 239, 120, 0.22);
  border-radius: 999px;
  background: rgba(68, 239, 120, 0.08);
  color: rgba(118, 255, 156, 0.9);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.01em;
}

.device-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.device-tabs button {
  min-height: 46px;
  border-radius: 8px;
  border: 0;
  background: transparent;
  color: rgba(230, 235, 238, 0.52);
  cursor: pointer;
  font-size: 14px;
  font-weight: 740;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.device-tabs button:last-child {
  border-right: 0;
}

.device-tabs button.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 18px rgba(76, 255, 131, 0.08);
}

.check-list.compact {
  gap: 12px;
  margin: 8px 0 0;
}

.check-list.compact li {
  color: rgba(230, 235, 238, 0.68);
  font-size: 14px;
  font-weight: 660;
  line-height: 1.35;
}

.license-card .check-list li::before {
  border: 0;
  background: transparent;
}

.license-card .check-list li::after {
  left: 3px;
  top: 7px;
  border-color: #44ef78;
}

.license-card .button-large {
  width: 100%;
  min-height: 56px;
  margin-top: 8px;
  border-radius: 9px;
  font-size: 15px;
}

.license-card .button-dark {
  background: rgba(236, 238, 239, 0.82);
  color: #151719;
  box-shadow: none;
}

.license-card .button-dark:hover {
  background: #ffffff;
}

.download-link {
  justify-self: center;
  color: rgba(230, 235, 238, 0.46);
  font-size: 13px;
  font-weight: 700;
}

.download-link:hover {
  color: #44ef78;
}

.refund-note {
  margin: -2px 0 0;
  color: rgba(230, 235, 238, 0.36);
  font-size: 12px;
  font-weight: 650;
  text-align: center;
}

.gift-connector {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(980px, 100%);
  height: 150px;
  margin: -6px auto -6px;
  pointer-events: none;
}

.gift-connector svg {
  width: min(960px, 96vw);
  height: 150px;
  overflow: visible;
}

.gift-connector path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.86);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 9 12;
  filter: none;
  animation: connector-flow 1.45s linear infinite;
}

.gift-connector marker path {
  fill: rgba(255, 255, 255, 0.92);
  stroke: none;
  filter: none;
  animation: none;
}

.connector-branch {
  animation-duration: 1.9s;
}

.card-choice-panel {
  display: grid;
  justify-items: center;
  width: min(1080px, calc(100vw - 48px));
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.card-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 210px));
  gap: clamp(16px, 2.2vw, 32px);
  align-items: start;
  justify-content: center;
  width: 100%;
  perspective: 1500px;
}

.seo-topics {
  max-width: var(--max);
  margin: 0 auto;
  padding: 74px 24px 36px;
}

.seo-topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.seo-topic-grid a {
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%),
    rgba(5, 12, 14, 0.28);
  color: #ffffff;
  text-decoration: none;
  backdrop-filter: blur(8px) saturate(1.1);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.seo-topic-grid a:hover {
  border-color: rgba(56, 232, 198, 0.44);
  background:
    radial-gradient(circle at 50% 0%, rgba(56, 232, 198, 0.14), transparent 54%),
    rgba(5, 12, 14, 0.34);
  transform: translateY(-3px);
}

.seo-topic-grid span {
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(56, 232, 198, 0.26);
  border-radius: 999px;
  color: rgba(160, 244, 228, 0.9);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.seo-topic-grid strong {
  font-size: 20px;
  font-weight: 840;
  line-height: 1.25;
}

.seo-topic-grid p {
  margin: 0;
  color: rgba(232, 246, 248, 0.72);
  font-size: 14px;
  font-weight: 580;
  line-height: 1.65;
}

.card-option {
  --mx: 50%;
  --my: 50%;
  --cosmos-x: 50%;
  --cosmos-y: 50%;
  --rx: 0deg;
  --ry: 0deg;
  --holo-opacity: 0;
  --glare-opacity: 0;
  --grain-opacity: 0;
  --hyp: 0;
  --card-glow: rgba(98, 234, 255, 0.38);
  display: grid;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: default;
  transform: translateY(0);
  transition: transform 180ms ease, filter 180ms ease;
}

.card-option:hover {
  --holo-opacity: 0.24;
  --glare-opacity: 0.14;
  --grain-opacity: 0.04;
  transform: translateY(-5px);
}

.collector-card {
  position: relative;
  isolation: isolate;
  display: block;
  aspect-ratio: 5 / 7;
  width: 100%;
  overflow: hidden;
  contain: paint;
  padding: 5.6%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), transparent 20% 78%, rgba(0, 0, 0, 0.34)),
    linear-gradient(135deg, var(--frame-a, #f7d66c), var(--frame-b, #e871ff) 34%, var(--frame-c, #5ae8ff) 68%, #fff4a8);
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.3),
    0 0 0 7px rgba(9, 12, 18, 0.82),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  transform: translateZ(0) rotateX(var(--ry)) rotateY(var(--rx));
  transform-style: preserve-3d;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  will-change: transform;
}

.pokemon-holo {
  --frame-a: #dff9ff;
  --frame-b: #f4c5ff;
  --frame-c: #6feeff;
  --card-glow: rgba(111, 238, 255, 0.44);
}

.pokemon-holo-emerald {
  --frame-a: #ddffb3;
  --frame-b: #7bf7df;
  --frame-c: #8bd7ff;
  --card-glow: rgba(112, 255, 213, 0.44);
}

.pokemon-holo-cosmic {
  --frame-a: #b7b8ff;
  --frame-b: #ff8eed;
  --frame-c: #5cf0ff;
  --card-glow: rgba(175, 127, 255, 0.46);
}

.pokemon-holo-sunset {
  --frame-a: #ffe18f;
  --frame-b: #ff9aa8;
  --frame-c: #8de9ff;
  --card-glow: rgba(255, 174, 99, 0.44);
}

.card-option:hover .collector-card {
  box-shadow:
    0 34px 82px rgba(0, 0, 0, 0.42),
    0 0 18px var(--card-glow),
    0 0 0 7px rgba(9, 12, 18, 0.84),
    inset 0 0 0 1px rgba(255, 255, 255, 0.38);
}

.gift-card-image {
  position: absolute;
  inset: 5.8%;
  z-index: 1;
  display: block;
  width: 88.4%;
  height: 88.4%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.5),
    0 14px 22px rgba(0, 0, 0, 0.24);
  transform: translateZ(10px);
}

.card-badge,
.card-signature {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  transform: translateZ(38px);
}

.card-badge {
  top: 8.2%;
  left: 9.2%;
  padding: 4px 7px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background: rgba(5, 8, 14, 0.6);
  color: rgba(255, 255, 255, 0.92);
  font-size: 10px;
  font-weight: 860;
  line-height: 1;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px) saturate(1.2);
}

.card-signature {
  right: 8.6%;
  bottom: 8.5%;
  max-width: 74%;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Marker Felt", "Comic Sans MS", "Bradley Hand", cursive;
  font-size: clamp(15px, 1.8vw, 24px);
  font-weight: 900;
  line-height: 1;
  text-align: right;
  text-shadow:
    0 2px 2px rgba(0, 0, 0, 0.66),
    0 0 12px rgba(0, 255, 235, 0.7),
    0 0 20px rgba(255, 71, 214, 0.5);
  transform: translateZ(38px) rotate(-7deg);
}

.collector-card::before,
.collector-card::after,
.holo-grain {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  pointer-events: none;
}

.collector-card::before {
  background:
    radial-gradient(farthest-corner circle at var(--mx) var(--my), rgba(255, 255, 255, 0.95) 0 7%, transparent 23%),
    repeating-linear-gradient(115deg, transparent 0 5px, rgba(255, 255, 255, 0.28) 6px 7px, transparent 8px 15px),
    linear-gradient(
      125deg,
      transparent 0 16%,
      var(--foil-a) 23%,
      transparent 32% 42%,
      var(--foil-b) 50%,
      transparent 58% 66%,
      var(--foil-c) 74%,
      transparent 84% 100%
    );
  background-position:
    var(--mx) var(--my),
    calc(var(--mx) * -0.22) calc(var(--my) * -0.18),
    calc(var(--mx) * 0.42) calc(var(--my) * 0.34);
  background-size: 100% 100%, 240% 240%, 220% 220%;
  mix-blend-mode: color-dodge;
  opacity: calc(var(--holo-opacity) + var(--hyp) * 0.22);
  filter: brightness(1.18) contrast(1.38) saturate(1.55);
  transform: translateZ(24px);
  animation: holo-card-shine 7s ease-in-out infinite;
}

.collector-card::after {
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.7), transparent 20%),
    repeating-linear-gradient(88deg, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px 3px),
    conic-gradient(
      from 190deg at var(--mx) var(--my),
      var(--foil-a),
      var(--foil-b),
      var(--foil-c),
      var(--foil-d),
      var(--foil-a)
  );
  background-size: 100% 100%, 34px 100%, 140% 140%;
  mix-blend-mode: screen;
  opacity: calc(0.34 + var(--hyp) * 0.26);
  filter: saturate(1.6) brightness(1.14);
  transform: translateZ(18px);
  animation: holo-card-glare 5.6s ease-in-out infinite;
}

.pokemon-holo-rainbow::before {
  background:
    radial-gradient(farthest-corner circle at var(--mx) var(--my), rgba(255, 255, 255, 0.98) 0 7%, transparent 23%),
    repeating-linear-gradient(112deg, transparent 0 5px, rgba(255, 255, 255, 0.34) 6px 7px, transparent 8px 15px),
    linear-gradient(126deg, transparent 0 14%, #fff36c 22%, transparent 31% 39%, #46f4ff 50%, transparent 59% 66%, #ff52d8 75%, transparent 86% 100%);
  background-size: 100% 100%, 240% 240%, 220% 220%;
  mix-blend-mode: color-dodge;
  filter: brightness(1.22) contrast(1.42) saturate(1.7);
  animation-duration: 6.6s;
}

.pokemon-holo-rainbow::after {
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.72), transparent 19%),
    conic-gradient(from 190deg at var(--mx) var(--my), #fff68d, #39eaff, #ff5bd7, #82ff8d, #fff68d);
  background-size: 100% 100%, 145% 145%;
  mix-blend-mode: screen;
}

.pokemon-holo-emerald::before {
  background:
    radial-gradient(farthest-corner circle at var(--mx) var(--my), rgba(255, 255, 255, 0.82) 0 8%, transparent 24%),
    repeating-radial-gradient(circle at var(--mx) var(--my), transparent 0 9px, rgba(255, 255, 255, 0.28) 10px 12px, transparent 13px 25px),
    linear-gradient(45deg, rgba(123, 255, 115, 0.48), transparent 28%, rgba(49, 236, 255, 0.46) 45%, transparent 62%, rgba(255, 248, 122, 0.42));
  background-size: 100% 100%, 160% 160%, 230% 230%;
  mix-blend-mode: soft-light;
  filter: brightness(1.24) contrast(1.2) saturate(1.8);
  animation: holo-water-caustic 6.2s ease-in-out infinite;
}

.pokemon-holo-emerald::after {
  background:
    radial-gradient(ellipse at var(--mx) var(--my), rgba(255, 255, 255, 0.58), transparent 22%),
    repeating-linear-gradient(23deg, transparent 0 11px, rgba(120, 255, 218, 0.25) 12px 14px, transparent 15px 28px),
    conic-gradient(from 80deg at 50% 52%, rgba(45, 255, 204, 0.38), rgba(255, 242, 101, 0.26), rgba(55, 168, 255, 0.34), rgba(45, 255, 204, 0.38));
  mix-blend-mode: screen;
  opacity: calc(0.24 + var(--hyp) * 0.3);
  animation: holo-card-glare 4.8s ease-in-out infinite reverse;
}

.pokemon-holo-cosmic::before {
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.9) 0 6%, transparent 22%),
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.85) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 32%, rgba(255, 255, 255, 0.7) 0 1px, transparent 2px),
    repeating-linear-gradient(90deg, transparent 0 7px, rgba(90, 224, 255, 0.24) 8px 9px, transparent 10px 18px),
    conic-gradient(from 215deg at var(--mx) var(--my), rgba(95, 106, 255, 0.5), rgba(255, 71, 215, 0.5), rgba(61, 239, 255, 0.45), rgba(255, 225, 94, 0.28), rgba(95, 106, 255, 0.5));
  background-size: 100% 100%, 42px 42px, 58px 58px, 180% 100%, 170% 170%;
  mix-blend-mode: color-dodge;
  filter: brightness(1.32) contrast(1.5) saturate(1.85);
  animation: holo-cosmic-scan 5.4s ease-in-out infinite;
}

.pokemon-holo-cosmic::after {
  background:
    radial-gradient(farthest-corner circle at var(--mx) var(--my), rgba(255, 255, 255, 0.72), transparent 18%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.15) 0 1px, transparent 1px 5px),
    linear-gradient(120deg, transparent 0 24%, rgba(255, 90, 226, 0.42) 32%, transparent 40% 58%, rgba(66, 245, 255, 0.42) 67%, transparent 80%);
  background-size: 100% 100%, 100% 18px, 220% 220%;
  mix-blend-mode: screen;
  animation: holo-card-shine 4.6s ease-in-out infinite;
}

.pokemon-holo-sunset::before {
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.86) 0 7%, transparent 24%),
    repeating-conic-gradient(from 12deg at 18% 16%, rgba(255, 236, 133, 0.44) 0 5deg, transparent 6deg 18deg, rgba(255, 96, 116, 0.34) 19deg 25deg, transparent 26deg 40deg),
    linear-gradient(135deg, rgba(255, 205, 71, 0.48), transparent 30%, rgba(255, 80, 177, 0.42) 50%, transparent 68%, rgba(79, 231, 255, 0.36));
  background-size: 100% 100%, 190% 190%, 230% 230%;
  mix-blend-mode: color-dodge;
  filter: brightness(1.2) contrast(1.34) saturate(1.58);
  animation: holo-sunset-flare 7.4s ease-in-out infinite;
}

.pokemon-holo-sunset::after {
  background:
    radial-gradient(ellipse at var(--mx) var(--my), rgba(255, 255, 255, 0.6), transparent 21%),
    repeating-linear-gradient(145deg, transparent 0 13px, rgba(255, 219, 115, 0.24) 14px 16px, transparent 17px 31px),
    conic-gradient(from 310deg at 76% 22%, rgba(255, 236, 113, 0.5), rgba(255, 91, 108, 0.42), rgba(255, 87, 209, 0.32), rgba(70, 217, 255, 0.28), rgba(255, 236, 113, 0.5));
  mix-blend-mode: screen;
  opacity: calc(0.3 + var(--hyp) * 0.24);
  animation: holo-card-glare 6.8s ease-in-out infinite reverse;
}

.holo-grain {
  z-index: 3;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 252' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='252' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E"),
    radial-gradient(circle at 12% 24%, rgba(255, 255, 255, 0.8) 0 1px, transparent 2px),
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.58) 0 1px, transparent 2px),
    repeating-linear-gradient(0deg, transparent 0 9px, rgba(255, 255, 255, 0.1) 10px 11px, transparent 12px 26px);
  background-size: 100% 100%, 30px 30px, 44px 44px, 100% 100%;
  mix-blend-mode: screen;
  opacity: calc(var(--grain-opacity) + var(--hyp) * 0.34);
  transform: translateZ(30px);
  animation: holo-card-grain 3.8s steps(2, end) infinite;
}

.pokemon-holo-emerald .holo-grain {
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 252' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='w'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.035 .12' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='252' filter='url(%23w)' opacity='.7'/%3E%3C/svg%3E"),
    repeating-linear-gradient(25deg, transparent 0 18px, rgba(255, 255, 255, 0.14) 19px 21px, transparent 22px 42px);
  background-size: 100% 100%, 180% 180%;
  animation-duration: 4.4s;
}

.pokemon-holo-cosmic .holo-grain {
  background-image:
    radial-gradient(circle at 16% 22%, rgba(255, 255, 255, 0.92) 0 1px, transparent 2px),
    radial-gradient(circle at 62% 18%, rgba(255, 255, 255, 0.72) 0 1px, transparent 2px),
    radial-gradient(circle at 84% 78%, rgba(255, 255, 255, 0.62) 0 1px, transparent 2px),
    repeating-linear-gradient(90deg, transparent 0 20px, rgba(255, 255, 255, 0.12) 21px 22px, transparent 23px 44px);
  background-size: 38px 38px, 54px 54px, 72px 72px, 100% 100%;
  animation-duration: 3.2s;
}

.pokemon-holo-sunset .holo-grain {
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 252' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='s'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.16 .08' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='252' filter='url(%23s)' opacity='.52'/%3E%3C/svg%3E"),
    repeating-linear-gradient(145deg, transparent 0 15px, rgba(255, 236, 128, 0.16) 16px 18px, transparent 19px 38px);
  background-size: 100% 100%, 160% 160%;
  animation-duration: 4.9s;
}

.pokemon-holo::before {
  background-image:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.84) 0 1px, transparent 1.8px),
    radial-gradient(circle at 72% 26%, rgba(255, 255, 255, 0.62) 0 1px, transparent 2px),
    radial-gradient(circle at 34% 78%, rgba(255, 255, 255, 0.5) 0 1px, transparent 2px),
    repeating-linear-gradient(
      82deg,
      hsl(53, 65%, 60%) 4%,
      hsl(93, 56%, 50%) 8%,
      hsl(176, 54%, 49%) 12%,
      hsl(228, 59%, 55%) 16%,
      hsl(283, 60%, 55%) 20%,
      hsl(326, 59%, 51%) 24%,
      hsl(283, 60%, 55%) 32%,
      hsl(228, 59%, 55%) 36%,
      hsl(176, 54%, 49%) 40%,
      hsl(53, 65%, 60%) 48%
    ),
    radial-gradient(
      farthest-corner circle at var(--mx) var(--my),
      hsla(185, 100%, 92%, 0.66) 5%,
      hsla(250, 22%, 34%, 0.3) 42%,
      hsl(0, 0%, 0%) 132%
    );
  background-blend-mode: screen, screen, screen, color-burn, multiply;
  background-position:
    var(--cosmos-x) var(--cosmos-y),
    calc(100% - var(--cosmos-x)) var(--cosmos-y),
    var(--cosmos-x) calc(100% - var(--cosmos-y)),
    var(--cosmos-x) var(--cosmos-y),
    center;
  background-size: 72px 92px, 96px 128px, 118px 152px, 400% 900%, cover;
  mix-blend-mode: color-dodge;
  opacity: var(--holo-opacity);
  filter: brightness(1) contrast(1.08) saturate(0.86);
  transform: translateZ(24px);
  animation: none;
}

.card-option:hover .pokemon-holo::before {
  filter: brightness(1.1) contrast(1.28) saturate(0.92);
}

.pokemon-holo::after {
  background-image:
    radial-gradient(
      farthest-corner circle at var(--mx) var(--my),
      hsla(204, 100%, 95%, 0.82) 5%,
      hsla(250, 15%, 20%, 0.82) 145%
    ),
    radial-gradient(
      farthest-corner circle at var(--mx) var(--my),
      hsl(280, 100%, 96%) 5%,
      hsl(0, 0%, 10%) 62%
    );
  background-size: cover, cover;
  mix-blend-mode: overlay;
  opacity: var(--glare-opacity);
  filter: brightness(0.78) contrast(2.15) saturate(1.7);
  transform: translateZ(18px);
  animation: none;
}

.card-option:hover .pokemon-holo::before,
.card-option:hover .pokemon-holo::after {
  animation: holo-cosmos-drift 4.8s ease-in-out infinite;
}

.pokemon-holo .holo-grain {
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.82) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.64) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 68%, rgba(255, 255, 255, 0.54) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 84%, rgba(255, 255, 255, 0.44) 0 1px, transparent 2px),
    repeating-linear-gradient(82deg, transparent 0 20px, rgba(255, 255, 255, 0.12) 21px 22px, transparent 23px 48px);
  background-position:
    var(--cosmos-x) var(--cosmos-y),
    calc(100% - var(--cosmos-x)) var(--cosmos-y),
    var(--cosmos-x) calc(100% - var(--cosmos-y)),
    calc(100% - var(--cosmos-x)) calc(100% - var(--cosmos-y)),
    var(--cosmos-x) var(--cosmos-y);
  background-size: 44px 62px, 58px 76px, 84px 96px, 122px 140px, 240% 240%;
  mix-blend-mode: screen;
  opacity: var(--grain-opacity);
  filter: brightness(1.05) contrast(1.3);
  transform: translateZ(30px);
  animation: none;
}

.card-option:hover .pokemon-holo .holo-grain {
  animation: holo-cosmos-grain 4s steps(2, end) infinite;
}

@keyframes connector-flow {
  to {
    stroke-dashoffset: -42;
  }
}

@keyframes holo-card-shine {
  0%,
  100% {
    background-position: var(--mx) var(--my), 0 0, 12% 24%;
  }
  50% {
    background-position: var(--mx) var(--my), 80% 30%, 82% 72%;
  }
}

@keyframes holo-card-glare {
  0%,
  100% {
    background-position: var(--mx) var(--my), 0 0, 0 0;
  }
  50% {
    background-position: var(--mx) var(--my), 34px 0, 100% 64%;
  }
}

@keyframes holo-card-grain {
  to {
    background-position: 18px -12px, 30px 30px, -44px 44px, 0 26px;
  }
}

@keyframes holo-cosmos-drift {
  0%,
  100% {
    background-position:
      var(--cosmos-x) var(--cosmos-y),
      calc(100% - var(--cosmos-x)) var(--cosmos-y),
      var(--cosmos-x) calc(100% - var(--cosmos-y)),
      var(--cosmos-x) var(--cosmos-y),
      center;
  }
  50% {
    background-position:
      calc(var(--cosmos-x) + 18%) calc(var(--cosmos-y) - 12%),
      calc(82% - var(--cosmos-x)) calc(var(--cosmos-y) + 16%),
      calc(var(--cosmos-x) - 12%) calc(84% - var(--cosmos-y)),
      calc(100% - var(--cosmos-x)) calc(100% - var(--cosmos-y)),
      center;
  }
}

@keyframes holo-cosmos-grain {
  to {
    background-position:
      calc(var(--cosmos-x) + 18px) calc(var(--cosmos-y) - 12px),
      calc(100% - var(--cosmos-x) - 26px) calc(var(--cosmos-y) + 18px),
      calc(var(--cosmos-x) - 22px) calc(100% - var(--cosmos-y) + 28px),
      calc(100% - var(--cosmos-x) + 34px) calc(100% - var(--cosmos-y) - 18px),
      calc(var(--cosmos-x) + 40px) calc(var(--cosmos-y) - 30px);
  }
}

@keyframes holo-water-caustic {
  0%,
  100% {
    background-position: var(--mx) var(--my), 0 0, 10% 18%;
  }
  50% {
    background-position: var(--mx) var(--my), 52% 46%, 80% 78%;
  }
}

@keyframes holo-cosmic-scan {
  0%,
  100% {
    background-position: var(--mx) var(--my), 0 0, 18px 24px, 0 0, 10% 20%;
  }
  50% {
    background-position: var(--mx) var(--my), 42px 42px, -28px 58px, 88% 0, 86% 72%;
  }
}

@keyframes holo-sunset-flare {
  0%,
  100% {
    background-position: var(--mx) var(--my), 0 0, 16% 24%;
  }
  50% {
    background-position: var(--mx) var(--my), 70% 42%, 86% 68%;
  }
}


.faq {
  padding-top: 54px;
}

body.seo-landing {
  min-height: 100vh;
  color: #ffffff;
}

.seo-landing-main {
  width: min(1060px, calc(100% - 48px));
  margin: 0 auto;
  padding: 132px 0 84px;
}

.seo-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  color: rgba(232, 246, 248, 0.68);
  font-size: 14px;
  font-weight: 650;
}

.seo-breadcrumb a {
  color: rgba(160, 244, 228, 0.92);
  text-decoration: none;
}

.seo-article {
  display: grid;
  gap: 34px;
}

.seo-article > header {
  max-width: 920px;
}

.seo-article h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 860;
  letter-spacing: 0;
  line-height: 1.03;
  text-wrap: balance;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.42);
}

.seo-article .lede {
  max-width: 820px;
  margin: 22px 0 0;
  color: rgba(232, 246, 248, 0.8);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 620;
  line-height: 1.6;
}

.seo-article h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
}

.seo-article p,
.seo-article li {
  color: rgba(232, 246, 248, 0.74);
  font-size: 17px;
  font-weight: 560;
  line-height: 1.76;
}

.seo-article section,
.seo-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 34%),
    rgba(4, 12, 14, 0.3);
  backdrop-filter: blur(8px) saturate(1.08);
}

.seo-article ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
}

.seo-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.seo-comparison {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  color: rgba(232, 246, 248, 0.8);
  font-size: 15px;
}

.seo-comparison th,
.seo-comparison td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  vertical-align: top;
}

.seo-comparison th {
  color: #ffffff;
  font-size: 16px;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(7, 12, 14, 0.18);
  backdrop-filter: blur(8px) saturate(1.08);
  overflow: hidden;
}

details + details {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

summary {
  position: relative;
  cursor: pointer;
  padding: 19px 58px 19px 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 720;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before,
summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.86);
  transition: transform 160ms ease;
}

summary::after {
  transform: rotate(90deg);
}

details[open] summary::after {
  transform: rotate(0deg);
}

details p {
  margin: 0;
  padding: 0 58px 20px 24px;
  color: rgba(232, 246, 248, 0.72);
  font-size: 15px;
  font-weight: 540;
  line-height: 1.7;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 60px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 24px 46px;
  border-top: 1px solid rgba(17, 19, 23, 0.08);
}

.site-footer p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 10px 46px;
  color: #3a424d;
  font-size: 14px;
  font-weight: 680;
}

  .copyright {
  white-space: nowrap;
}

.purchase-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
}

.purchase-modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 13, 0.28);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(460px, calc(100vw - 32px));
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
}

.modal-panel h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.18;
}

.modal-panel p {
  margin: 12px 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 16px;
  width: 14px;
  height: 2px;
  background: #15181d;
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

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

.purchase-form label {
  display: grid;
  gap: 8px;
  color: #2a323c;
  font-size: 14px;
  font-weight: 720;
}

.purchase-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 15px;
}

.checkout-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  font-size: 15px;
  font-weight: 760;
}

.checkout-row strong {
  white-space: nowrap;
}

.checkout-buttons {
  min-height: 44px;
}

.checkout-buttons:empty {
  display: none;
}

.purchase-form output {
  min-height: 20px;
  color: rgba(17, 19, 23, 0.58);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}

.purchase-success {
  display: grid;
  gap: 6px;
  padding: 15px 16px;
  border: 1px solid rgba(0, 169, 135, 0.2);
  border-radius: 8px;
  background: rgba(56, 232, 198, 0.12);
  color: #0b5e50;
}

.purchase-success[hidden] {
  display: none;
}

.purchase-success strong {
  color: #073d35;
  font-size: 16px;
  font-weight: 840;
}

.purchase-success p {
  margin: 0;
  color: rgba(7, 61, 53, 0.74);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}

.purchase-form.is-completed .checkout-buttons,
.purchase-form.is-completed > .button {
  display: none;
}

.purchase-modal {
  z-index: 1000;
}

.payment-return-tip {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1200;
  display: grid;
  gap: 10px;
  width: min(420px, calc(100vw - 42px));
  padding: 24px 26px;
  border: 1px solid rgba(68, 239, 120, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(9, 20, 14, 0.96), rgba(2, 7, 4, 0.94)),
    #020704;
  color: #ffffff;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 54px rgba(68, 239, 120, 0.18);
  text-align: center;
  transform: translate(-50%, -50%) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.payment-return-tip.is-visible {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.payment-return-tip[hidden] {
  display: none;
}

.payment-return-tip strong {
  color: #68ff9b;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
}

.payment-return-tip p {
  margin: 0;
  color: rgba(231, 246, 236, 0.78);
  font-size: 15px;
  font-weight: 720;
  line-height: 1.55;
}

.modal-backdrop {
  background: rgba(0, 5, 3, 0.58);
  backdrop-filter: blur(14px) saturate(1.05);
}

.modal-panel {
  width: min(560px, calc(100vw - 32px));
  border: 1px solid rgba(68, 239, 120, 0.2);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(9, 18, 15, 0.98), rgba(2, 6, 5, 0.98)),
    #050807;
  color: #f7fff9;
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.modal-panel h2 {
  padding-right: 56px;
  color: #ffffff;
  font-weight: 900;
  text-shadow: 0 0 22px rgba(68, 239, 120, 0.18);
}

.modal-panel p {
  color: rgba(235, 248, 239, 0.78);
  font-weight: 650;
}

.modal-close {
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.14);
}

.modal-close::before,
.modal-close::after {
  background: #ffffff;
}

.purchase-form label {
  color: rgba(247, 255, 249, 0.94);
  font-size: 15px;
  font-weight: 850;
}

.purchase-form input {
  min-height: 54px;
  border-color: rgba(68, 239, 120, 0.3);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 16px;
  font-weight: 720;
  outline: none;
}

.purchase-form input::placeholder {
  color: rgba(247, 255, 249, 0.42);
}

.purchase-form input:focus {
  border-color: rgba(68, 239, 120, 0.82);
  box-shadow:
    0 0 0 4px rgba(68, 239, 120, 0.14),
    0 0 30px rgba(68, 239, 120, 0.1);
}

.checkout-row {
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(68, 239, 120, 0.06), transparent),
    rgba(255, 255, 255, 0.06);
  color: rgba(247, 255, 249, 0.88);
}

.checkout-row strong {
  color: #ffffff;
}

.purchase-form output {
  color: rgba(235, 248, 239, 0.72);
}

.purchase-success {
  border-color: rgba(68, 239, 120, 0.32);
  background: rgba(68, 239, 120, 0.1);
  color: rgba(247, 255, 249, 0.88);
}

.purchase-success strong {
  color: #ffffff;
}

.purchase-success p {
  color: rgba(235, 248, 239, 0.76);
}

output {
  min-height: 20px;
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 720;
}

@media (prefers-reduced-motion: no-preference) {
  .floating-island {
    animation: breathe 5s ease-in-out infinite;
  }

  .review-panel {
    animation: rise-in 560ms ease both;
  }

  .folder-row span::before {
    animation: dash 1.7s linear infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .license-card,
  .collector-card::before,
  .collector-card::after,
  .holo-grain {
    animation: none;
  }

  .collector-card,
  .license-card {
    transform: none;
  }
}

@media (max-width: 1400px) {
  .hero-wind-card {
    width: clamp(130px, 11vw, 170px);
    height: clamp(151px, 12.76vw, 197px);
  }
}

@keyframes breathe {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-4px);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dash {
  to {
    background-position: 0 20px;
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .hero-copy {
    max-width: 820px;
    min-height: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .hero-wind-card {
    position: relative;
    top: auto;
    right: auto;
    align-self: center;
    transform: none;
  }

  .desktop-stage {
    min-height: 0;
  }

  .app-demo-stage {
    min-height: 0;
  }

  .real-product-showcase {
    width: 100%;
    padding-bottom: 76px;
  }

  .real-shot-main {
    aspect-ratio: 16 / 9;
    transform: none;
  }

  .real-shot-stack {
    inset: auto 18px -28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .real-shot-stack .real-shot {
    transform: none;
  }

  .product-screens {
    max-width: calc(100vw - 36px);
    margin-top: 42px;
  }

  .screen-rail {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 2px 18px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .screen-card {
    flex: 0 0 min(620px, 82vw);
    min-height: 230px;
    scroll-snap-align: center;
  }

  .screen-card-pill {
    flex-basis: min(460px, 76vw);
  }

  .island-window {
    width: min(620px, calc(100% - 48px));
  }

  .search-result-card {
    left: 44px;
    right: 44px;
  }

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

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

  .feature-card:nth-child(2) {
    border-right: 0;
  }

  .feature-card:nth-child(-n + 2) {
    border-bottom: 0;
  }

  .privacy,
  .license-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .license-card {
    max-width: 680px;
  }

  .pricing-showcase {
    grid-template-columns: 1fr;
    justify-items: center;
  }

}

@media (max-width: 720px) {
  .site-header {
    min-height: 64px;
    padding: 12px 16px;
    gap: 12px;
  }

  .brand {
    font-size: 18px;
  }

  .nav-actions .button-ghost {
    display: none;
  }

  .nav-actions .button-dark {
    min-height: 38px;
    padding: 0 13px;
    font-size: 13px;
  }

  .language-switch {
    min-width: 72px;
    height: 36px;
    padding: 0 9px;
    font-size: 12px;
  }

  .language-options {
    min-width: 132px;
    right: auto;
    left: 0;
  }

  .hero {
    gap: 34px;
    padding: 38px 16px 34px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 9.8vw, 42px);
    overflow-wrap: anywhere;
  }

  .hero-title {
    max-width: min(100%, 310px);
    text-wrap: balance;
  }

  .hero-lede {
    margin-top: 10px;
    font-size: 19px;
  }

  .hero-wind-card {
    width: min(220px, 48vw);
  }

  .real-product-showcase {
    padding: 0 0 84px;
  }

  .real-shot {
    border-radius: 18px;
  }

  .real-shot-main {
    aspect-ratio: 4 / 3;
  }

  .real-shot-main img {
    object-position: 50% 0%;
  }

  .real-shot-stack {
    left: 10px;
    right: 10px;
    bottom: -34px;
    display: flex;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
  }

  .real-shot-stack .real-shot {
    flex: 0 0 76%;
    scroll-snap-align: center;
  }

  .product-screens {
    max-width: calc(100vw - 28px);
    margin-top: 54px;
  }

  .screen-card {
    flex-basis: 84vw;
    min-height: 190px;
    border-radius: 16px;
  }

  .screen-card-tall {
    min-height: 280px;
  }

  .hero-actions {
    display: grid;
  }

  .button-large {
    width: 100%;
  }

  .hero-meta {
    display: grid;
    gap: 8px;
    justify-items: center;
  }

  .hero-meta li + li::before {
    display: none;
  }

  .desktop-stage {
    border-radius: 24px;
    aspect-ratio: 9 / 13.5;
    transform: none;
  }

  .app-demo-stage {
    border-width: 8px;
    border-radius: 24px;
  }

  .demo-menubar {
    height: 34px;
    gap: 10px;
    padding: 0 10px;
    font-size: 11px;
  }

  .demo-menubar span:nth-of-type(n + 4) {
    display: none;
  }

  .island-window {
    top: 34px;
    width: calc(100% - 24px);
    padding: 12px;
    border-radius: 0 0 18px 18px;
  }

  .island-window-head {
    grid-template-columns: 42px 1fr 36px;
    gap: 10px;
    min-height: 72px;
  }

  .island-window-head img {
    width: 42px;
    height: 42px;
  }

  .island-window-head h2,
  .session-card h3,
  .mail-card h3 {
    font-size: 14px;
  }

  .island-window-head p {
    margin-top: 4px;
    font-size: 12px;
  }

  .token-pill {
    display: none;
  }

  .gear-button {
    width: 36px;
    height: 36px;
  }

  .session-card,
  .mail-card {
    min-height: auto;
    margin-top: 12px;
    padding: 14px;
  }

  .session-card {
    grid-template-columns: 34px 1fr;
  }

  .codex-mark {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .status-light,
  .codex-chip {
    display: none;
  }

  .session-copy strong,
  .session-copy p,
  .mail-card p {
    font-size: 12px;
  }

  .mail-card {
    grid-template-columns: 38px 1fr;
  }

  .mail-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .mail-tags span {
    min-width: 48px;
    height: 28px;
    padding: 0 10px;
    font-size: 12px;
  }

  .search-result-card {
    left: 10px;
    right: 10px;
    bottom: 74px;
    border-radius: 18px;
  }

  .search-head {
    grid-template-columns: 30px 1fr 26px;
    min-height: 58px;
    gap: 12px;
    padding: 0 16px;
  }

  .search-head svg {
    width: 26px;
    height: 26px;
  }

  .search-head strong {
    font-size: 20px;
  }

  .contract-preview {
    grid-template-columns: 44px 1fr auto;
    gap: 12px;
    padding: 16px 16px 10px;
  }

  .doc-thumb {
    width: 42px;
    height: 42px;
    border-radius: 9px;
  }

  .contract-preview h3 {
    font-size: 16px;
  }

  .contract-preview p,
  .masked-fields dt,
  .masked-fields dd {
    font-size: 12px;
  }

  .masked-fields {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 6px 16px 18px;
  }

  .masked-fields div {
    grid-template-columns: 74px 1fr;
  }

  .showcase-controls {
    bottom: 18px;
    width: calc(100% - 24px);
    justify-content: center;
  }

  .showcase-controls span {
    min-width: 0;
    flex: 1;
    height: 34px;
    padding: 0 8px;
    font-size: 12px;
  }

  .floating-island {
    top: 54px;
    width: min(272px, calc(100% - 40px));
  }

  .review-panel {
    top: 130px;
    right: 18px;
    width: calc(100% - 36px);
    padding: 16px;
  }

  .folder-row {
    right: 18px;
    left: 18px;
    bottom: 28px;
    gap: 14px;
    font-size: 12px;
  }

  .folder-row i {
    width: 54px;
    height: 36px;
  }

  .feature-strip,
  .workflow,
  .privacy,
  .pricing,
  .seo-topics,
  .faq {
    padding: 64px 16px;
  }

  .seo-landing-main {
    width: min(100% - 32px, 1060px);
    padding: 108px 0 64px;
  }

  .seo-article section,
  .seo-panel {
    padding: 22px;
  }

  .section-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .feature-grid,
  .timeline,
  .seo-topic-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
    padding: 0;
    border: 0;
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .feature-card svg {
    margin-bottom: 18px;
  }

  .timeline {
    gap: 34px;
  }

  .timeline::before {
    display: none;
  }

  .timeline article {
    justify-items: start;
    min-height: 0;
    padding: 0;
    text-align: left;
  }

  .timeline span {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    font-size: 20px;
  }

  .privacy-copy {
    text-align: center;
  }

  .privacy .check-list {
    justify-items: center;
    padding-left: 0;
  }

  .privacy .check-list li {
    width: min(100%, 720px);
  }

  .license-card {
    gap: 22px;
    width: 100%;
    min-height: 520px;
    padding: 24px;
    border-radius: 22px;
  }

  .license-main {
    padding-top: 10px;
  }

  .price-row {
    align-items: flex-end;
    gap: 14px;
  }

  .device-tabs button {
    min-height: 48px;
    font-size: 14px;
  }

  .check-list.compact li {
    font-size: 15px;
  }

  .license-card .button-large {
    min-height: 56px;
    font-size: 16px;
  }

  .gift-connector {
    height: 96px;
    margin: -2px auto -4px;
  }

  .gift-connector svg {
    height: 96px;
    transform: scaleX(0.9);
  }

  .card-choice-panel {
    gap: 18px;
    width: 100%;
  }

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

  .collector-card {
    border-radius: 16px;
  }

  .site-footer {
    gap: 28px;
    padding: 54px 16px 34px;
  }

  .site-footer nav {
    grid-template-columns: 1fr;
  }

  .copyright {
    white-space: normal;
  }
}

/* Forest Terminal HUD redesign */
:root {
  color-scheme: dark;
  --forest-green: #44ef78;
  --terminal-green: #60ff8d;
  --terminal-cyan: #46cfff;
  --terminal-pink: #f05cff;
  --terminal-amber: #ffcf5a;
}

body {
  color: #f3f8f5;
  background: #020503;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
}

body::before {
  opacity: 0.42;
  background:
    radial-gradient(ellipse at 8% 14%, rgba(255, 255, 255, 0.62) 0 1px, rgba(255, 255, 255, 0.28) 2px, transparent 7px),
    radial-gradient(ellipse at 24% 48%, rgba(255, 255, 255, 0.46) 0 1px, rgba(255, 255, 255, 0.18) 2px, transparent 9px),
    radial-gradient(ellipse at 68% 18%, rgba(180, 236, 255, 0.54) 0 1px, rgba(255, 255, 255, 0.2) 2px, transparent 8px),
    radial-gradient(ellipse at 86% 72%, rgba(255, 255, 255, 0.42) 0 1px, rgba(255, 255, 255, 0.16) 3px, transparent 10px),
    radial-gradient(ellipse at 42% 84%, rgba(255, 255, 255, 0.42) 0 1px, rgba(130, 230, 255, 0.18) 3px, transparent 11px);
  background-size: 360px 340px, 480px 420px, 420px 380px, 520px 480px, 390px 430px;
  background-position: 0 0, 120px 80px, 42px 130px, 190px 20px, 80px 180px;
  filter: blur(0.15px);
  animation: rain-glass-drift 18s linear infinite;
}

body::after {
  display: none;
}

@keyframes rain-glass-drift {
  0% {
    background-position: 0 0, 120px 80px, 42px 130px, 190px 20px, 80px 180px;
  }

  100% {
    background-position: 18px 340px, 138px 500px, 60px 510px, 208px 500px, 98px 610px;
  }
}

.ambient-backdrop img {
  filter: saturate(1.08) contrast(1.08) brightness(0.72);
  transform: scale(1.02);
}

.ambient-backdrop::after {
  background:
    radial-gradient(circle at 18% 14%, rgba(73, 255, 130, 0.13), transparent 24rem),
    radial-gradient(circle at 76% 12%, rgba(36, 190, 255, 0.1), transparent 25rem),
    linear-gradient(180deg, rgba(0, 4, 2, 0.56) 0%, rgba(0, 4, 2, 0.24) 42%, rgba(0, 4, 2, 0.7) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.54), transparent 32%, transparent 68%, rgba(0, 0, 0, 0.56));
  box-shadow: inset 0 0 180px rgba(0, 0, 0, 0.7);
}

.rain-canvas {
  z-index: 1;
  opacity: 0.72;
  mix-blend-mode: screen;
  filter: contrast(1.32) brightness(1.16) saturate(1.08);
}

main,
.site-footer,
.purchase-modal {
  z-index: 3;
}

.purchase-modal {
  z-index: 1000;
}

.site-header {
  min-height: 64px;
  grid-template-columns: auto 1fr auto;
  border-bottom-color: rgba(83, 255, 143, 0.12);
  background: rgba(0, 5, 3, 0.62);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

.site-header.is-scrolled {
  background: rgba(0, 5, 3, 0.86);
}

.brand {
  grid-column: 1;
  font-size: 19px;
  font-weight: 850;
}

.brand-icon {
  width: 30px;
  height: 30px;
}

.nav-links {
  display: none;
  justify-content: center;
  color: rgba(231, 246, 236, 0.76);
}

.nav-links a:hover {
  color: var(--forest-green);
}

.button {
  border-radius: 10px;
}

.button-dark {
  background: #020403;
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(68, 239, 120, 0.14), 0 16px 38px rgba(0, 0, 0, 0.42);
}

.button-dark:hover {
  background: #08120b;
  box-shadow: 0 0 0 1px rgba(68, 239, 120, 0.42), 0 18px 44px rgba(0, 0, 0, 0.48);
}

.button-light,
.button-ghost,
.language-switch {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #f5faf7;
}

.button-light:hover,
.button-ghost:hover,
.language-switch:hover {
  background: rgba(68, 239, 120, 0.12);
}

.nav-actions {
  grid-column: 3;
  position: relative;
  z-index: 1;
  width: fit-content;
  justify-self: end;
}

.hero {
  width: min(1760px, calc(100vw - 64px));
  max-width: none;
  min-height: auto;
  padding: clamp(34px, 4vw, 74px) 0 52px;
  gap: 26px;
}

.hero::before {
  inset: 18px -4px 22px;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 18%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.22)),
    rgba(0, 8, 5, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 0 0 1px rgba(68, 239, 120, 0.035),
    0 42px 120px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(2px) saturate(1.05);
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(640px, 1.18fr);
  align-items: start;
  gap: clamp(34px, 4vw, 76px);
  width: min(1540px, calc(100% - 68px));
  margin: 0 auto;
}

.hero-copy {
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-height: 0;
  text-align: left;
}

.hero-command {
  margin: 0 0 18px;
  color: rgba(118, 255, 156, 0.84);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 820;
  letter-spacing: 0.02em;
  text-shadow: 0 0 18px rgba(68, 239, 120, 0.28);
}

.hero-command span {
  color: #ffffff;
}

.hero h1,
.hero-title {
  display: grid;
  max-width: 680px;
  margin: 0;
  white-space: normal;
  text-wrap: balance;
}

.hero-title span {
  display: block;
}

.hero-title span:first-child {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(58px, 6.3vw, 108px);
  line-height: 0.88;
}

.hero-title span:nth-child(2) {
  margin-top: 8px;
  color: #ffffff;
  font-size: clamp(42px, 4.7vw, 82px);
  line-height: 0.92;
}

.hero-title span:last-child {
  margin-top: 2px;
  color: rgba(232, 246, 237, 0.86);
  font-size: clamp(42px, 4.7vw, 82px);
  line-height: 0.92;
}

.hero-lede {
  max-width: 660px;
  margin: 24px 0 32px;
  color: rgba(235, 248, 239, 0.76);
  font-size: clamp(18px, 1.45vw, 25px);
  font-weight: 680;
  line-height: 1.5;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.36);
}

.hero-actions {
  justify-content: flex-start;
  gap: 12px;
}

.product-hunt-badge {
  order: 3;
  display: inline-flex;
  width: fit-content;
  margin-top: 20px;
  margin-bottom: 2px;
  border-radius: 10px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
  transition: transform 160ms ease, filter 160ms ease;
}

.product-hunt-badge:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.product-hunt-badge img {
  display: block;
  width: 250px;
  height: 54px;
}

.hero-meta {
  margin-top: 24px;
  color: rgba(231, 246, 236, 0.68);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-width: 0;
  justify-content: stretch;
  padding-top: 0;
  transform: translateY(clamp(14px, 1.4vw, 22px));
}

.terminal-hud {
  position: relative;
  display: block;
  width: 100%;
  min-height: 560px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hud-island {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 20;
  display: block;
  width: min(408px, calc(100vw - 620px));
  height: 54px;
  min-height: 54px;
  padding: 0;
  border: 0;
  border-radius: 0 0 26px 26px;
  background: #000000;
  color: #ffffff;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(255, 255, 255, 0.035),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
  transform: translateX(-50%);
  margin: 0;
  overflow: hidden;
  pointer-events: auto;
  will-change: width, border-radius, box-shadow;
  transition:
    width 720ms cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 720ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 720ms ease;
}

.hud-island:is(:hover, .is-expanded) {
  width: min(720px, calc(100vw - 780px));
  height: auto;
  border-radius: 0 0 34px 34px;
  box-shadow:
    0 26px 64px rgba(0, 0, 0, 0.74),
    0 0 0 1px rgba(255, 255, 255, 0.055),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.hud-island-bar {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) max-content 13px;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 5px 15px;
}

.hud-lottie {
  display: block;
  width: 38px;
  height: 38px;
  overflow: visible;
}

.hud-lottie svg {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.hud-island-bar strong {
  overflow: hidden;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hud-token {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.hud-status-dot {
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: #27f36d;
  box-shadow:
    0 0 18px rgba(39, 243, 109, 0.92),
    0 0 34px rgba(39, 243, 109, 0.38);
}

.hud-expand {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    max-height 720ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 360ms ease;
}

.hud-island:is(:hover, .is-expanded) .hud-expand {
  max-height: 320px;
  opacity: 1;
}

.hud-expand-content {
  display: grid;
  gap: 10px;
  padding: 12px 14px 16px;
}

.hud-expanded-head {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 0 2px;
}

.hud-expanded-head img,
.hud-file-avatar {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
}

.hud-file-avatar {
  display: block;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(235, 238, 241, 0.92)),
    #ffffff;
  box-shadow: inset 0 -10px 18px rgba(0, 0, 0, 0.05);
}

.hud-expanded-head strong {
  display: block;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 920;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hud-expanded-head span {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hud-progress-strip {
  display: grid;
  grid-template-columns: auto 1px auto;
  align-items: center;
  gap: 12px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 850;
}

.hud-progress-strip i {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.16);
}

.hud-progress-strip b {
  color: #45ef7d;
}

.hud-progress-strip em {
  color: #ffe600;
  font-style: normal;
}

.hud-expanded-list {
  display: grid;
  gap: 8px;
}

.hud-expanded-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 18px;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.hud-expanded-item img,
.hud-file-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
}

.hud-file-icon {
  display: grid;
  place-items: center;
  background: #ffffff;
  color: rgba(0, 0, 0, 0.64);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 900;
}

.hud-expanded-item h4 {
  margin: 0 0 3px;
  overflow: hidden;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hud-expanded-item p {
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 760;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hud-expanded-item mark {
  margin-right: 6px;
  background: transparent;
  color: #ffe600;
  font-weight: 920;
}

.hud-expanded-item strong {
  justify-self: end;
  color: #ffe600;
  font-size: 16px;
}

.hud-action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hud-action-row span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 900;
}

.hud-action-row span:last-child {
  background: rgba(255, 255, 255, 0.92);
  color: #050505;
}

.hud-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  grid-template-rows: 1fr 0.88fr 0.86fr;
  gap: 18px;
  min-height: 560px;
  margin-top: 0;
  padding: 24px;
  border: 1px solid rgba(68, 239, 120, 0.13);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.88)),
    rgba(0, 0, 0, 0.9);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hud-panel {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 18px 18px 16px;
  border: 1px solid rgba(68, 239, 120, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(45, 255, 113, 0.035), transparent 42%),
    rgba(2, 6, 4, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 28px rgba(68, 239, 120, 0.06);
}

.hud-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(68, 239, 120, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68, 239, 120, 0.18) 1px, transparent 1px);
  background-size: 22px 22px;
}

.hud-panel > * {
  position: relative;
  z-index: 1;
}

.terminal-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--terminal-green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.terminal-title span {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 22px;
  border-radius: 5px;
  background: var(--terminal-green);
  color: #041007;
  font-size: 12px;
}

.profile-row {
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.profile-row img {
  width: 66px;
  height: 66px;
  border: 1px solid rgba(68, 239, 120, 0.34);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  object-fit: contain;
}

.profile-row strong {
  display: block;
  color: #ffffff;
  font-size: 20px;
}

.profile-row small {
  display: block;
  margin-top: 5px;
  color: rgba(206, 224, 211, 0.62);
  font-size: 13px;
  font-weight: 740;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
  color: rgba(219, 231, 223, 0.66);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

.metric-row b {
  display: block;
  color: var(--terminal-cyan);
  font-size: 20px;
  font-variant-numeric: tabular-nums;
  transition: color 360ms ease, text-shadow 360ms ease;
}

.hud-contrib {
  grid-column: 2;
}

.contrib-grid {
  display: grid;
  grid-template-columns: repeat(21, 1fr);
  gap: 6px;
  margin-top: 18px;
}

.contrib-grid i {
  aspect-ratio: 1;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 rgba(68, 239, 120, 0);
  transition:
    background-color 720ms ease,
    box-shadow 720ms ease,
    opacity 720ms ease,
    transform 720ms ease;
}

.contrib-grid i.on {
  background: rgba(45, 214, 93, 0.62);
}

.contrib-grid i.hot {
  background: #44ef78;
  box-shadow: 0 0 12px rgba(68, 239, 120, 0.42);
}

.hud-contrib p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 12px 0 0;
  color: rgba(206, 224, 211, 0.62);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

.hud-contrib p span {
  width: 22px;
  height: 12px;
  border-radius: 3px;
  background: rgba(45, 214, 93, 0.25);
}

.hud-contrib p span:nth-child(3) {
  background: rgba(45, 214, 93, 0.5);
}

.hud-contrib p span:nth-child(4) {
  background: #44ef78;
}

.hud-download,
.hud-disk,
.hud-file,
.hud-codex {
  min-height: 152px;
}

.traffic {
  display: flex;
  gap: 26px;
  margin: 20px 0 16px;
  color: rgba(206, 224, 211, 0.58);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
}

.traffic b {
  color: var(--terminal-cyan);
  font-variant-numeric: tabular-nums;
  transition: color 360ms ease, text-shadow 360ms ease;
}

.traffic em {
  color: var(--terminal-pink);
  font-style: normal;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  transition: color 360ms ease, text-shadow 360ms ease;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  align-items: end;
  gap: 6px;
  height: 38px;
  margin-top: 8px;
  overflow: hidden;
}

.signal-row span {
  width: 100%;
  height: 12px;
  border-radius: 4px 4px 2px 2px;
  background: var(--terminal-cyan);
  box-shadow: 0 0 10px rgba(72, 204, 244, 0.18);
  transition:
    height 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 900ms ease,
    box-shadow 900ms ease;
}

.signal-row span.peak {
  height: 24px;
}

.signal-row span.is-hot {
  box-shadow: 0 0 18px rgba(72, 204, 244, 0.36);
}

.signal-row.tx span {
  background: var(--terminal-pink);
  box-shadow: 0 0 10px rgba(229, 74, 240, 0.18);
}

.signal-row.tx span.is-hot {
  box-shadow: 0 0 18px rgba(229, 74, 240, 0.34);
}

.disk-number {
  display: block;
  margin-top: 14px;
  color: var(--terminal-green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 42px;
  font-variant-numeric: tabular-nums;
  line-height: 0.95;
  transition: color 420ms ease, text-shadow 420ms ease;
}

.disk-bar {
  height: 14px;
  margin: 12px 0;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.disk-bar span {
  display: block;
  width: 69%;
  height: 100%;
  background: linear-gradient(90deg, #44ef78, #88ff7a);
  box-shadow: 0 0 18px rgba(68, 239, 120, 0.45);
  transition: width 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hud-disk dl {
  display: grid;
  gap: 6px;
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-variant-numeric: tabular-nums;
  font-size: 12px;
}

.hud-disk dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.hud-disk dt {
  color: rgba(206, 224, 211, 0.56);
}

.hud-disk dd {
  margin: 0;
  color: var(--terminal-cyan);
  font-weight: 900;
}

.hud-file p,
.hud-codex p {
  margin: 18px 0 0;
  color: rgba(226, 238, 230, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.hud-file b,
.hud-codex b {
  display: block;
  color: #ffffff;
  font-size: 17px;
}

.hud-file ul {
  display: grid;
  gap: 6px;
  margin: 14px 0 0;
  padding: 0;
  color: rgba(226, 238, 230, 0.68);
  font-size: 13px;
  font-weight: 720;
  list-style: none;
}

.hud-file li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--terminal-green);
}

.hud-codex p span {
  display: block;
  margin-top: 6px;
  color: var(--terminal-amber);
  font-weight: 900;
}

.task-bars {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.task-bars i {
  display: block;
  height: 10px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--terminal-green), var(--terminal-cyan));
  box-shadow: 0 0 16px rgba(68, 239, 120, 0.28);
  transition: width 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.task-bars i:nth-child(2) {
  background: linear-gradient(90deg, var(--terminal-green), var(--terminal-amber));
}

.product-screens {
  width: min(1540px, calc(100vw - 64px));
  max-width: none;
  margin-top: clamp(34px, 3.2vw, 58px);
}

.terminal-scenarios {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.terminal-scenarios .screen-card {
  display: grid;
  gap: 14px;
  min-height: 210px;
  padding: 24px;
  border-color: rgba(68, 239, 120, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(68, 239, 120, 0.055), transparent 40%),
    rgba(0, 8, 5, 0.93);
  color: #ffffff;
  backdrop-filter: blur(10px) saturate(1.08);
}

.terminal-scenarios .screen-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(68, 239, 120, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68, 239, 120, 0.22) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.terminal-scenarios .screen-card > * {
  position: relative;
  z-index: 1;
}

.terminal-scenarios .screen-card span {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(68, 239, 120, 0.2);
  border-radius: 999px;
  color: rgba(153, 255, 181, 0.9);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 860;
}

.terminal-scenarios .screen-card strong {
  color: #ffffff;
  font-size: 24px;
  line-height: 1.12;
}

.terminal-scenarios .screen-card p {
  margin: 0;
  color: rgba(224, 239, 228, 0.68);
  font-size: 15px;
  font-weight: 640;
  line-height: 1.55;
}

.feature-strip,
.workflow,
.privacy,
.pricing,
.seo-topics,
.faq {
  background: transparent;
}

.feature-strip {
  padding-top: 92px;
}

.feature-strip .section-heading,
.workflow .section-heading,
.pricing .section-heading,
.seo-topics .section-heading,
.faq .section-heading {
  color: #ffffff;
}

.feature-strip .section-heading h2,
.workflow .section-heading h2,
.pricing .section-heading h2,
.seo-topics .section-heading h2,
.faq .section-heading h2,
.privacy-copy h2 {
  color: #ffffff;
  font-weight: 900;
}

.feature-strip .section-heading p,
.workflow .section-heading p,
.pricing .section-heading p,
.seo-topics .section-heading p {
  color: rgba(224, 239, 228, 0.7);
}

.feature-grid {
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(68, 239, 120, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.52)),
    rgba(0, 8, 5, 0.5);
  backdrop-filter: blur(8px) saturate(1.08);
}

.feature-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(68, 239, 120, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.feature-card svg {
  width: 32px;
  height: 32px;
  margin-bottom: 22px;
}

.workflow .timeline article {
  min-height: 0;
  padding: 0 22px 12px;
}

.timeline span {
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.64);
}

.privacy {
  max-width: min(1180px, calc(100vw - 48px));
  border: 1px solid rgba(68, 239, 120, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.28)),
    rgba(0, 8, 5, 0.36);
  backdrop-filter: blur(8px) saturate(1.08);
}

.privacy .check-list {
  padding-left: 0;
}

.privacy .check-list li {
  margin-right: auto;
  margin-left: auto;
}

.seo-topic-grid a,
.faq-list,
.license-card {
  border-radius: 12px;
}

.site-footer {
  color: rgba(224, 239, 228, 0.72);
  border-top-color: rgba(68, 239, 120, 0.12);
}

.site-footer p,
.site-footer nav {
  color: rgba(224, 239, 228, 0.62);
}

@media (max-width: 1180px) {
  .hero-shell {
    grid-template-columns: 1fr;
    width: min(980px, calc(100% - 44px));
  }

  .hero-copy {
    align-items: center;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .terminal-hud {
    min-height: 560px;
  }

  .hero-visual {
    transform: none;
  }

  .hud-island {
    width: min(370px, calc(100vw - 430px));
  }

  .hud-island:is(:hover, .is-expanded) {
    width: min(560px, calc(100vw - 660px));
  }

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

@media (max-width: 760px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    width: 100vw;
    max-width: 100vw;
  }

  .nav-actions {
    flex: 0 0 auto;
    max-width: 128px;
    margin-left: auto;
  }

  .language-switch {
    min-width: 92px;
  }

  .nav-actions .button-dark {
    display: none;
  }

  .hero {
    width: min(100vw - 24px, 100%);
    padding-top: 34px;
  }

  .hero::before {
    inset: 8px 0 18px;
    border-radius: 22px;
  }

  .hero-shell {
    width: min(100%, calc(100vw - 34px));
    gap: 28px;
  }

  .hero-title span:first-child {
    font-size: clamp(54px, 19vw, 74px);
  }

  .hero-title span:nth-child(2),
  .hero-title span:last-child {
    max-width: 100%;
    overflow-wrap: normal;
    font-size: clamp(29px, 8vw, 32px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .terminal-hud {
    min-height: 0;
  }

  .hud-island {
    top: 2px;
    width: min(250px, 52vw);
    height: 42px;
    min-height: 42px;
    border-radius: 0 0 22px 22px;
  }

  .hud-island:is(:hover, .is-expanded) {
    width: min(420px, 86vw);
    height: auto;
    border-radius: 0 0 28px 28px;
  }

  .hud-island-bar {
    grid-template-columns: 32px minmax(0, 1fr) 12px;
    min-height: 42px;
    gap: 7px;
    padding: 4px 10px;
  }

  .hud-token {
    display: none;
  }

  .hud-lottie {
    width: 32px;
    height: 32px;
  }

  .hud-island-bar strong {
    font-size: 11px;
  }

  .hud-status-dot {
    width: 11px;
    height: 11px;
  }

  .hud-expand-content {
    padding: 10px;
  }

  .hud-expanded-head,
  .hud-expanded-item {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .hud-expanded-head img,
  .hud-expanded-item img,
  .hud-file-icon,
  .hud-file-avatar {
    width: 32px;
    height: 32px;
  }

  .hud-expanded-item strong {
    display: none;
  }

  .hud-progress-strip {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hud-progress-strip i {
    display: none;
  }

  .hud-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 12px;
  }

  .hud-contrib {
    grid-column: auto;
  }

  .hud-panel {
    min-height: 150px;
    padding: 16px;
  }

  .terminal-title {
    font-size: 13px;
  }

  .contrib-grid {
    grid-template-columns: repeat(14, 1fr);
    gap: 5px;
  }

  .hud-disk dl div {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .product-screens {
    width: min(100vw - 28px, 100%);
    margin-top: 18px;
  }

  .terminal-scenarios {
    grid-template-columns: 1fr;
  }

  .terminal-scenarios .screen-card {
    min-height: 190px;
  }

  .feature-grid {
    padding: 12px;
  }

  .feature-card {
    min-height: 0;
    padding: 20px;
  }
}
