@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/geist-variable.woff2") format("woff2");
}

@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/geist-mono-variable.woff2") format("woff2");
}

:root {
  --canvas: #050505;
  --canvas-soft: #0a0a0a;
  --surface: #131313;
  --surface-elevated: #1b1b1b;
  --surface-soft: #212121;
  --ink: #ffffff;
  --ink-soft: #e9e9e9;
  --ink-muted: #a5a5a5;
  --ink-faint: #737373;
  --orange: #ff5a2c;
  --orange-bright: #ff754f;
  --teal: #3bd8d0;
  --mint-flash: #8cf3bd;
  --purple: #a986ff;
  --border: #2d2d2d;
  --border-soft: #202020;
  --success: #7ee3a1;
  --shell: 1180px;
  --display: "Geist", ui-sans-serif, sans-serif;
  --body: "Geist", ui-sans-serif, sans-serif;
  --mono: "Geist Mono", ui-monospace, monospace;
}

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 4%, rgb(59 216 208 / 7%), transparent 22rem),
    radial-gradient(circle at 10% 16%, rgb(255 90 44 / 6%), transparent 24rem),
    var(--canvas);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  color: inherit;
  font: inherit;
}

img,
svg {
  display: block;
}

code,
pre {
  font-family: var(--mono);
}

code {
  font-size: 0.92em;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--teal);
  color: #04100f;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgb(255 255 255 / 7%);
  background: rgb(5 5 5 / 80%);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 0.65rem;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 760;
  letter-spacing: -0.025em;
}

.brand img {
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: var(--ink-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

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

.nav-links a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.nav-shell > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 720;
  line-height: 1;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button svg,
.text-link svg {
  width: 16px;
  height: 16px;
  margin-left: 0.55rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 180ms ease;
}

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

.button:hover svg,
.text-link:hover svg {
  transform: translateX(3px);
}

.button-primary {
  background: var(--orange);
  color: #fff;
}

.button-primary:hover {
  background: var(--orange-bright);
}

.button-quiet {
  border-color: var(--border);
  background: rgb(255 255 255 / 4%);
  color: var(--ink-soft);
}

.button-quiet:hover {
  border-color: #4a4a4a;
  background: rgb(255 255 255 / 8%);
}

.button-small {
  min-height: 40px;
  padding: 0.65rem 1.05rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  min-height: 780px;
  padding-block: 7rem 6.5rem;
}

.hero h1,
.section-heading h2,
.graph-copy h2,
.privacy-copy h2,
.action-copy h2,
.faq-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.6rem, 6.4vw, 6rem);
  font-weight: 540;
  line-height: 0.88;
}

.headline-static {
  display: block;
}

.headline-rotator {
  display: inline-grid;
  max-width: 100%;
  color: var(--teal);
  isolation: isolate;
  vertical-align: bottom;
  white-space: nowrap;
}

.headline-phrase {
  grid-area: 1 / 1;
  display: block;
  visibility: hidden;
  opacity: 0;
}

.headline-phrase.is-active {
  visibility: visible;
  opacity: 1;
}

.headline-rotator.is-enhanced .headline-phrase {
  visibility: visible;
  opacity: 1;
}

.headline-glyph {
  display: inline-block;
  padding-block: 0.08em;
  margin-block: -0.08em;
  overflow: visible;
  vertical-align: bottom;
}

.headline-space {
  white-space: pre;
}

.headline-character {
  position: relative;
  display: inline-block;
  color: var(--teal);
}

.headline-character-accent,
.headline-character-screen {
  position: absolute;
  inset: 0;
  color: var(--character-accent);
  pointer-events: none;
  transition: opacity 360ms ease;
}

.headline-character-accent {
  opacity: 0.9;
}

.headline-character-screen {
  opacity: 0.2;
  mix-blend-mode: screen;
}

.headline-character--from-below {
  --character-enter-offset: 34%;
  --character-exit-offset: -28%;
}

.headline-character--from-above {
  --character-enter-offset: -34%;
  --character-exit-offset: 28%;
}

