@font-face { font-family: "JetBrains Mono"; font-style: normal; font-weight: 100 800; font-display: swap; src: url('/fonts/jetbrains-mono.ttf') format('truetype'); }
/* Light: Catppuccin Latte. Dark: Omarchy Ethereal. */
:root {
  color-scheme: light;
  --bg: #eff1f5;
  --bg-deep: #e6e9ef;
  --surface: rgba(255, 255, 255, 0.56);
  --surface-solid: #f8f9fb;
  --text: #4c4f69;
  --text-strong: #303446;
  --muted: #6c6f85;
  --faint: #9ca0b0;
  --border: #bcc0cc;
  --border-strong: #9ca0b0;
  --accent: #1e66f5;
  --accent-hover: #174fbe;
  --accent-contrast: #ffffff;
  --positive: #40a02b;
  --pixel: rgba(76, 79, 105, 0.17);
  --focus: #8839ef;
  --shadow: 0 22px 70px rgba(76, 79, 105, 0.12);
  --font: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #060b1e;
  --bg-deep: #030610;
  --surface: rgba(19, 26, 58, 0.58);
  --surface-solid: #0c122b;
  --text: #ffcead;
  --text-strong: #ffe2cf;
  --muted: #c9b8a6;
  --faint: #6d7db6;
  --border: #252e56;
  --border-strong: #3f4b7d;
  --accent: #7d82d9;
  --accent-hover: #9ca0ec;
  --accent-contrast: #030610;
  --positive: #92a593;
  --pixel: rgba(125, 130, 217, 0.2);
  --focus: #c89dc1;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; overflow-x: hidden; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  transition: background-color 180ms ease, color 180ms ease;
}
::selection { background: var(--accent); color: var(--accent-contrast); }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; padding: 10px 14px; background: var(--text-strong); color: var(--bg); }
.skip-link:focus { top: 16px; }

.pixel-field {
  position: absolute;
  z-index: -1;
  top: 62px;
  width: 330px;
  height: 520px;
  opacity: 0.85;
  background-image: radial-gradient(square, var(--pixel) 0 2px, transparent 2.5px);
  background-image: radial-gradient(circle at center, var(--pixel) 0 2px, transparent 2.5px);
  background-size: 23px 23px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 0, transparent 69%);
  mask-image: radial-gradient(ellipse at center, black 0, transparent 69%);
}
.pixel-field--left { left: -105px; transform: rotate(8deg); }
.pixel-field--right { right: -105px; transform: rotate(-8deg); }

