:root {
  color-scheme: dark;
  --ink: #f4f5f7;
  --muted: #aab1bc;
  --dim: #747e8d;
  --surface: #111821;
  --surface-2: #161f2a;
  --surface-3: #202a36;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.23);
  --orange: #ff6b28;
  --orange-soft: #ffb28e;
  --navy: #09111b;
  --page: #0b1118;
  --max: 76rem;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Aptos", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 20rem;
  background:
    radial-gradient(circle at 12% 0%, rgba(47, 75, 103, 0.22), transparent 28rem),
    var(--page);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  color: var(--orange-soft);
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-200%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--page);
  font-weight: 700;
}

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

.site-header {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 17, 27, 0.9);
  backdrop-filter: blur(14px);
}

.site-header--overlay {
  position: absolute;
  inset: 0 0 auto;
  background: linear-gradient(180deg, rgba(5, 10, 16, 0.95), rgba(5, 10, 16, 0.62) 65%, transparent);
  border: 0;
}

.nav-wrap,
.section,
.footer-inner,
.legal-shell,
.page-hero__inner {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.nav-wrap {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, var(--surface-3), #0b1017);
  color: var(--orange);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
}

.brand-name {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #d9dde3;
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a[aria-current="page"] {
  color: var(--orange-soft);
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  text-decoration: none;
}

.nav-button:hover {
  border-color: var(--orange);
  background: rgba(255, 107, 40, 0.09);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 1.15rem;
  height: 1px;
  margin: 0.28rem auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(55rem, 100svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #08101a;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 17, 0.98) 0%, rgba(5, 10, 17, 0.92) 32%, rgba(5, 10, 17, 0.18) 66%, rgba(5, 10, 17, 0.28) 100%),
    linear-gradient(0deg, rgba(5, 10, 17, 0.92) 0%, transparent 35%);
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,0.17) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.17) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
  padding: 11rem 0 7rem;
}

.hero-copy {
  max-width: 47rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.1rem;
  color: var(--orange-soft);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 2px;
  background: var(--orange);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.display {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.7rem;
  font-size: clamp(3.4rem, 8vw, 7.4rem);
}

.hero-lede {
  max-width: 38rem;
  margin-bottom: 2.2rem;
  color: #d2d7de;
  font-size: clamp(1.1rem, 2vw, 1.28rem);
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.15rem;
  padding: 0.72rem 1.25rem;
  border: 1px solid transparent;
  background: var(--orange);
  color: #16100d;
  font-weight: 780;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button::after {
  content: "\2197";
  font-size: 1.08em;
}

.button:hover {
  transform: translateY(-2px);
  background: #ff8a54;
  color: #16100d;
}

.button--ghost {
  border-color: var(--line-strong);
  background: rgba(7, 13, 20, 0.55);
  color: var(--ink);
}

.button--ghost::after {
  content: "\2193";
}

.button--ghost:hover {
  border-color: var(--orange);
  background: rgba(255, 107, 40, 0.09);
  color: var(--ink);
}

.hero-meta {
  position: absolute;
  z-index: 2;
  right: max(1rem, calc((100vw - var(--max)) / 2));
  bottom: 2rem;
  display: flex;
  gap: 1rem;
  color: #d3d7dc;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-meta span + span {
  padding-left: 1rem;
  border-left: 1px solid var(--line-strong);
}

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

.section + .section {
  border-top: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 8vw, 9rem);
  margin-bottom: 3.5rem;
  align-items: end;
}

.section h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.section-intro {
  max-width: 42rem;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.product-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  min-height: 29rem;
  border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, #16202b, #0e151e 70%);
}

.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 5vw, 4rem);
}

