@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --bg: #070910;
  --bg-soft: #0b0e18;
  --panel: #0f1320;
  --panel-2: #141927;
  --line: rgba(255, 255, 255, .105);
  --line-strong: rgba(255, 255, 255, .18);
  --text: #f7f8fb;
  --muted: #969dac;
  --cyan: #55e6d9;
  --blue: #748dff;
  --violet: #ad75ff;
  --gold: #f3c96b;
  --danger: #ff6e7f;
  --shell: min(1180px, calc(100vw - 44px));
  --radius: 28px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 84% 10%, rgba(93, 105, 255, .13), transparent 31rem),
    radial-gradient(circle at 5% 42%, rgba(41, 219, 197, .07), transparent 35rem),
    var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
a,
img,
video {
  -webkit-user-drag: none;
}

body {
  user-select: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #071013;
  background: var(--cyan);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 76px;
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(7, 9, 16, .84), rgba(7, 9, 16, .54));
  backdrop-filter: blur(14px);
  transition: height .25s ease, background .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  height: 66px;
  border-color: var(--line);
  background: rgba(7, 9, 16, .94);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  letter-spacing: -.02em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-nav > a,
.nav-download {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 0;
  border-radius: 12px;
  color: #cbd0da;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.main-nav > a:hover,
.main-nav > a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, .065);
}

.nav-download {
  min-width: 104px;
  margin-left: 8px;
  gap: 7px;
  color: #071312;
  background: linear-gradient(135deg, #7cf2e6, #45d6c7);
  box-shadow: 0 10px 30px rgba(65, 219, 204, .18);
}

.nav-download:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #9afff5, #56e5d6);
}

.nav-download small {
  font-size: 8px;
  font-weight: 800;
  opacity: .6;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  border-radius: 3px;
  transition: transform .25s ease, opacity .25s ease;
}

.hero {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 112px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 44px 54px;
  align-items: end;
}

.hero-copy {
  align-self: center;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.hero h1,
.section-heading h2,
.final-statement h2,
.page-hero h1,
.legal-hero h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: -.065em;
  line-height: .92;
}

.hero h1 {
  font-size: clamp(68px, 9.4vw, 134px);
}

.hero h1 em,
.section-heading h2 em,
.final-statement h2 em {
  color: transparent;
  background: linear-gradient(105deg, var(--cyan), #7aa7ff 55%, var(--violet));
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
}

.hero-lead {
  max-width: 610px;
  margin: 30px 0 24px;
  color: #b5bbc7;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.65;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-points span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c7ccd5;
  background: rgba(255, 255, 255, .025);
  font-size: 11px;
  font-weight: 700;
}

.hero-brand {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-self: center;
  padding: 26px 20px 22px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .065), transparent 45%),
    rgba(12, 15, 25, .72);
  overflow: hidden;
}

.hero-brand::before {
  content: "";
  position: absolute;
  inset: -40% 10% auto;
  height: 280px;
  background: radial-gradient(circle, rgba(90, 232, 217, .15), transparent 68%);
  pointer-events: none;
}

.logo-orbit {
  position: relative;
  width: 220px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.logo-orbit img {
  position: relative;
  z-index: 2;
  width: 178px;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .36));
}

.logo-orbit > span {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(103, 228, 217, .28);
  border-radius: 50%;
}

.logo-orbit > span:nth-child(2) {
  inset: 23px;
  border-style: dashed;
  animation: orbit 20s linear infinite;
}

.logo-orbit > span:nth-child(3) {
  inset: 41px;
  border-color: rgba(139, 120, 255, .24);
  animation: orbit 13s linear infinite reverse;
}

.hero-brand > p {
  margin: 3px 0 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
}

.hero-brand > p span {
  color: var(--cyan);
}

.primary-download {
  width: 100%;
  min-height: 65px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 16px;
  border: 0;
  border-radius: 18px;
  color: #071211;
  background: linear-gradient(135deg, #9bfff4, #4bd9cb);
  box-shadow: 0 15px 38px rgba(67, 224, 208, .18);
  text-align: left;
  cursor: pointer;
  transition: transform .24s var(--ease), box-shadow .24s ease;
}

.primary-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 19px 44px rgba(67, 224, 208, .26);
}

.primary-download:active {
  transform: translateY(0) scale(.985);
}

.download-symbol {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #eafffc;
  background: #0c2927;
  font-size: 22px;
}

.primary-download > span:last-child {
  display: grid;
  min-width: 0;
}

.primary-download strong {
  font-size: 14px;
  font-weight: 800;
}

.primary-download small {
  margin-top: 3px;
  color: rgba(7, 18, 17, .62);
  font-size: 9px;
  font-style: normal;
}

