@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/neo/bricolage-grotesque-600.ttf") format("truetype");
}

@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/neo/bricolage-grotesque-700.ttf") format("truetype");
}

@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/fonts/neo/bricolage-grotesque-800.ttf") format("truetype");
}

@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/neo/jetbrains-mono-500.ttf") format("truetype");
}

@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/neo/jetbrains-mono-600.ttf") format("truetype");
}

@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/neo/jetbrains-mono-700.ttf") format("truetype");
}

:root {
  --coral: #e5392b;
  --coral-top: #ec5341;
  --coral-bot: #ce2e22;
  --coral-soft: #f4715f;
  --ink: #181311;
  --paper: #f3efe9;
  --paper-2: #ede7de;
  --surface-dark: radial-gradient(120% 80% at 50% 26%, #2a1b17 0%, #1a1310 55%, #120c0a 100%);
  --font-display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --content-width: 1120px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --radius-device-phone-outer: 35px;
  --radius-device-phone-inner: 27px;
  --radius-device-tablet-outer: 27px;
  --radius-device-tablet-inner: 18px;
  --shadow-card: 0 8px 24px rgba(48, 34, 28, 0.14), 0 2px 6px rgba(48, 34, 28, 0.08);
  --shadow-device-light: 0 26px 46px rgba(48, 34, 28, 0.26), 0 10px 18px rgba(48, 34, 28, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-mono);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(229, 57, 43, 0.42);
  outline-offset: 3px;
}

.neo-wrap {
  width: calc(100% - 48px);
  max-width: var(--content-width);
  margin: 0 auto;
}

.neo-skip {
  position: absolute;
  left: 20px;
  top: 16px;
  z-index: 20;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  font-weight: 750;
  text-decoration: none;
}

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

.neo-topbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: calc(100% - 48px);
  max-width: var(--content-width);
  min-height: 84px;
  margin: 0 auto;
}

.neo-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font: 800 17px/1 var(--font-display);
  text-decoration: none;
  white-space: nowrap;
}

.neo-brand img {
  display: block;
  border-radius: 9px;
  box-shadow: 0 10px 26px rgba(48, 34, 28, 0.16);
}

.neo-brand em {
  color: var(--coral);
  font-style: normal;
}

.neo-primary-nav,
.neo-header-actions,
.neo-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.neo-primary-nav {
  justify-content: center;
  gap: 4px;
}

.neo-primary-nav a,
.neo-language,
.neo-footer nav a {
  color: #7a716a;
  font: 700 12.5px/1 var(--font-mono);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.neo-primary-nav a {
  border-radius: var(--radius-pill);
  padding: 10px 12px;
}

.neo-primary-nav a:hover,
.neo-primary-nav a.is-active,
.neo-language:hover,
.neo-footer nav a:hover {
  color: var(--coral);
}

.neo-primary-nav a.is-active {
  background: rgba(229, 57, 43, 0.09);
}

.neo-header-actions {
  justify-content: flex-end;
  gap: 14px;
}

.neo-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 0 26px;
  font: 700 15px/1 var(--font-mono);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.neo-button:active {
  transform: scale(0.97);
}

.neo-button-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 14px 28px rgba(229, 57, 43, 0.28);
}

.neo-button-primary:hover {
  background: var(--coral-bot);
}

.neo-button-ghost {
  border-color: rgba(24, 19, 17, 0.16);
  background: transparent;
  color: var(--ink);
}

.neo-button-ghost:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.neo-header-download {
  min-height: 42px;
  padding: 0 20px;
  font-size: 13.5px;
}

.neo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--coral);
  font: 700 11.3px/1 var(--font-mono);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.neo-eyebrow span {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--coral);
  flex: 0 0 auto;
}

.neo-hero h1,
.neo-section h2,
.neo-final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.04;
}

.neo-hero {
  padding: 56px 0 104px;
}

.neo-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.92fr);
  gap: 56px;
  align-items: center;
}

.neo-hero-copy,
.neo-hero-visual {
  min-width: 0;
}

.neo-hero h1 {
  max-width: 12ch;
  font-size: 60px;
}

.neo-hero-lead,
.neo-section-copy p,
.neo-band > div > p,
.neo-final-cta p {
  margin: 0;
  color: #5c5450;
  font-size: 17px;
  line-height: 1.65;
}

.neo-hero-lead {
  max-width: 38rem;
  margin-top: 22px;
}

.neo-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.neo-hero-note {
  max-width: 34rem;
  margin: 28px 0 0;
  color: #948b84;
  font-size: 13.5px;
  line-height: 1.6;
}

.neo-qr-callout {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  max-width: 34rem;
  margin-top: 26px;
  border-radius: var(--radius-md);
  background: #fff;
  padding: 14px;
  box-shadow: var(--shadow-card);
}

.neo-qr-callout img {
  display: block;
  width: 112px;
  height: 112px;
  border-radius: 10px;
}

.neo-qr-callout strong {
  display: block;
  color: var(--ink);
  font: 800 17px/1.15 var(--font-display);
}

.neo-qr-callout span {
  display: block;
  margin-top: 8px;
  color: #6b625b;
  font-size: 13px;
  line-height: 1.5;
}