.product-copy h3 {
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.product-copy p {
  max-width: 39rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.text-link {
  width: fit-content;
  color: var(--orange-soft);
  font-weight: 750;
}

.text-link::after {
  content: " \2197";
}

.product-rail {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  border-left: 1px solid var(--line);
  background: rgba(4, 9, 14, 0.28);
}

.rail-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.6rem;
  border-bottom: 1px solid var(--line);
  color: #e6e9ed;
  font-weight: 650;
}

.rail-item:last-child {
  border-bottom: 0;
}

.rail-number {
  color: var(--orange-soft);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.principle {
  min-height: 22rem;
  padding: 2.25rem 2rem;
  border-right: 1px solid var(--line-strong);
}

.principle:last-child {
  border-right: 0;
}

.principle .index {
  display: block;
  margin-bottom: 5rem;
  color: var(--orange-soft);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.principle h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  line-height: 1.25;
}

.principle p {
  color: var(--muted);
}

.trust-panel {
  position: relative;
  padding: clamp(2rem, 6vw, 5rem);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #e7e2d9;
  color: #13171c;
}

.trust-panel::after {
  content: "LF";
  position: absolute;
  right: -0.05em;
  bottom: -0.35em;
  color: rgba(19, 23, 28, 0.055);
  font-family: var(--serif);
  font-size: clamp(12rem, 34vw, 30rem);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.trust-panel__content {
  position: relative;
  z-index: 1;
  max-width: 49rem;
}

.trust-panel h2 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.trust-panel p {
  max-width: 42rem;
  font-size: 1.12rem;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.policy-links a {
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(19, 23, 28, 0.28);
  color: #13171c;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.policy-links a:hover {
  border-color: #13171c;
  background: rgba(19, 23, 28, 0.07);
}

.page-hero {
  padding: clamp(5.5rem, 11vw, 9.5rem) 0 clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(28, 47, 67, 0.55), transparent 55%),
    var(--navy);
}

.page-hero h1 {
  max-width: 14ch;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
}

.page-hero__lede {
  max-width: 46rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.legal-shell {
  display: grid;
  grid-template-columns: 15rem minmax(0, 48rem);
  gap: clamp(2.5rem, 8vw, 8rem);
  align-items: start;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.side-nav {
  position: sticky;
  top: 2rem;
  display: grid;
  gap: 0.45rem;
  padding-top: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.side-nav strong {
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.side-nav a {
  text-decoration: none;
}

.legal-content {
  min-width: 0;
}

.legal-content section {
  padding: 0 0 3rem;
  scroll-margin-top: 2rem;
}

.legal-content section + section {
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.1;
}

.legal-content h3 {
  margin: 2rem 0 0.8rem;
  font-size: 1.08rem;
}

.legal-content p,
.legal-content li {
  color: #c8ced6;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.25rem;
}

.legal-content li + li {
  margin-top: 0.65rem;
}

.effective-date {
  margin-bottom: 2rem;
  color: var(--orange-soft);
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.callout {
  margin: 2rem 0;
  padding: 1.4rem 1.5rem;
  border-left: 3px solid var(--orange);
  background: var(--surface-2);
}

.callout p:last-child {
  margin-bottom: 0;
}

.callout--light {
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--orange);
}

.message-sample {
  margin: 1rem 0;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  background: #101822;
  color: #edf0f3;
  font-family: var(--sans);
  font-size: 0.96rem;
}

.consent-demo {
  margin: 2rem 0 3rem;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, #18222d, #10171f);
}

.consent-demo__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.status-label {
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(255, 178, 142, 0.5);
  color: var(--orange-soft);
  font-size: 0.73rem;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field-label {
  display: block;
  margin-bottom: 0.5rem;
  color: #d9dee4;
  font-size: 0.88rem;
  font-weight: 700;
}

.mock-input {
  width: 100%;
  min-height: 3.2rem;
  margin-bottom: 1.3rem;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--line-strong);
  background: #0c1219;
  color: var(--muted);
}

.consent-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: #d9dee4;
}

.consent-check input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.22rem;
  accent-color: var(--orange);
}

.fake-button {
  min-height: 3rem;
  margin-top: 1.2rem;
  padding: 0.7rem 1.2rem;
  border: 1px solid var(--line);
  background: #2a323c;
  color: #7f8894;
  font-weight: 700;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 0;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.steps li::before {
  content: "0" counter(step);
  color: var(--orange-soft);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.contact-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line-strong);
  background: var(--surface);
}

.contact-card + .contact-card {
  margin-top: 1rem;
}

.contact-card h2 {
  font-size: 1.7rem;
}

.contact-email {
  display: inline-block;
  margin: 0.2rem 0 1rem;
  color: var(--orange-soft);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.not-found {
  min-height: 70vh;
  display: grid;
  align-items: center;
}

.not-found .actions {
  margin-top: 2rem;
}

.button--home::after {
  content: "\2190";
  order: -1;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #070c12;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 2.5rem;
  padding-block: 3.5rem;
}

.footer-copy {
  max-width: 24rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-group {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  font-size: 0.9rem;
}

.footer-group strong {
  margin-bottom: 0.25rem;
  color: var(--dim);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-group a {
  width: fit-content;
  text-decoration: none;
}

.footer-bottom {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
  padding: 1.1rem 0 1.6rem;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 0.8rem;
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 4.65rem;
    right: 1rem;
    left: 1rem;
    display: none;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line-strong);
    background: #0d141d;
    box-shadow: 0 1rem 2.5rem rgba(0,0,0,0.42);
  }

  .nav-links[data-open="true"] {
    display: grid;
  }

  .nav-links a {
    padding: 0.7rem;
  }

  .nav-button {
    justify-content: flex-start;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(5, 10, 17, 0.97), rgba(5, 10, 17, 0.68)),
      linear-gradient(0deg, rgba(5, 10, 17, 0.96) 0%, transparent 50%);
  }

  .hero-inner {
    padding-bottom: 8.5rem;
  }

  .hero-meta {
    right: auto;
    left: 1rem;
  }

  .section-head,
  .product-panel,
  .legal-shell {
    grid-template-columns: 1fr;
  }

  .section-head {
    gap: 1.5rem;
  }

  .product-rail {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .principle {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .principle:last-child {
    border-bottom: 0;
  }

  .principle .index {
    margin-bottom: 2rem;
  }

  .side-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
  }

  .side-nav strong {
    grid-column: 1 / -1;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .brand-name {
    font-size: 0.92rem;
  }

  .hero {
    min-height: 51rem;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-inner {
    padding-top: 9rem;
  }

  h1 {
    font-size: clamp(3.1rem, 17vw, 5rem);
  }

  .hero-meta {
    flex-direction: column;
    gap: 0.25rem;
  }

  .hero-meta span + span {
    padding-left: 0;
    border-left: 0;
  }

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

  .button {
    width: 100%;
  }

  .side-nav,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

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

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