.primary-download b,
.primary-download i {
  font-style: normal;
  font-weight: 800;
}

.download-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 9px;
}

.product-film {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background: #090b12;
  box-shadow: 0 42px 100px rgba(0, 0, 0, .42);
  overflow: hidden;
}

.film-chrome {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: #838a99;
  background: #0c0f18;
}

.film-chrome > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #293040;
}

.film-chrome > span:first-child {
  background: #ff6878;
}

.film-chrome > span:nth-child(2) {
  background: #f1bd5c;
}

.film-chrome > span:nth-child(3) {
  background: #4dd7a1;
}

.film-chrome b {
  margin-left: 10px;
  font-size: 9px;
  letter-spacing: .18em;
}

.film-chrome em {
  margin-left: auto;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .12em;
}

.film-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 48% 40%, rgba(75, 100, 160, .18), transparent 34%),
    #080a10;
  overflow: hidden;
}

.product-film figcaption {
  min-height: 82px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px 21px;
  border-top: 1px solid var(--line);
}

.product-film figcaption > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
}

.product-film figcaption p {
  margin: 0;
  color: #9ea5b1;
  font-size: 12px;
}

.product-film figcaption strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-size: 13px;
}

.product-film figcaption small {
  color: #747b89;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.why-section {
  padding-block: 140px;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

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

.section-heading--center > p:last-child {
  margin-inline: auto;
}

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

.why-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .035), transparent 44%),
    var(--panel);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s ease, background .3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(110, 232, 219, .27);
  background:
    linear-gradient(145deg, rgba(105, 233, 219, .065), transparent 50%),
    #111623;
}

.why-card--wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(250px, .9fr) minmax(260px, 1.1fr);
  gap: 34px;
  align-items: end;
}

