:root {
  --bg: #0b0e0f;
  --bg-soft: #101415;
  --surface: #14191a;
  --surface-raised: #181e1f;
  --text: #f5f5f0;
  --text-soft: #c9cfcc;
  --muted: #969f9b;
  --line: #293031;
  --line-strong: #394243;
  --accent: #b8ff5a;
  --accent-soft: rgba(184, 255, 90, 0.11);
  --accent-ink: #101708;
  --max: 1180px;
  --radius: 20px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 86% 2%, rgba(184, 255, 90, 0.055), transparent 27rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

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

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

button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(11, 14, 15, 0.84);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.brand-mark {
  color: var(--text);
}

.brand-slash,
.brand-word {
  color: var(--accent);
}

.brand-word {
  font-weight: 800;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #d7dcda;
  font-size: 0.92rem;
  font-weight: 650;
}

nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 8px;
}

nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 1px;
  background: var(--accent);
  transition: right 160ms ease;
}

nav > a:not(.nav-cta):hover::after,
nav > a:not(.nav-cta):focus-visible::after {
  right: 0;
}

.nav-cta {
  padding: 9px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 118px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  gap: clamp(54px, 7vw, 100px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.17em;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.04;
  text-wrap: balance;
}

h1 {
  max-width: 860px;
  margin-bottom: 0;
  font-size: clamp(3.3rem, 7.3vw, 6.65rem);
  letter-spacing: -0.067em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.45rem, 5vw, 4.65rem);
  letter-spacing: -0.058em;
}

h3 {
  letter-spacing: -0.025em;
}

.lede {
  max-width: 780px;
  margin: 30px 0 0;
  color: var(--text-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.27rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 19px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, filter 160ms ease;
}

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

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 10px 35px rgba(184, 255, 90, 0.1);
}

.button.primary:hover {
  filter: brightness(0.96);
}

.button.secondary:hover {
  border-color: #596465;
  background: rgba(255, 255, 255, 0.025);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 38px;
}

.trust-line span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: #acb4b1;
  font-size: 0.82rem;
}

.hero-panel {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(184,255,90,.17), transparent 30%);
}

.panel-kicker {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.hero-process {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-process li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.hero-process li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero-process > li > span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-process strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.hero-process p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.section {
  padding: 116px 0;
}

.muted-section {
  background: var(--bg-soft);
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.section-heading {
  max-width: 780px;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: end;
}

.section-heading > p:last-child,
.section-copy {
  color: var(--muted);
  font-size: 1.04rem;
}

.split-heading > p {
  margin: 0 0 8px;
}

.cards {
  display: grid;
  gap: 14px;
  margin-top: 48px;
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  position: relative;
  min-height: 236px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--surface-raised), var(--surface));
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -72px;
  top: -72px;
  border-radius: 999px;
  background: var(--accent-soft);
  opacity: 0;
  transition: opacity 180ms ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: #3a4545;
}

.card:hover::after {
  opacity: 1;
}

.card-number {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.experience-grid,
.request-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(56px, 8vw, 104px);
  align-items: start;
}

.experience-intro {
  position: sticky;
  top: 118px;
}

.section-copy {
  max-width: 620px;
  margin: 24px 0 0;
}

.experience-list {
  border-top: 1px solid var(--line);
}

.experience-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.experience-item > span {
  padding-top: 3px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 900;
}

.experience-item h3 {
  margin-bottom: 7px;
  font-size: 1.08rem;
}

.experience-item p {
  margin: 0;
  color: var(--muted);
}

.approach-section {
  border-top: 1px solid rgba(255,255,255,.045);
  border-bottom: 1px solid rgba(255,255,255,.045);
  background:
    radial-gradient(circle at 90% 50%, rgba(184,255,90,.055), transparent 24rem),
    #0e1213;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.approach-grid article {
  padding: 26px 0 4px;
  border-top: 1px solid var(--line-strong);
}

.approach-grid h3 {
  margin-bottom: 10px;
  font-size: 1.17rem;
}

.approach-grid p {
  margin: 0;
  color: var(--muted);
}

.request-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(184,255,90,.095), transparent 28rem),
    var(--bg-soft);
}

.request-copy {
  position: sticky;
  top: 118px;
}

.mini-note {
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.022);
}

.mini-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 0.88rem;
}

.mini-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.request-form {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(11, 14, 15, 0.84);
  box-shadow: var(--shadow);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 19px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form-heading > span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.form-heading p {
  margin: 0;
  color: #7f8986;
  font-size: 0.76rem;
}

.field-grid {
  display: grid;
  gap: 14px;
}

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

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #dfe3e1;
  font-size: 0.9rem;
  font-weight: 720;
}

label small {
  color: #7e8885;
  font-size: 0.75rem;
  font-weight: 550;
}

label b {
  color: var(--accent);
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #343c3d;
  border-radius: 11px;
  background: #14191a;
  color: var(--text);
  padding: 12px 13px;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

input::placeholder,
textarea::placeholder {
  color: #68716f;
}

input:hover,
textarea:hover,
select:hover {
  border-color: #455051;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  background: #171d1e;
  box-shadow: 0 0 0 3px rgba(184,255,90,.09);
}

textarea {
  min-height: 164px;
  resize: vertical;
}

select {
  cursor: pointer;
}

.submit-button {
  width: 100%;
  margin-top: 4px;
  border: 0;
}

.form-note {
  margin: 13px auto 0;
  max-width: 520px;
  color: #7e8885;
  font-size: 0.76rem;
  text-align: center;
}

.site-footer {
  padding: 34px 0 42px;
  border-top: 1px solid rgba(255,255,255,.05);
  background: #090c0d;
  color: #8f9895;
  font-size: 0.88rem;
}

.footer-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.footer-wrap strong {
  color: #dce0de;
  font-size: 0.92rem;
}

.footer-wrap p {
  margin: 3px 0 0;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-meta a {
  color: #c8cecb;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--accent);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .hero {
    padding-top: 88px;
  }

  .hero-grid,
  .experience-grid,
  .request-grid,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 58px;
  }

  .hero-panel {
    max-width: 700px;
  }

  .experience-intro,
  .request-copy {
    position: static;
  }

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

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .approach-grid article {
    padding-top: 22px;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(100% - 30px, var(--max));
  }

  .nav-wrap {
    min-height: 66px;
  }

  nav {
    gap: 10px;
  }

  nav > a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    padding: 8px 12px;
  }

  .hero {
    padding: 68px 0 82px;
  }

  h1 {
    font-size: clamp(3rem, 15.5vw, 4.65rem);
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .section {
    padding: 84px 0;
  }

  .three-col,
  .two-col {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 0;
  }

  .card-number {
    margin-bottom: 26px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    width: 100%;
    justify-content: space-between;
  }
}