.headline-character--accent-1 {
  --character-accent: var(--orange-bright);
}

.headline-character--accent-2 {
  --character-accent: var(--mint-flash);
}

.headline-rotator.is-enhanced .headline-character {
  opacity: 0;
  filter: blur(2px);
  transform: translateY(var(--character-enter-offset)) scale(0.995);
  transition:
    transform 580ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 360ms ease,
    filter 440ms ease;
  transition-delay: calc(var(--character-index) * 42ms);
  will-change: transform, opacity, filter;
}

.headline-rotator.is-enhanced .headline-phrase.is-active .headline-character {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.headline-rotator.is-enhanced
  .headline-phrase.is-active
  .headline-character-accent,
.headline-rotator.is-enhanced
  .headline-phrase.is-active
  .headline-character-screen {
  opacity: 0;
  transition-delay: calc(120ms + var(--character-index) * 42ms);
}

.headline-rotator.is-enhanced .headline-phrase.is-leaving .headline-character {
  opacity: 0;
  filter: blur(1.5px);
  transform: translateY(var(--character-exit-offset)) scale(0.995);
  transition-delay: calc(var(--character-index) * 7ms);
}

.headline-rotator.is-enhanced
  .headline-phrase.is-leaving
  .headline-character-accent {
  opacity: 0.68;
  transition-delay: calc(var(--character-index) * 7ms);
}

.headline-rotator.is-enhanced
  .headline-phrase.is-leaving
  .headline-character-screen {
  opacity: 0.16;
  transition-delay: calc(var(--character-index) * 7ms);
}

.hero-lede {
  max-width: 670px;
  margin: 1.75rem 0 2rem;
  color: var(--ink-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

.command {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 570px);
  min-height: 64px;
  padding: 0.55rem 0.65rem 0.55rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #0d0d0d;
  box-shadow: inset 0 1px rgb(255 255 255 / 3%);
}

.command code {
  color: var(--ink-soft);
  font-size: clamp(0.88rem, 1.6vw, 1rem);
  white-space: nowrap;
}

.command code span {
  margin-right: 0.55rem;
  color: var(--teal);
}

.copy-button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--surface-elevated);
  color: var(--ink-muted);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.copy-button:hover {
  border-color: #505050;
  background: #262626;
  color: var(--ink);
}

.copy-button.copied {
  border-color: rgb(59 216 208 / 38%);
  color: var(--teal);
}

.copy-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 1.75rem 0 0;
  padding: 0;
  color: var(--ink-muted);
  font-size: 0.82rem;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
}

.trust-icon {
  width: 16px;
  height: 16px;
  overflow: visible;
  fill: none;
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-icon rect {
  fill: rgb(59 216 208 / 8%);
  stroke: rgb(59 216 208 / 44%);
  stroke-width: 1;
}

.trust-icon path {
  stroke-width: 1.55;
}

.hero-visual {
  position: relative;
  min-width: 0;
  isolation: isolate;
}

.terminal-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid #353535;
  border-radius: 22px;
  background: rgb(15 15 15 / 94%);
  box-shadow:
    0 32px 90px rgb(0 0 0 / 55%),
    inset 0 1px rgb(255 255 255 / 5%);
  transform: rotate(1.2deg);
}

.terminal-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 54px;
  padding: 0 1rem;
  border-bottom: 1px solid var(--border-soft);
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.terminal-dots {
  display: flex;
  gap: 0.38rem;
}

.terminal-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3e3e3e;
}

.terminal-dots span:first-child {
  background: var(--orange);
}

.terminal-dots span:nth-child(2) {
  background: #e5bd48;
}

.terminal-dots span:last-child {
  background: var(--teal);
}

.terminal-state {
  justify-self: end;
  color: var(--teal);
}

.terminal-body {
  padding: clamp(1.3rem, 4vw, 2.3rem);
  font-family: var(--mono);
  font-size: clamp(0.7rem, 1.15vw, 0.83rem);
}

.terminal-body p {
  margin: 0;
}

