@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("/assets/fonts/jetbrains-mono.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --paper: #0b0b0c;
  --surface: #141416;
  --surface-2: #1d1d20;
  --surface-3: #26262a;
  --ink: #f5f5f2;
  --ink-2: #c8c8c6;
  --ink-3: #8e8e92;
  --ink-4: #5a5a5e;
  --hairline: rgba(255, 255, 255, 0.09);
  --hairline-2: rgba(255, 255, 255, 0.16);
  --volt: #f5a524;
  --volt-press: #e0941a;
  --volt-soft: rgba(245, 165, 36, 0.13);
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --shell: min(1180px, calc(100vw - 40px));
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--volt);
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: var(--radius-sm);
  background: var(--volt);
  color: #111113;
  font-weight: 700;
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--hairline);
  background: rgba(11, 11, 12, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand img {
  border: 1px solid var(--hairline-2);
  border-radius: 11px;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a,
.footer-links a {
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 520;
  text-decoration: none;
  transition: color 160ms var(--ease);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid var(--hairline-2);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: transform 80ms var(--ease), background 160ms var(--ease), border-color 160ms var(--ease);
}

.button:hover {
  border-color: rgba(245, 165, 36, 0.42);
  background: var(--surface-2);
}

.button:active {
  transform: scale(0.98);
}

.button-small {
  justify-self: end;
  min-height: 42px;
  padding-inline: 18px;
}

.button-primary {
  border-color: var(--volt);
  background: var(--volt);
  color: #111113;
}

.button-primary:hover {
  border-color: var(--volt-press);
  background: var(--volt-press);
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(430px, 0.76fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  padding-block: 72px 88px;
}

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

.eyebrow,
.group-label,
.card-kicker {
  margin: 0 0 18px;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--volt);
  box-shadow: 0 0 0 5px var(--volt-soft);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(56px, 7vw, 92px);
  font-weight: 650;
}

h1 span {
  color: var(--volt);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 620;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 600;
}

.hero-intro,
.section-heading > p,
.split-heading > p,
.privacy-grid > div > p,
.support-hero > div > p {
  max-width: 650px;
  margin: 0;
  color: var(--ink-2);
  font-size: clamp(17px, 1.6vw, 20px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
}

.text-link {
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 6px;
  color: var(--volt);
  transition: transform 160ms var(--ease);
}

.text-link:hover span {
  transform: translateX(4px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 12px;
  list-style: none;
}

.trust-row li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--volt);
}

.hero-visual {
  position: relative;
  width: min(100%, 520px);
  height: 650px;
  justify-self: end;
  padding: 34px 48px 0;
  border: 1px solid var(--hairline);
  border-radius: 34px;
  background:
    linear-gradient(var(--hairline) 1px, transparent 1px),
    linear-gradient(90deg, var(--hairline) 1px, transparent 1px),
    var(--surface);
  background-size: 32px 32px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(to top, rgba(11, 11, 12, 0.62), transparent);
  pointer-events: none;
}

.hero-visual picture {
  position: relative;
  z-index: 1;
  height: 580px;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(245, 165, 36, 0.18);
  border-radius: 28px 28px 0 0;
}

.hero-visual picture img {
  width: 100%;
  height: 100%;
  aspect-ratio: 642 / 1389;
  object-fit: cover;
  object-position: center 67%;
}

.instrument-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.readout {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border: 1px solid rgba(245, 165, 36, 0.35);
  border-radius: 10px;
  background: rgba(11, 11, 12, 0.86);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.readout small {
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.09em;
}

.readout strong {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 550;
}

.readout strong span {
  color: var(--volt);
  font-size: 11px;
}

.readout-left {
  left: 18px;
  top: 30%;
}

.readout-right {
  right: 18px;
  bottom: 18%;
}

.proof-strip {
  border-block: 1px solid var(--hairline);
  background: var(--surface);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid > div {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 30px;
  border-right: 1px solid var(--hairline);
}

.proof-grid > div:first-child {
  border-left: 1px solid var(--hairline);
}

.proof-grid strong {
  color: var(--volt);
  font-family: var(--mono);
  font-size: 30px;
  font-weight: 550;
}

.proof-grid span {
  color: var(--ink-3);
  font-size: 13px;
}

.section {
  padding-block: clamp(96px, 12vw, 160px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 64px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.workflow-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.workflow-card.active {
  border-color: rgba(245, 165, 36, 0.42);
  background:
    linear-gradient(135deg, var(--volt-soft), transparent 45%),
    var(--surface);
}

.step {
  display: block;
  margin-bottom: 54px;
  color: var(--ink-4);
  font-family: var(--mono);
  font-size: 12px;
}

.formula {
  margin-bottom: 24px;
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: clamp(18px, 2vw, 24px);
}

.formula.amber {
  color: var(--volt);
}

.workflow-card p,
.platform-card p,
.tool-group li,
.legal p,
.legal li,
.faq-grid p,
.contact-card p {
  color: var(--ink-2);
}

.tools-section {
  border-block: 1px solid var(--hairline);
  background: var(--surface);
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: 72px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.tools-layout {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 390px);
  align-items: start;
  gap: clamp(40px, 7vw, 96px);
}

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

.tool-group {
  padding-top: 20px;
  border-top: 1px solid var(--hairline-2);
}

.group-label {
  min-height: 36px;
  margin-bottom: 18px;
  color: var(--volt);
}

.tool-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tool-group li {
  padding-block: 10px;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
}

.tools-visual {
  margin: 0;
}

.tools-visual picture img {
  aspect-ratio: 642 / 1389;
  border: 1px solid var(--hairline-2);
  border-radius: 26px;
  object-fit: cover;
}

.tools-visual figcaption {
  margin-top: 14px;
  color: var(--ink-3);
  font-size: 12px;
}

.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.platform-card {
  min-height: 400px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  background: var(--surface);
  overflow: hidden;
}

.platform-wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 0.8fr 1fr;
  align-items: center;
  gap: 72px;
}

.card-kicker {
  color: var(--volt);
}

.platform-card h3 {
  max-width: 520px;
  font-size: clamp(28px, 3vw, 40px);
}

.history-rows {
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.history-rows > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--hairline);
}

.history-rows > div:last-child {
  border-bottom: 0;
}

.history-rows span {
  color: var(--ink-2);
  font-size: 14px;
}

.history-rows strong {
  color: var(--volt);
  font-family: var(--mono);
  font-weight: 500;
}

.watch-face {
  width: 190px;
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 50px auto 0;
  border: 10px solid var(--surface-3);
  border-radius: 52px;
  background: var(--paper);
  text-align: center;
  box-shadow: 0 0 0 1px var(--hairline-2), 0 24px 48px rgba(0, 0, 0, 0.35);
}

.watch-face span,
.watch-face small {
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.watch-face strong {
  margin-block: 10px 4px;
  color: var(--volt);
  font-family: var(--mono);
  font-size: 44px;
  font-weight: 500;
}

.widget-sample {
  display: grid;
  gap: 8px;
  max-width: 320px;
  margin: 50px auto 0;
  padding: 24px;
  border: 1px solid var(--hairline-2);
  border-radius: 30px;
  background: var(--paper);
}

.widget-sample > span {
  color: var(--ink-4);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.widget-sample strong {
  color: var(--volt);
  font-family: var(--mono);
  font-size: 36px;
  font-weight: 500;
}

.widget-sample strong small {
  font-size: 16px;
}

.widget-sample em {
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 12px;
  font-style: normal;
}

.privacy-callout {
  border-block: 1px solid rgba(245, 165, 36, 0.25);
  background: var(--volt-soft);
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 80px;
}

.privacy-grid h2 {
  margin-bottom: 0;
}

.privacy-grid .text-link {
  display: inline-block;
  margin-top: 26px;
}

.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: clamp(100px, 14vw, 180px);
  text-align: center;
}

.final-cta img {
  margin-bottom: 28px;
  border: 1px solid var(--hairline-2);
  border-radius: 22px;
}

.final-cta .eyebrow {
  margin-bottom: 16px;
}

.final-cta h2 {
  margin-bottom: 10px;
}

.final-cta p:not(.eyebrow) {
  margin: 0 0 30px;
  color: var(--ink-2);
}

.site-footer {
  border-top: 1px solid var(--hairline);
  background: var(--surface);
}

.footer-grid {
  min-height: 130px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.footer-brand {
  font-size: 18px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-grid > p {
  justify-self: end;
  margin: 0;
  color: var(--ink-4);
  font-size: 12px;
}

.legal-main {
  min-height: 70vh;
}

.legal,
.support-content {
  max-width: 860px;
  padding-block: 90px 120px;
}

.legal-header {
  padding-bottom: 54px;
  border-bottom: 1px solid var(--hairline);
}

.legal h1,
.support-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(48px, 7vw, 76px);
}

.legal-date {
  color: var(--ink-3) !important;
  font-family: var(--mono);
  font-size: 12px;
}

.legal-lead {
  max-width: 730px;
  margin-top: 28px;
  color: var(--ink-2) !important;
  font-size: 20px;
}

.legal section {
  padding-block: 36px;
  border-bottom: 1px solid var(--hairline);
}

.legal section:last-child {
  border-bottom: 0;
}

.legal h2,
.support-content h2,
.contact-card h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.legal p,
.legal li {
  max-width: 760px;
}

.legal a,
.contact-card a:not(.button) {
  color: var(--volt);
}

.policy-summary {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.policy-summary li {
  padding: 18px 20px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.policy-summary strong {
  color: var(--ink);
}

.support-hero {
  min-height: 420px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  padding-block: 80px;
  border-bottom: 1px solid var(--hairline);
}

.support-content {
  padding-top: 90px;
}

.support-content > h2 {
  margin-bottom: 30px;
}

.faq-grid {
  display: grid;
  gap: 12px;
}

.faq-grid details {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.faq-grid summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

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

.faq-grid summary::after {
  content: "+";
  color: var(--volt);
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 400;
}

.faq-grid details[open] summary::after {
  content: "−";
}

.faq-grid p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  margin-bottom: 120px;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(245, 165, 36, 0.35);
  border-radius: var(--radius-lg);
  background: var(--volt-soft);
}

.contact-card h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.contact-actions {
  display: grid;
  gap: 12px;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr minmax(340px, 0.72fr);
    gap: 34px;
  }

  .hero-visual {
    padding-inline: 32px;
  }

  .tools-layout {
    grid-template-columns: 1fr 320px;
    gap: 40px;
  }

  .tool-groups {
    grid-template-columns: 1fr 1fr;
  }

  .tool-group:last-child {
    grid-column: 1 / -1;
  }
}

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

  .nav-shell {
    grid-template-columns: 1fr auto;
    min-height: 66px;
  }

  nav {
    display: none;
  }

  .button-small {
    min-height: 40px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 66px 72px;
  }

  .hero-copy {
    text-align: left;
  }

  h1 {
    font-size: clamp(52px, 15vw, 72px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    width: min(100%, 500px);
    height: 620px;
    justify-self: center;
  }

  .hero-visual picture {
    height: 550px;
  }

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

  .proof-grid > div {
    min-height: 112px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--hairline);
  }

  .proof-grid > div:nth-child(odd) {
    border-left: 1px solid var(--hairline);
  }

  .section {
    padding-block: 92px;
  }

  .section-heading {
    margin-bottom: 46px;
  }

  .workflow-grid,
  .split-heading,
  .tools-layout,
  .platform-grid,
  .platform-wide,
  .privacy-grid,
  .support-hero,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 22px;
  }

  .workflow-card {
    min-height: 260px;
  }

  .step {
    margin-bottom: 36px;
  }

  .tool-groups {
    grid-template-columns: 1fr;
  }

  .tool-group:last-child {
    grid-column: auto;
  }

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

  .platform-wide {
    gap: 40px;
  }

  .privacy-grid {
    gap: 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-block: 38px;
    text-align: center;
  }

  .footer-grid > p {
    justify-self: center;
  }

  .support-hero {
    gap: 30px;
  }

  .support-hero .button {
    width: fit-content;
  }

  .contact-card {
    gap: 24px;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: 38px;
    height: 38px;
  }

  .button-small {
    padding-inline: 14px;
  }

  .hero-visual {
    height: 540px;
    padding: 28px 30px 0;
    border-radius: 26px;
  }

  .hero-visual picture {
    height: 480px;
  }

  .readout {
    display: none;
  }

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

  .proof-grid > div {
    border-left: 1px solid var(--hairline);
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

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

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