.neo-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 34rem;
  margin: 38px 0 0;
}

.neo-hero-stats div {
  border-top: 1px solid rgba(24, 19, 17, 0.14);
  padding-top: 12px;
}

.neo-hero-stats dt {
  color: var(--ink);
  font: 800 16px/1.1 var(--font-display);
}

.neo-hero-stats dd {
  margin: 6px 0 0;
  color: #8a8079;
  font-size: 12px;
  line-height: 1.4;
}

.neo-hero-visual {
  position: relative;
  min-height: 480px;
}

.neo-hero-glow {
  position: absolute;
  left: 52%;
  top: 38%;
  width: 520px;
  height: 520px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(229, 57, 43, 0.14) 0%, rgba(229, 57, 43, 0) 62%);
  pointer-events: none;
}

.neo-device {
  position: relative;
  background: #0a0a0b;
  box-shadow: var(--shadow-device-light);
}

.neo-device img {
  display: block;
  width: 100%;
}

.neo-device-tablet {
  border-radius: var(--radius-device-tablet-outer);
  padding: 8px;
}

.neo-device-tablet img {
  border-radius: var(--radius-device-tablet-inner);
}

.neo-device-phone {
  border-radius: var(--radius-device-phone-outer);
  padding: 7px;
}

.neo-device-phone img {
  border-radius: var(--radius-device-phone-inner);
}

.neo-hero-tablet {
  position: absolute;
  left: 0;
  top: 8%;
  width: 78%;
  transform: rotate(-3deg);
}

.neo-hero-phone {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 34%;
  max-width: 190px;
  transform: rotate(4deg);
}

.neo-section {
  padding: 96px 0;
}

.neo-section-white {
  background: #fff;
}

.neo-section-alt {
  background: var(--paper-2);
}

.neo-section-copy {
  max-width: 650px;
}

.neo-section h2 {
  font-size: 38px;
}

.neo-section-copy p,
.neo-band > div > p {
  margin-top: 16px;
}

.neo-source-grid,
.neo-workflow-grid,
.neo-pro-grid,
.neo-faq-grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.neo-source-grid,
.neo-pro-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.neo-workflow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.neo-card,
.neo-workflow-step,
.neo-pro-group,
.neo-compare-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.neo-card {
  padding: 28px;
}

.neo-source-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  border-radius: var(--radius-pill);
  background: rgba(229, 57, 43, 0.1);
  color: var(--coral);
  padding: 0 14px;
  font: 700 11px/1 var(--font-mono);
  letter-spacing: 0.08em;
}

.neo-card h3,
.neo-workflow-step h3,
.neo-pro-group h3,
.neo-faq-item h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
}

.neo-card h3 {
  margin-top: 18px;
  font-size: 18px;
}

.neo-card p,
.neo-workflow-step p,
.neo-pro-group span,
.neo-faq-item p {
  margin: 8px 0 0;
  color: #635a53;
  font-size: 13.5px;
  line-height: 1.58;
}

.neo-card p {
  margin-top: 10px;
  font-size: 14.5px;
}

.neo-step-shot {
  display: block;
  width: 100%;
  height: 150px;
  overflow: hidden;
  border: 0;
  background: #181311;
  padding: 0;
  cursor: zoom-in;
  font: inherit;
  text-align: left;
}

.neo-step-shot:hover img,
.neo-step-shot:focus-visible img {
  transform: scale(1.035);
}

.neo-step-shot:focus-visible {
  outline: 3px solid rgba(229, 57, 43, 0.42);
  outline-offset: -3px;
}

.neo-step-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.18s ease;
}

.neo-shot-dialog {
  width: min(1040px, calc(100vw - 48px));
  max-width: none;
  max-height: calc(100vh - 48px);
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--paper);
  color: var(--ink);
  padding: 0;
  box-shadow: 0 32px 80px rgba(24, 19, 17, 0.32);
}

.neo-shot-dialog::backdrop {
  background: rgba(24, 19, 17, 0.62);
}

.neo-shot-dialog-inner {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.neo-shot-dialog h3 {
  margin: 0;
  padding-right: 48px;
  color: var(--ink);
  font: 800 20px/1.2 var(--font-display);
}

.neo-shot-dialog img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 138px);
  border-radius: var(--radius-md);
  object-fit: contain;
}

.neo-shot-dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  font: 800 24px/1 var(--font-display);
}

.neo-step-body {
  padding: 20px 22px 24px;
}

.neo-step-body > span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font: 800 12px/1 var(--font-mono);
}

.neo-workflow-step h3 {
  margin-top: 14px;
  font-size: 17px;
}

.neo-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 56px;
  align-items: center;
}

.neo-band-reverse {
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 0.95fr);
}

.neo-band-reverse > :first-child {
  order: -1;
}

.neo-check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.neo-check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.55;
}

.neo-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--coral);
}

.neo-check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  width: 5px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(42deg);
}

.neo-compare {
  display: grid;
  gap: 16px;
}

.neo-compare-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  color: #8a8079;
  font-size: 12px;
  font-weight: 700;
}

