:root {
  color-scheme: light;
  --ink: #111513;
  --muted: #65706a;
  --paper: #f7f4ee;
  --panel: #ffffff;
  --line: #ded8cd;
  --blue: #2a7ee4;
  --blue-dark: #145cb4;
  --sage: #6f8a75;
  --gold: #b8792c;
  --shadow: 0 22px 60px rgb(17 21 19 / 14%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body,
button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 16px clamp(20px, 5vw, 64px);
  color: #fff;
  background: linear-gradient(rgb(0 0 0 / 56%), rgb(0 0 0 / 0%));
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 34%);
  border-radius: 8px;
  background: rgb(255 255 255 / 14%);
}

.nav-links {
  gap: clamp(16px, 3vw, 32px);
  font-size: 0.94rem;
  color: rgb(255 255 255 / 82%);
}

.nav-links a:hover {
  color: #fff;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(820px, 88vh);
  padding: 104px clamp(20px, 5vw, 64px) 36px;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgb(0 0 0 / 76%) 0%, rgb(0 0 0 / 54%) 36%, rgb(0 0 0 / 12%) 70%),
    linear-gradient(0deg, rgb(0 0 0 / 46%) 0%, rgb(0 0 0 / 0%) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f5b463;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.9rem, 6vw, 5.85rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgb(255 255 255 / 83%);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions,
.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 780;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

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

.button-primary:hover {
  background: var(--blue-dark);
}

.button-secondary {
  border-color: rgb(255 255 255 / 30%);
  background: rgb(255 255 255 / 14%);
  color: #fff;
}

.hero-stats {
  display: grid;
  max-width: 680px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
}

.hero-stats div {
  min-height: 78px;
  padding: 14px 18px;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 8px;
  background: rgb(0 0 0 / 24%);
}

.hero-stats dt {
  margin-bottom: 6px;
  font-size: 1.22rem;
  font-weight: 840;
}

.hero-stats dd {
  margin: 0;
  color: rgb(255 255 255 / 72%);
}

.intro-band {
  padding: 30px clamp(20px, 5vw, 64px);
  background: var(--ink);
  color: rgb(255 255 255 / 82%);
}

.intro-band p {
  max-width: 1050px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.section {
  padding: clamp(64px, 10vw, 118px) clamp(20px, 5vw, 64px);
}

.section-heading {
  max-width: 980px;
  margin: 0 auto 34px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.use-cases {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.use-card {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 30px rgb(17 21 19 / 6%);
}

.card-icon {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--sage);
  font-size: 0.9rem;
  font-weight: 840;
}

.use-card p,
.steps p {
  color: var(--muted);
  line-height: 1.55;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  background: #ece6dc;
}

.section-split .section-heading {
  margin: 0;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  min-height: 128px;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid #d6ccbe;
  border-radius: 8px;
  background: rgb(255 255 255 / 54%);
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--sage);
  color: #fff;
  font-weight: 820;
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  display: grid;
  max-width: 980px;
  gap: 12px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.faq-list summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--ink);
  font-weight: 790;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: #ece6dc;
  color: var(--sage);
  font-weight: 840;
}

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

.faq-list details:hover {
  border-color: #cfc7bb;
}

.faq-list summary:focus-visible {
  outline: 3px solid rgb(42 126 228 / 34%);
  outline-offset: 3px;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.6;
}

.access-section {
  background: var(--panel);
}

.access-form {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--ink);
  font-weight: 730;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cfc7bb;
  border-radius: 8px;
  padding: 14px 15px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus-visible,
textarea:focus-visible,
.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgb(42 126 228 / 34%);
  outline-offset: 3px;
}

input:user-invalid {
  border-color: #b34037;
}

.form-note {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.form-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--sage);
  font-weight: 760;
}

.site-footer {
  padding: 42px clamp(20px, 5vw, 64px) 24px;
  background: var(--ink);
  color: rgb(255 255 255 / 76%);
}

.footer-inner {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(260px, 1.3fr) minmax(160px, 0.7fr) minmax(220px, 0.8fr);
  gap: 28px;
  margin: 0 auto;
  padding-bottom: 28px;
}

.footer-brand {
  display: grid;
  max-width: 460px;
  gap: 14px;
}

.footer-brand .brand {
  color: #fff;
}

.footer-brand p,
.footer-contact span {
  margin: 0;
  line-height: 1.55;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links a,
.footer-contact a,
.footer-bottom a {
  color: #fff;
  font-weight: 720;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: #f5b463;
}

.footer-bottom {
  display: flex;
  max-width: 1180px;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgb(255 255 255 / 14%);
  color: rgb(255 255 255 / 56%);
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .site-header {
    min-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 92vh;
    padding-top: 94px;
  }

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

  .hero-shade {
    background:
      linear-gradient(90deg, rgb(0 0 0 / 78%) 0%, rgb(0 0 0 / 46%) 68%, rgb(0 0 0 / 16%) 100%),
      linear-gradient(0deg, rgb(0 0 0 / 58%) 0%, rgb(0 0 0 / 0%) 58%);
  }

  .hero-stats,
  .use-cases,
  .section-split,
  .form-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section-split {
    gap: 26px;
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: 2.72rem;
  }

  .hero-stats {
    display: none;
  }

  .hero-actions,
  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-stats div {
    min-height: 72px;
  }
}

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