.prompt {
  color: var(--teal);
}

.terminal-muted {
  color: var(--ink-faint);
}

.terminal-gap {
  margin-top: 1.65rem !important;
}

.finding {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.15rem;
}

.confidence {
  padding: 0.35rem 0.52rem;
  border: 1px solid;
  border-radius: 999px;
  font-size: 0.58rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.confidence.confirmed {
  border-color: rgb(126 227 161 / 30%);
  background: rgb(126 227 161 / 9%);
  color: var(--success);
}

.confidence.possible {
  border-color: rgb(169 134 255 / 30%);
  background: rgb(169 134 255 / 9%);
  color: #cdbfff;
}

.finding strong,
.finding small {
  display: block;
}

.finding strong {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
}

.finding small {
  margin-top: 0.14rem;
  color: var(--ink-faint);
  font-size: 0.66rem;
}

.terminal-success {
  margin-top: 1.7rem !important;
  color: var(--ink-soft);
}

.terminal-success span {
  color: var(--teal);
}

.lock-chip {
  position: absolute;
  z-index: 4;
  right: -1.2rem;
  bottom: -1.4rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgb(59 216 208 / 25%);
  border-radius: 999px;
  background: #101917;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.66rem;
  box-shadow: 0 16px 40px rgb(0 0 0 / 45%);
}

.lock-chip svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.orb {
  position: absolute;
  z-index: 1;
  border: 1px solid rgb(255 255 255 / 12%);
  filter: saturate(102%) contrast(105%);
}

.orb-orange {
  top: -4rem;
  right: -5rem;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-image: url("assets/gradient-ember.webp");
  background-position: 14% center;
  background-size: 220% auto;
  box-shadow: inset -20px -25px 45px rgb(151 19 0 / 30%);
}

.orb-teal {
  right: 6rem;
  bottom: -5.5rem;
  width: 118px;
  height: 118px;
  border-radius: 35px;
  background: linear-gradient(145deg, #a7fff5, var(--teal) 55%, #137f81);
  box-shadow: inset -18px -20px 35px rgb(0 71 71 / 30%);
  transform: rotate(27deg);
}

.orb-purple {
  top: 28%;
  left: -3rem;
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background-image: url("assets/gradient-violet.webp");
  background-position: 74% center;
  background-size: 250% auto;
  transform: rotate(45deg);
}

.proof-strip {
  border-block: 1px solid var(--border-soft);
  background: rgb(255 255 255 / 1.5%);
}

.proof-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  color: #858585;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.02em;
}

.proof-list span:not(:last-child)::after {
  margin-left: clamp(1rem, 3vw, 3rem);
  color: #353535;
  content: "/";
}

.section {
  padding-block: clamp(6.5rem, 10vw, 10rem);
}

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

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

.section-heading h2,
.graph-copy h2,
.privacy-copy h2,
.action-copy h2,
.faq-heading h2,
.final-cta h2 {
  margin-top: 0;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

.section-heading > p,
.graph-copy > p,
.privacy-copy > p,
.action-copy > p,
.faq-heading > p,
.final-cta > p {
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.section-heading > p {
  max-width: 680px;
  margin: 1.4rem auto 0;
}

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

.step-card {
  position: relative;
  min-height: 360px;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 2.5%), transparent 48%),
    var(--surface);
}

.step-card::after {
  position: absolute;
  right: -3rem;
  bottom: -5rem;
  width: 180px;
  height: 180px;
  border: 1px solid rgb(255 255 255 / 5%);
  border-radius: 50%;
  content: "";
}

.featured-card {
  border-color: rgb(59 216 208 / 28%);
  background:
    radial-gradient(
      circle at 85% 12%,
      rgb(59 216 208 / 10%),
      transparent 12rem
    ),
    var(--surface-elevated);
}

.step-number {
  color: #525252;
  font-family: var(--mono);
  font-size: 0.72rem;
}

.step-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-top: 2.3rem;
  border: 1px solid;
  border-radius: 17px;
  place-items: center;
}