.card-index {
  position: absolute;
  top: 21px;
  left: 22px;
  color: #596070;
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.why-card h3 {
  position: relative;
  z-index: 3;
  margin: 18px 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.why-card p {
  position: relative;
  z-index: 3;
  margin: 0;
  color: #9299a7;
  font-size: 12px;
  line-height: 1.65;
}

.card-visual {
  position: relative;
  min-height: 190px;
  display: grid;
  place-items: center;
}

.why-card:not(.why-card--wide) .card-visual {
  margin-top: 28px;
}

.effect-visual b {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 112px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 32px;
  color: #07100f;
  background: linear-gradient(145deg, #8bfff3, #8372ff);
  font-family: "Space Grotesk", sans-serif;
  font-size: 27px;
  box-shadow: 0 0 55px rgba(92, 229, 216, .22);
}

.effect-visual i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 15px var(--cyan);
  animation: particle 2.2s ease-in-out infinite;
}

.effect-visual i:nth-child(1) { transform: translate(-120px, -45px); }
.effect-visual i:nth-child(2) { transform: translate(100px, -75px); animation-delay: -.6s; }
.effect-visual i:nth-child(3) { transform: translate(132px, 45px); animation-delay: -1.1s; }
.effect-visual i:nth-child(4) { transform: translate(-90px, 80px); animation-delay: -1.6s; }

.ducking-visual {
  grid-template-columns: auto 1fr;
  gap: 30px;
}

.voice-head {
  position: relative;
  width: 78px;
  height: 94px;
  border-radius: 50% 50% 45% 43%;
  background: linear-gradient(145deg, #303746, #171c27);
}

.voice-head::before {
  content: "";
  position: absolute;
  top: 42px;
  left: -9px;
  width: 31px;
  height: 18px;
  border-radius: 50% 0 0 50%;
  background: #252b37;
  transform: rotate(-8deg);
}

.voice-head::after {
  content: "";
  position: absolute;
  top: 47px;
  left: -29px;
  width: 26px;
  height: 2px;
  background: var(--cyan);
  box-shadow: -8px -11px 0 -1px var(--cyan), -8px 11px 0 -1px var(--cyan);
  animation: voice 1.15s ease-in-out infinite;
}

.ducking-meter {
  height: 108px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
}

.ducking-meter em {
  width: 9px;
  height: 78%;
  border-radius: 9px;
  background: linear-gradient(to top, var(--cyan), var(--violet));
  transform-origin: bottom;
  animation: meter 1.2s ease-in-out infinite;
}

.ducking-meter em:nth-child(2) { height: 40%; animation-delay: -.2s; }
.ducking-meter em:nth-child(3) { height: 65%; animation-delay: -.5s; }
.ducking-meter em:nth-child(4) { height: 30%; animation-delay: -.75s; }
.ducking-meter em:nth-child(5) { height: 54%; animation-delay: -.9s; }

.focus-visual > span {
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  color: #d7dce5;
  background: #111724;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}

.focus-visual > b {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(116, 141, 255, .25);
  border-radius: 50%;
  animation: focus 2.6s ease-out infinite;
}

.chat-visual {
  align-content: center;
  gap: 8px;
}

.chat-visual span {
  width: 80%;
  height: 43px;
  border-radius: 15px 15px 15px 4px;
  background: #1d2433;
  transform: translateY(0);
  animation: message-in 3s var(--ease) infinite;
}

.chat-visual span:nth-child(2) {
  width: 62%;
  margin-left: 20%;
  background: rgba(89, 221, 206, .18);
  animation-delay: -1s;
}

.chat-visual span:nth-child(3) {
  width: 70%;
  animation-delay: -2s;
}

.trigger-visual {
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
}

.trigger-visual b,
.trigger-visual span {
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 10px;
  letter-spacing: .1em;
  text-align: center;
}

.trigger-visual b {
  color: #191109;
  background: var(--gold);
}

.trigger-visual span {
  color: #071310;
  background: var(--cyan);
}

.trigger-visual i {
  color: #727a89;
  font-style: normal;
  animation: trigger-arrow 1.4s ease-in-out infinite;
}

.studio-monitor {
  position: relative;
  width: min(360px, 90%);
  aspect-ratio: 16 / 9;
  display: block;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 20px;
  background: #080a10;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .4);
}

.studio-monitor i {
  position: absolute;
  inset: 12px;
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgba(86, 230, 215, .22), transparent 45%),
    #121724;
}

.studio-monitor b {
  position: absolute;
  top: 30px;
  right: 32px;
  width: 28%;
  height: 9px;
  border-radius: 9px;
  background: var(--cyan);
  box-shadow: 0 20px 0 rgba(255, 255, 255, .12), 0 40px 0 rgba(255, 255, 255, .08);
}

.studio-monitor em {
  position: absolute;
  left: 29px;
  bottom: 24px;
  width: 36%;
  height: 40%;
  border-radius: 14px;
  background: linear-gradient(145deg, #616cff, #5ae5d7);
}

.studio-signal {
  position: absolute;
  right: 5%;
  bottom: 8%;
  padding: 8px 11px;
  border-radius: 10px;
  color: #081211;
  background: var(--cyan);
  font-size: 9px;
  font-weight: 900;
}

.sync-visual {
  grid-template-columns: 48px 70px 48px;
  gap: 15px;
}

.sync-visual i {
  width: 48px;
  height: 62px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: #181e2b;
}

.sync-visual b {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(82, 229, 214, .08);
  font-size: 27px;
  animation: orbit 3s linear infinite;
}

.game-visual {
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 9px;
}

.game-visual span {
  color: var(--gold);
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
}

.game-visual i {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.game-visual b {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 22px;
  background: #171d2a;
  font-size: 11px;
}

.pricing-section {
  padding-block: 130px;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 20%, rgba(89, 220, 207, .11), transparent 28rem),
    #090c14;
}

.pricing-grid {
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.pricing-card {
  position: relative;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .045), transparent 43%), var(--panel);
}

.pricing-card--featured {
  border-color: rgba(86, 228, 214, .4);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .27), inset 0 0 50px rgba(69, 214, 200, .035);
}

.pricing-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 9px;
  border-radius: 999px;
  color: #061210;
  background: var(--cyan);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
}

.pricing-card__top {
  display: grid;
}

.pricing-card__top span {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .14em;
}

.pricing-card__top small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.price {
  margin: 34px 0 25px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.price strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 55px;
  line-height: .9;
  letter-spacing: -.06em;
}

.price span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
}

.pricing-card ul {
  min-height: 108px;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 22px;
  color: #abb1bd;
  font-size: 12px;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 800;
}

.pricing-card button {
  width: 100%;
  min-height: 49px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #707786;
  background: #0a0d15;
  font-size: 12px;
  font-weight: 800;
}

.pricing-note {
  margin: 22px auto 0;
  color: #707785;
  font-size: 10px;
  text-align: center;
}

.final-statement {
  min-height: 570px;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
}

.final-statement img {
  width: 72px;
  margin-bottom: 21px;
}

.final-statement > p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .25em;
}

.final-statement h2 {
  font-size: clamp(55px, 8vw, 110px);
}

.site-footer {
  padding-top: 50px;
  border-top: 1px solid var(--line);
  background: #05070c;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 42px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-main > div > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: flex-start;
  gap: 10px 22px;
}

.footer-links a {
  color: #999fac;
  font-size: 11px;
  transition: color .2s ease;
}

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