.neo-compare-after {
  position: relative;
}

.neo-compare-after img {
  display: block;
  width: 100%;
}

.neo-compare-after .neo-compare-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0));
  color: #fff;
  padding: 14px 18px;
}

.neo-compare-after strong {
  color: #fff;
  font-weight: 800;
}

.neo-pro-group {
  padding: 28px;
}

.neo-pro-group h3 {
  font-size: 17px;
}

.neo-pro-group ul {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.neo-pro-group li {
  border-top: 1px solid rgba(24, 19, 17, 0.1);
  padding-top: 13px;
}

.neo-pro-group strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.neo-free-pro-note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  max-width: 900px;
  margin: 32px auto 0;
  border: 1px solid rgba(229, 57, 43, 0.24);
  border-radius: var(--radius-md);
  background: rgba(229, 57, 43, 0.08);
  padding: 20px 24px;
}

.neo-free-pro-note strong {
  flex: 0 0 auto;
  color: var(--coral);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.neo-free-pro-note span {
  color: #5c5450;
  font-size: 14px;
  line-height: 1.6;
}

.neo-privacy-flow {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr;
  align-items: center;
  gap: 8px;
}

.neo-privacy-flow div {
  border: 1px solid rgba(24, 19, 17, 0.12);
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--ink);
  padding: 20px 12px;
  text-align: center;
  font: 700 13px/1.3 var(--font-mono);
}

.neo-privacy-flow div:nth-child(3) {
  border-color: rgba(229, 57, 43, 0.35);
  background: rgba(229, 57, 43, 0.06);
  color: var(--coral);
}

.neo-privacy-flow span {
  height: 2px;
  background: rgba(24, 19, 17, 0.18);
}

.neo-faq-item {
  border-top: 1px solid rgba(24, 19, 17, 0.12);
  padding-top: 16px;
}

.neo-faq-item h3 {
  font-size: 15.5px;
}

.neo-final-cta {
  background: var(--surface-dark);
  text-align: center;
  padding: 110px 0;
}

.neo-final-cta .neo-eyebrow {
  justify-content: center;
  color: var(--coral-soft);
}

.neo-final-cta .neo-eyebrow span {
  background: var(--coral-soft);
}

.neo-final-cta h2 {
  max-width: 16ch;
  margin: 0 auto;
  color: #fff;
  font-size: 44px;
}

.neo-final-cta p {
  max-width: 32rem;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.72);
}

.neo-final-cta .neo-button {
  margin-top: 30px;
}

.neo-footer {
  background: var(--paper);
}

.neo-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 0;
}

.neo-footer nav {
  justify-content: flex-end;
  gap: 18px;
}

@media (max-width: 1024px) {
  .neo-topbar {
    grid-template-columns: auto auto;
  }

  .neo-primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    padding-bottom: 16px;
  }

  .neo-hero {
    padding: 36px 0 72px;
  }

  .neo-hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .neo-hero-visual {
    min-height: 380px;
    order: -1;
  }

  .neo-hero-tablet {
    left: 4%;
    width: min(72vw, 560px);
  }

  .neo-hero-phone {
    right: 6%;
    bottom: 18px;
    width: min(30vw, 170px);
  }

  .neo-hero h1 {
    font-size: 46px;
  }

  .neo-qr-callout {
    display: none;
  }

  .neo-source-grid,
  .neo-pro-grid,
  .neo-band,
  .neo-band-reverse,
  .neo-faq-grid {
    grid-template-columns: 1fr;
  }

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

  .neo-band-reverse > :first-child {
    order: 0;
  }

  .neo-section {
    padding: 72px 0;
  }

  .neo-section h2 {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .neo-wrap,
  .neo-topbar {
    width: calc(100% - 32px);
  }

  .neo-topbar {
    gap: 14px;
    min-height: 72px;
  }

  .neo-brand span {
    display: none;
  }

  .neo-header-download {
    display: none;
  }

  .neo-primary-nav {
    max-width: 100%;
    flex-wrap: wrap;
    padding-bottom: 12px;
  }

  .neo-primary-nav a {
    flex: 0 0 auto;
  }

  .neo-hero h1 {
    font-size: 36px;
  }

  .neo-hero-visual {
    min-height: clamp(220px, 58vw, 300px);
  }

  .neo-hero-glow {
    left: 50%;
    width: 320px;
    height: 320px;
  }

  .neo-hero-tablet {
    left: 0;
    top: 12%;
    width: min(70vw, 280px);
  }

  .neo-hero-phone {
    right: 2%;
    bottom: 28px;
    width: min(28vw, 118px);
  }

  .neo-button,
  .neo-cta-row {
    width: 100%;
  }

  .neo-hero-stats,
  .neo-workflow-grid {
    grid-template-columns: 1fr;
  }

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

  .neo-privacy-flow span {
    width: 2px;
    height: 20px;
    margin: 0 auto;
  }

  .neo-free-pro-note,
  .neo-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .neo-final-cta {
    padding: 84px 0;
  }

  .neo-final-cta h2 {
    font-size: 30px;
  }

  .neo-footer nav {
    justify-content: flex-start;
  }
}