.step-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.icon-orange {
  border-color: rgb(255 90 44 / 24%);
  background: rgb(255 90 44 / 10%);
  color: #ff9d80;
}

.icon-teal {
  border-color: rgb(59 216 208 / 25%);
  background: rgb(59 216 208 / 9%);
  color: var(--teal);
}

.icon-purple {
  border-color: rgb(169 134 255 / 25%);
  background: rgb(169 134 255 / 10%);
  color: #c8b5ff;
}

.step-card h3 {
  margin: 1.55rem 0 0.7rem;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 580;
  letter-spacing: -0.035em;
}

.step-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.step-card code,
.faq-list code {
  color: var(--teal);
}

.graph-section,
.action-section,
.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.graph-copy h2,
.privacy-copy h2,
.action-copy h2,
.faq-heading h2 {
  font-size: clamp(2.5rem, 4.3vw, 3.8rem);
}

.graph-copy > p,
.privacy-copy > p,
.action-copy > p,
.faq-heading > p {
  margin: 1.25rem 0 0;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 2rem 0 1.8rem;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
  list-style: none;
}

.check-list span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  margin-right: 0.65rem;
  border: 1px solid rgb(59 216 208 / 25%);
  border-radius: 50%;
  background: rgb(59 216 208 / 9%);
  color: var(--teal);
  font-size: 0.67rem;
  place-items: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 700;
}

.graph-frame,
.code-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 30px 70px rgb(0 0 0 / 30%);
}

.frame-label,
.code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 1.2rem;
  border-bottom: 1px solid var(--border-soft);
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: 0.65rem;
}

.frame-label span:last-child {
  color: var(--teal);
}

.graph-frame img {
  width: 100%;
  height: auto;
}

.privacy-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  padding: clamp(2rem, 6vw, 5.5rem);
  overflow: hidden;
  border: 1px solid #292929;
  border-radius: 30px;
  background:
    radial-gradient(circle at 0 100%, rgb(255 90 44 / 11%), transparent 25rem),
    radial-gradient(circle at 100% 0, rgb(59 216 208 / 8%), transparent 25rem),
    var(--surface);
}

.privacy-copy,
.privacy-list {
  position: relative;
  z-index: 2;
}

.privacy-copy .button {
  margin-top: 1.6rem;
}

.privacy-list {
  display: grid;
  gap: 0.8rem;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgb(5 5 5 / 45%);
}

.privacy-icon {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.65rem;
}

.privacy-list strong {
  font-size: 0.94rem;
}

.privacy-list p {
  margin: 0.25rem 0 0;
  color: var(--ink-muted);
  font-size: 0.82rem;
}

.privacy-orb {
  position: absolute;
  right: -5rem;
  bottom: -8rem;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--purple), var(--teal));
  filter: blur(2px);
  opacity: 0.22;
}

.action-copy .button {
  margin-top: 1.7rem;
}

.copy-button-compact {
  min-height: 34px;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  font-size: 0.65rem;
}

.code-card pre {
  margin: 0;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  overflow-x: auto;
  color: var(--ink-muted);
  font-size: clamp(0.69rem, 1.35vw, 0.82rem);
  line-height: 1.8;
}

.yaml-key {
  color: #c9b8ff;
}

.yaml-value {
  color: var(--teal);
}

.faq-section {
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 8rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: var(--surface);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 1.25rem 1.4rem;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 680;
  list-style: none;
  transition: color 180ms ease;
}

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

.faq-list summary span {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-left: 1rem;
  border: 1px solid #3a3a3a;
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  background: var(--ink-muted);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 220ms ease;
}

.faq-list details[open]:not(.is-closing) summary {
  color: var(--teal);
}

.faq-list details[open]:not(.is-closing) summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  overflow: hidden;
}