.footer-bottom {
  min-height: 57px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #5f6571;
  font-size: 9px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.is-visible,
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Secondary pages */
.page-main {
  min-height: 70vh;
  padding: 126px 0 90px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 35px;
  color: #6f7684;
  font-size: 10px;
}

.breadcrumbs a:hover {
  color: var(--cyan);
}

.section-label {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
}

.page-hero,
.legal-hero {
  padding-bottom: 60px;
}

.page-hero h1,
.legal-hero h1 {
  max-width: 950px;
  margin-top: 14px;
  font-size: clamp(48px, 7vw, 92px);
}

.page-hero > p,
.legal-hero > p {
  max-width: 750px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.legal-date {
  font-size: 11px !important;
}

.feature-catalog {
  display: grid;
  gap: 80px;
}

.catalog-group h2 {
  margin: 0 0 22px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(27px, 4vw, 42px);
  letter-spacing: -.04em;
}

.catalog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.catalog-list article {
  min-height: 210px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
}

.catalog-list article > span {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 800;
}

.catalog-list h3 {
  margin: 55px 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
}

.catalog-list p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.legal-wrap {
  max-width: 940px;
}

.legal-content {
  padding: clamp(24px, 5vw, 65px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  user-select: text;
}

.legal-content h2 {
  margin: 42px 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  letter-spacing: -.03em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 28px 0 8px;
  font-size: 16px;
}

.legal-content p,
.legal-content li {
  color: #aeb4bf;
  font-size: 13px;
  line-height: 1.8;
}

.legal-content a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content li + li {
  margin-top: 8px;
}

@keyframes orbit {
  to { transform: rotate(1turn); }
}

@keyframes particle {
  0%, 100% { opacity: .2; filter: blur(1px); }
  50% { opacity: 1; filter: blur(0); box-shadow: 0 0 24px var(--cyan); }
}

@keyframes meter {
  0%, 100% { transform: scaleY(.35); opacity: .45; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes voice {
  0%, 100% { transform: scaleX(.5); opacity: .35; }
  50% { transform: scaleX(1.25); opacity: 1; }
}

@keyframes focus {
  0% { transform: scale(.7); opacity: .65; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes message-in {
  0%, 20% { opacity: 0; transform: translateY(25px) scale(.96); }
  35%, 88% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-12px); }
}

@keyframes trigger-arrow {
  0%, 100% { transform: translateX(-3px); opacity: .35; }
  50% { transform: translateX(4px); opacity: 1; }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 30px, 760px);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }

  .hero-brand {
    width: min(100%, 440px);
    justify-self: center;
  }

  .hero-copy {
    text-align: center;
    justify-self: center;
  }

  .hero-copy .eyebrow,
  .hero-points {
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

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

  .why-card--wide {
    grid-column: span 2;
  }

  .catalog-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-header.is-scrolled {
    height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 15px;
    right: 15px;
    display: grid;
    gap: 3px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(10, 13, 21, .97);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .42);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav > a,
  .nav-download {
    width: 100%;
    min-height: 46px;
    justify-content: flex-start;
    margin: 0;
  }

  .nav-download {
    justify-content: center;
  }

  .hero {
    gap: 32px;
    padding-top: 112px;
    padding-bottom: 84px;
  }

  .hero h1 {
    font-size: clamp(62px, 20vw, 92px);
  }

  .hero-brand {
    width: 100%;
  }

  .film-chrome em {
    display: none;
  }

  .product-film figcaption {
    grid-template-columns: 42px 1fr;
  }

  .product-film figcaption small {
    display: none;
  }

  .why-section,
  .pricing-section {
    padding-block: 90px;
  }

  .why-grid,
  .pricing-grid,
  .catalog-list {
    grid-template-columns: 1fr;
  }

  .why-card,
  .why-card--wide {
    grid-column: auto;
    min-height: 360px;
    display: flex;
  }

  .why-card--wide {
    gap: 0;
  }

  .section-heading h2 {
    font-size: clamp(42px, 14vw, 66px);
  }

  .price strong {
    font-size: 48px;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-bottom {
    justify-content: center;
    gap: 4px;
    padding: 16px 0;
  }
}

@media (max-width: 430px) {
  :root {
    --shell: calc(100% - 22px);
    --radius: 22px;
  }

  .brand-copy {
    display: none;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-points span {
    font-size: 9px;
  }

  .hero-brand {
    padding-inline: 14px;
  }

  .product-film {
    border-radius: 20px;
  }

  .film-chrome {
    height: 41px;
  }

  .product-film figcaption {
    padding: 13px;
  }

  .why-card,
  .pricing-card {
    padding: 22px;
  }

  .page-main {
    padding-top: 100px;
  }
}

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

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

}