.site-header { height: 86px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); }
.wordmark { color: var(--text-strong); font-size: 15px; font-weight: 700; text-decoration: none; letter-spacing: -0.04em; }
.wordmark span { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.sale-status { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.sale-status > span { width: 7px; height: 7px; border-radius: 50%; background: var(--positive); box-shadow: 0 0 0 4px color-mix(in srgb, var(--positive) 15%, transparent); }
.theme-toggle { display: grid; place-items: center; width: 38px; height: 38px; padding: 0; border: 1px solid var(--border); border-radius: 0; background: transparent; color: var(--text); cursor: pointer; transition: background 150ms ease, border-color 150ms ease; }
.theme-toggle:hover { background: var(--surface); border-color: var(--border-strong); }
.theme-toggle svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.theme-toggle .moon { display: none; }
:root[data-theme="dark"] .theme-toggle .sun { display: none; }
:root[data-theme="dark"] .theme-toggle .moon { display: block; }

.hero { min-height: 650px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 105px 0 92px; text-align: center; }
.eyebrow, .section-label { color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.eyebrow::before { content: "[ "; }
.eyebrow::after { content: " ]"; }
.hero .domain-name { display: flex; justify-content: center; margin: 30px 0 24px; color: var(--text-strong); font-size: clamp(48px, 9vw, 118px); font-weight: 800; line-height: 0.94; letter-spacing: -0.09em; }
.hero .domain-name .dot { color: var(--accent); }
.hero-copy { max-width: 790px; margin: 0; color: var(--muted); font-size: clamp(17px, 2vw, 22px); line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 13px; min-height: 50px; padding: 0 20px; border: 1px solid transparent; border-radius: 0; text-decoration: none; font-size: 13px; font-weight: 700; cursor: pointer; transition: transform 150ms ease, color 150ms ease, background 150ms ease, border-color 150ms ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--accent); color: var(--accent-contrast); border-color: var(--accent); }
.button--primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.button--secondary { background: var(--surface); color: var(--text-strong); border-color: var(--border); }
.button--secondary:hover { border-color: var(--border-strong); }
.microcopy { margin: 17px 0 0; color: var(--faint); font-size: 11px; }

.value-section { padding: 35px 0 110px; }
.section-label { margin-bottom: 24px; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.value-grid article { min-height: 265px; padding: 28px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.index { color: var(--faint); font-size: 11px; }
.value-grid h2 { max-width: 270px; margin: 61px 0 16px; color: var(--text-strong); font-size: 19px; line-height: 1.35; letter-spacing: -0.04em; }
.value-grid p { margin: 0; color: var(--muted); font-size: 13px; }

.use-cases { padding-bottom: 110px; }
.ticker { display: flex; flex-wrap: wrap; gap: 10px; }
.ticker span { padding: 10px 13px; border: 1px solid var(--border); color: var(--muted); background: var(--surface); font-size: 12px; }
.ticker span::before { content: "+ "; color: var(--accent); }

.purchase { padding-bottom: 110px; }
.purchase-card { display: grid; grid-template-columns: 1.55fr 0.75fr; border: 1px solid var(--border); background: var(--surface); box-shadow: var(--shadow); }
.purchase-copy { padding: clamp(30px, 5vw, 64px); }
.purchase-copy h2 { max-width: 700px; margin: 0 0 22px; color: var(--text-strong); font-size: clamp(30px, 4.2vw, 54px); line-height: 1.15; letter-spacing: -0.06em; }
.purchase-copy > p { max-width: 680px; color: var(--muted); }
.purchase-copy strong { color: var(--text-strong); }
.process { display: flex; flex-wrap: wrap; gap: 18px 26px; margin: 38px 0 0; padding: 24px 0 0; border-top: 1px solid var(--border); list-style: none; color: var(--muted); font-size: 11px; }
.process li { display: flex; align-items: center; gap: 9px; }
.process span { display: grid; place-items: center; width: 22px; height: 22px; border: 1px solid var(--border-strong); color: var(--accent); }
.price-panel { display: flex; flex-direction: column; align-items: stretch; justify-content: center; padding: clamp(30px, 4vw, 48px); border-left: 1px solid var(--border); background: var(--bg-deep); text-align: center; }
.price-label { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; }
.price { margin: 13px 0 2px; color: var(--text-strong); font-size: clamp(34px, 4vw, 51px); line-height: 1; letter-spacing: -0.07em; }
.price-note { margin-bottom: 30px; color: var(--faint); font-size: 11px; }
.button--wide { width: 100%; }
.escrow-link { margin-top: 17px; color: var(--muted); font-size: 11px; text-underline-offset: 4px; }

.offer { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(40px, 7vw, 100px); padding: 20px 0 120px; }
.offer-intro h2 { margin: 0 0 18px; color: var(--text-strong); font-size: clamp(34px, 5vw, 64px); line-height: 1; letter-spacing: -0.07em; }
.offer-intro p { color: var(--muted); font-size: 13px; }
.contact-form { display: grid; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: grid; gap: 8px; color: var(--text); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
label em { color: var(--faint); font-style: normal; font-weight: 400; text-transform: none; letter-spacing: 0; }
input, select, textarea { width: 100%; border: 1px solid var(--border); border-radius: 0; background: var(--surface); color: var(--text-strong); font-size: 13px; text-transform: none; letter-spacing: 0; transition: border-color 150ms ease, background 150ms ease; }
input, select { height: 51px; padding: 0 14px; }
textarea { padding: 13px 14px; resize: vertical; }
input::placeholder, textarea::placeholder { color: var(--faint); }
input:hover, select:hover, textarea:hover, input:focus, select:focus, textarea:focus { border-color: var(--accent); background: var(--surface-solid); }
input:focus, select:focus, textarea:focus { outline: 2px solid color-mix(in srgb, var(--accent) 28%, transparent); outline-offset: 0; }
.is-invalid { border-color: #d20f39 !important; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-footer { display: flex; align-items: center; gap: 20px; margin-top: 5px; }
.form-status { margin: 0; color: var(--muted); font-size: 11px; }
.form-status.is-success { color: var(--positive); }
.form-status.is-error { color: #d20f39; }
.form-direct { margin: -6px 0 0; color: var(--faint); font-size: 10px; }
.form-direct a { color: var(--muted); text-underline-offset: 3px; }

.site-footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px 0 42px; border-top: 1px solid var(--border); color: var(--faint); font-size: 10px; text-transform: uppercase; letter-spacing: 0.07em; }

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --bg: #060b1e;
    --bg-deep: #030610;
    --surface: rgba(19, 26, 58, 0.58);
    --surface-solid: #0c122b;
    --text: #ffcead;
    --text-strong: #ffe2cf;
    --muted: #c9b8a6;
    --faint: #6d7db6;
    --border: #252e56;
    --border-strong: #3f4b7d;
    --accent: #7d82d9;
    --accent-hover: #9ca0ec;
    --accent-contrast: #030610;
    --positive: #92a593;
    --pixel: rgba(125, 130, 217, 0.2);
    --focus: #c89dc1;
    --shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
  }
  :root:not([data-theme="light"]) .theme-toggle .sun { display: none; }
  :root:not([data-theme="light"]) .theme-toggle .moon { display: block; }
}

@media (max-width: 800px) {
  .wrap { width: min(100% - 28px, 680px); }
  .hero { min-height: 600px; padding-block: 90px 70px; }
  .hero .domain-name { display: block; font-size: clamp(47px, 14vw, 78px); line-height: 1.05; }
  .hero .domain-name span:first-child { display: block; }
  .hero .domain-name .dot { display: none; }
  .hero .domain-name span:last-child::before { content: "."; color: var(--accent); }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid article { min-height: 220px; }
  .value-grid h2 { margin-top: 42px; }
  .purchase-card, .offer { grid-template-columns: 1fr; }
  .price-panel { border-top: 1px solid var(--border); border-left: 0; }
  .offer { gap: 35px; }
}

@media (max-width: 560px) {
  .site-header { height: 74px; }
  .sale-status { display: none; }
  .hero-actions, .hero-actions .button { width: 100%; }
  .hero-copy { font-size: 15px; }
  .field-row { grid-template-columns: 1fr; }
  .process { display: grid; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .site-footer { flex-direction: column; }
}

[hidden] { display: none !important; }
.hero h1 { margin: 0 0 5px; color: var(--text-strong); font-size: clamp(32px, 5vw, 60px); line-height: 1.1; letter-spacing: -0.05em; }
.hero .eyebrow { margin-bottom: 25px; }
.hero-price { margin-top: 25px; }
.price-unit { display: inline-flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; vertical-align: middle; }
.price-basis { display: block; color: var(--muted); font-size: 11px; margin-top: 9px; }
.tax-note, .help-note { color: var(--muted); font-size: 11px; line-height: 1.7; }
.hero > .tax-note, .hero > .help-note { max-width: 780px; margin: 8px 0 0; }
.price-panel .price { font-size: clamp(28px, 3vw, 38px); }
.price-panel .tax-note { margin-block: 16px 0; }
.price-panel .help-note { margin-block: 14px 25px; }
.buyer-form { display: grid; gap: 16px; max-width: 790px; margin: 0 auto 90px; padding: clamp(22px, 5vw, 45px); border: 1px solid var(--border); background: var(--surface); scroll-margin-top: 24px; }
.buyer-form h2, .buyer-form p { margin: 0; }
.buyer-form > p { font-size: 12px; color: var(--muted); }
#vat-field { display: grid; gap: 8px; }
.checkbox-label { display: flex; align-items: flex-start; text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 12px; }
.checkbox-label input { width: 19px; height: 19px; margin: 2px 5px 0 0; flex-shrink: 0; accent-color: var(--accent); }
.offer-amount { display: grid; gap: 8px; }
.offer-amount > label { display: block; }
.offer-amount .help-note { margin: 0; }
#checkout-result { font-size: 13px; overflow-wrap: anywhere; }
.legal { max-width: 850px; padding-block: 65px 90px; }
.legal h1 { color: var(--text-strong); font-size: clamp(30px, 5vw, 48px); }
.legal h2 { font-size: 20px; margin-top: 35px; }
.legal p, .legal li { font-size: 13px; overflow-wrap: anywhere; }
.legal address { font-style: normal; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