.faq-list details p {
  margin: 0;
  padding: 0 1.4rem 1.4rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.final-cta {
  position: relative;
  margin-bottom: clamp(5rem, 9vw, 8rem);
  padding-inline: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 20% 120%,
      rgb(255 90 44 / 16%),
      transparent 28rem
    ),
    radial-gradient(
      circle at 90% -20%,
      rgb(59 216 208 / 13%),
      transparent 26rem
    ),
    var(--surface);
  text-align: center;
}

.final-cta h2 {
  position: relative;
  z-index: 2;
}

.final-cta > p {
  margin: 1rem auto 2rem;
}

.command-centered {
  position: relative;
  z-index: 2;
  margin-inline: auto;
  text-align: left;
}

.cta-note {
  margin: 1.1rem auto 0 !important;
  color: var(--ink-faint) !important;
  font-family: var(--mono);
  font-size: 0.68rem !important;
}

.cta-geometry span {
  position: absolute;
  display: block;
}

.cta-geometry span:first-child {
  top: 18%;
  left: 7%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-image: url("assets/gradient-ember.webp");
  background-position: 12% center;
  background-size: 230% auto;
  opacity: 0.82;
}

.cta-geometry span:nth-child(2) {
  right: 8%;
  bottom: 15%;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--teal), #9ff7ef);
  opacity: 0.75;
  transform: rotate(38deg);
}

.cta-geometry span:last-child {
  top: 12%;
  right: 22%;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  background-image: url("assets/gradient-violet.webp");
  background-position: 72% center;
  background-size: 260% auto;
  opacity: 0.78;
  transform: rotate(22deg);
}

.site-footer {
  border-top: 1px solid var(--border-soft);
  background: #030303;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 3rem;
  min-height: 190px;
}

.footer-shell > div:first-child p,
.copyright {
  margin: 0.55rem 0 0;
  color: var(--ink-faint);
  font-size: 0.76rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 620;
}

.copyright {
  margin: 0;
}

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

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 5rem 7rem;
  }

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

  .hero-visual {
    width: min(100%, 660px);
    margin-inline: auto;
  }

  .proof-list {
    flex-wrap: wrap;
    justify-content: center;
    padding-block: 1.2rem;
  }

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

  .step-card {
    min-height: 300px;
  }

  .graph-section,
  .action-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .graph-copy,
  .action-copy,
  .faq-heading {
    max-width: 680px;
  }

  .privacy-panel {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
  }
}

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

  .site-header .button span {
    display: none;
  }

  .hero {
    padding-top: 3.8rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.1rem);
    line-height: 0.9;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .command {
    padding-left: 0.85rem;
  }

  .copy-button span {
    display: none;
  }

  .hero-actions {
    display: grid;
  }

  .trust-list {
    gap: 0.7rem 1rem;
  }

  .orb-orange {
    right: -2rem;
    width: 110px;
    height: 110px;
  }

  .orb-purple {
    display: none;
  }

  .orb-teal {
    right: 2rem;
    width: 80px;
    height: 80px;
    border-radius: 24px;
  }

  .terminal-card {
    transform: none;
  }

  .terminal-body {
    font-size: 0.63rem;
  }

  .finding {
    grid-template-columns: 78px 1fr;
    gap: 0.6rem;
  }

  .lock-chip {
    right: 0.4rem;
  }

  .proof-list span:not(:last-child)::after {
    display: none;
  }

  .section {
    padding-block: 5.5rem;
  }

  .section-heading h2,
  .graph-copy h2,
  .privacy-copy h2,
  .action-copy h2,
  .faq-heading h2,
  .final-cta h2 {
    font-size: clamp(2.25rem, 12vw, 3rem);
  }

  .step-card {
    min-height: 320px;
    padding: 1.5rem;
  }

  .privacy-panel {
    border-radius: 22px;
  }

  .action-section {
    gap: 2.5rem;
  }

  .code-card pre {
    font-size: 0.62rem;
  }

  .final-cta {
    width: min(calc(100% - 1.5rem), var(--shell));
    border-radius: 22px;
  }

  .cta-geometry {
    display: none;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-block: 3rem;
  }
}

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

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

  .headline-phrase:not(.is-active) {
    display: none;
  }
}
