:root {
  --bg: #05090b;
  --bg-deep: #030608;
  --panel: rgba(14, 18, 22, 0.76);
  --panel-soft: rgba(255, 255, 255, 0.035);
  --line: rgba(255, 255, 255, 0.11);
  --line-soft: rgba(255, 255, 255, 0.07);
  --text: #f7f7f4;
  --muted: #9da4a8;
  --muted-strong: #c7ced2;
  --gold: #ffc21b;
  --gold-dark: #d69a00;
  --gold-soft: rgba(255, 194, 27, 0.12);
  --shadow: 0 34px 110px rgba(0, 0, 0, 0.44);
  --radius: 8px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(ellipse at 52% -12%, rgba(255, 194, 27, 0.11), transparent 36%),
    radial-gradient(ellipse at 8% 18%, rgba(29, 75, 91, 0.24), transparent 34%),
    linear-gradient(180deg, #061014 0%, var(--bg) 46%, #030608 100%);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  color: inherit;
  font: inherit;
}

img,
svg {
  display: block;
}

.icon-sprite {
  display: none;
}

.icon {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.site-shell::before {
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.045), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 22%);
  content: "";
  height: 1px;
  left: 8%;
  opacity: 0.46;
  pointer-events: none;
  position: fixed;
  right: 8%;
  top: 92px;
  z-index: 0;
}

.container {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 0 24px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.site-header {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto 1fr;
  left: 50%;
  max-width: calc(var(--max-width) + 48px);
  padding: 32px 24px 20px;
  position: fixed;
  top: 0;
  transform: translateX(-50%);
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
  width: 100%;
  z-index: 20;
}

.site-header.is-hidden {
  transform: translate(-50%, -112%);
}

.site-header.is-scrolled {
  backdrop-filter: blur(18px);
  background: rgba(3, 7, 9, 0.86);
  border-bottom: 1px solid var(--line-soft);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 13px;
  justify-self: start;
  min-width: 0;
}

.brand-mark {
  color: var(--gold);
  flex: 0 0 auto;
}

.brand-mark svg {
  height: 31px;
  stroke-width: 1.8;
  width: 31px;
}

.brand-name {
  color: var(--text);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.brand-label {
  color: var(--muted);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1;
  margin-left: 4px;
}

.main-nav {
  align-items: center;
  display: inline-flex;
  gap: clamp(32px, 5vw, 64px);
  justify-self: center;
}

.main-nav button {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 13px;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.main-nav button:hover,
.main-nav button:focus-visible {
  color: var(--gold);
  outline: 0;
}

.header-link {
  align-items: center;
  border: 1px solid rgba(255, 194, 27, 0.72);
  border-radius: var(--radius);
  color: var(--text);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 10px;
  height: 46px;
  justify-self: end;
  padding: 0 18px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-link:hover,
.header-link:focus-visible {
  background: rgba(255, 194, 27, 0.12);
  color: var(--gold);
  outline: 0;
  transform: translateY(-1px);
}

.header-link svg,
.button svg,
.text-link svg,
.footer-grid a svg {
  height: 18px;
  stroke-width: 1.8;
  width: 18px;
}

.hero {
  padding: 154px 0 58px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
  margin: 0 0 24px;
  text-transform: uppercase;
}

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

h1 {
  color: var(--text);
  font-size: 64px;
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 28px;
}

h1 span {
  color: var(--gold);
  font-weight: 500;
}

h2 {
  color: var(--text);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.12;
  margin-bottom: 0;
}

h3 {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  margin-bottom: 8px;
}

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

.hero-subtitle {
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 430px;
}

.hero-list {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
}

.hero-list li {
  align-items: flex-start;
  color: var(--muted-strong);
  display: flex;
  font-size: 15px;
  gap: 12px;
}

.hero-list svg {
  color: var(--gold);
  flex: 0 0 auto;
  height: 18px;
  margin-top: 2px;
  stroke-width: 1.8;
  width: 18px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  gap: 14px;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.button:hover,
.button:focus-visible {
  outline: 0;
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(180deg, #ffd24c, var(--gold));
  border-color: rgba(255, 210, 76, 0.72);
  color: #130e02;
  box-shadow: 0 14px 40px rgba(255, 194, 27, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(180deg, #ffe07b, #ffc21b);
}

.hero-media {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.hero-media picture {
  display: block;
  width: min(100%, 470px);
}

.hero-media::before {
  background: linear-gradient(130deg, rgba(255, 194, 27, 0.16), transparent 46%);
  border-radius: 26px;
  content: "";
  filter: blur(36px);
  inset: -36px;
  opacity: 0.64;
  position: absolute;
  z-index: -1;
}

.hero-media img {
  aspect-ratio: 1155 / 1362;
  background: #090d10;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow);
  height: auto;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.proof-strip {
  padding: 0 0 70px;
}

.proof-grid {
  border-bottom: 1px solid var(--line-soft);
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  padding: 38px 0;
}

.proof-item {
  align-items: center;
  border-right: 1px solid var(--line-soft);
  display: grid;
  gap: 22px;
  grid-template-columns: auto 1fr;
  padding: 0 34px;
}

.proof-item:first-child {
  padding-left: 0;
}

.proof-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.proof-icon {
  align-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  display: inline-flex;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.proof-icon svg {
  height: 28px;
  stroke-width: 1.8;
  width: 28px;
}

.proof-item strong {
  color: var(--text);
  display: block;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 7px;
}

.proof-item span:last-child {
  color: var(--muted);
  display: block;
  font-size: 13px;
  line-height: 1.45;
}

.section-band {
  padding: 0 0 74px;
  position: relative;
}

.section-heading {
  margin-bottom: 38px;
  max-width: 540px;
}

.feature-list {
  display: grid;
  gap: 10px;
}

.feature-card {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(7, 11, 14, 0.72);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  display: grid;
  gap: 28px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 130px;
  padding: 24px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.feature-card:hover,
.feature-card:focus-visible {
  background:
    linear-gradient(90deg, rgba(255, 194, 27, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(8, 12, 15, 0.86);
  border-color: rgba(255, 194, 27, 0.28);
  outline: 0;
  transform: translateY(-1px);
}

.feature-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  color: var(--gold);
  display: inline-flex;
  height: 74px;
  justify-content: center;
  width: 74px;
}

.feature-icon svg {
  height: 38px;
  stroke-width: 1.8;
  width: 38px;
}

.feature-copy {
  display: grid;
  gap: 7px;
  max-width: 560px;
}

.feature-copy strong {
  color: var(--text);
  font-size: 19px;
  line-height: 1.2;
}

.feature-copy span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.feature-arrow {
  color: var(--text);
  height: 32px;
  opacity: 0.92;
  stroke-width: 1.4;
  width: 32px;
}

.center-action {
  display: flex;
  justify-content: center;
  padding-top: 36px;
}

.text-link {
  align-items: center;
  color: var(--gold);
  display: inline-flex;
  font-weight: 700;
  gap: 14px;
  min-height: 44px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: #ffe07b;
  outline: 0;
  transform: translateX(2px);
}

.process-section {
  padding-top: 12px;
}

.process-grid {
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 72px;
  grid-template-columns: 0.62fr 1.38fr;
  padding-top: 48px;
}

.process-steps {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.process-steps::before {
  border-top: 1px dashed rgba(255, 194, 27, 0.35);
  content: "";
  left: 36px;
  position: absolute;
  right: 36px;
  top: 20px;
}

.process-step {
  position: relative;
  z-index: 1;
}

.process-step > span {
  align-items: center;
  background: var(--bg);
  border: 1px solid rgba(255, 194, 27, 0.74);
  border-radius: 50%;
  color: var(--gold);
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  height: 42px;
  justify-content: center;
  margin-bottom: 38px;
  width: 42px;
}

.process-step h3 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 0;
  max-width: 180px;
}

.faq-section {
  padding-bottom: 36px;
}

.faq-grid {
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 72px;
  grid-template-columns: 0.62fr 1.38fr;
  padding-top: 48px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 0 22px;
}

.faq-list summary {
  color: var(--text);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  list-style: none;
  padding: 18px 36px 18px 0;
  position: relative;
}

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

.faq-list summary::after {
  color: var(--gold);
  content: "+";
  font-size: 24px;
  line-height: 1;
  position: absolute;
  right: 0;
  top: 14px;
}

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

.faq-list p {
  border-top: 1px solid var(--line-soft);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
  padding: 0 0 18px;
}

.bottom-cta {
  padding: 0 0 34px;
}

.cta-panel {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(9, 13, 16, 0.86);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  display: flex;
  gap: 32px;
  justify-content: space-between;
  padding: 32px 44px;
}

.cta-panel h2 {
  font-size: 30px;
  line-height: 1.18;
  margin-bottom: 8px;
}

.cta-panel p {
  margin-bottom: 0;
}

.site-footer {
  padding: 0 0 42px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.footer-grid a {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-height: 44px;
  transition: color 0.2s ease;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--gold);
  outline: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.main-nav button:focus-visible,
.header-link:focus-visible,
.button:focus-visible,
.feature-card:focus-visible,
.text-link:focus-visible,
.footer-grid a:focus-visible,
.faq-list summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 20px 22px 16px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    padding-top: 124px;
  }

  .hero-grid,
  .process-grid,
  .faq-grid {
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .hero-media img {
    aspect-ratio: 1155 / 1362;
    margin: 0 auto;
    max-height: 560px;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item {
    border-bottom: 1px solid var(--line-soft);
    padding: 26px 26px;
  }

  .proof-item:first-child,
  .proof-item:last-child {
    padding-left: 26px;
    padding-right: 26px;
  }

  .proof-item:nth-child(2n) {
    border-right: 0;
  }

  .proof-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .process-steps {
    gap: 24px;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 18px;
  }

  .site-shell::before {
    left: 0;
    right: 0;
    top: 74px;
  }

  .site-header {
    gap: 14px;
    padding: 14px 18px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark svg {
    height: 28px;
    width: 28px;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-label {
    display: block;
    font-size: 11px;
    margin-left: 0;
    margin-top: 3px;
  }

  .header-link {
    height: 42px;
    padding: 0 14px;
  }

  .header-link span {
    font-size: 13px;
  }

  .hero {
    padding: 112px 0 24px;
  }

  .hero-grid {
    gap: 28px;
  }

  .eyebrow {
    font-size: 11px;
    margin-bottom: 18px;
  }

  h1 {
    font-size: 44px;
    line-height: 1.02;
    margin-bottom: 20px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-list li {
    font-size: 14px;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    margin: 0 -18px;
  }

  .hero-media::before {
    inset: -16px;
  }

  .hero-media img {
    border-left: 0;
    border-radius: 0;
    border-right: 0;
    height: auto;
    max-height: none;
    width: 100%;
  }

  .hero-media picture {
    width: 100%;
  }

  .proof-strip {
    padding-bottom: 58px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    padding: 12px 0;
  }

  .proof-item,
  .proof-item:first-child,
  .proof-item:last-child {
    border-bottom: 1px solid var(--line-soft);
    border-right: 0;
    padding: 22px 0;
  }

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

  .section-band {
    padding-bottom: 58px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .feature-card {
    gap: 16px;
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 0;
    padding: 20px;
  }

  .feature-icon {
    height: 58px;
    width: 58px;
  }

  .feature-icon svg {
    height: 30px;
    width: 30px;
  }

  .feature-arrow {
    display: none;
  }

  .process-grid,
  .faq-grid {
    gap: 28px;
    padding-top: 36px;
  }

  .process-steps {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .process-steps::before {
    border-left: 1px dashed rgba(255, 194, 27, 0.35);
    border-top: 0;
    bottom: 18px;
    left: 20px;
    right: auto;
    top: 20px;
  }

  .process-step {
    display: grid;
    gap: 0 18px;
    grid-template-columns: auto 1fr;
  }

  .process-step > span {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .process-step p {
    max-width: none;
  }

  .cta-panel {
    align-items: stretch;
    flex-direction: column;
    padding: 26px 22px;
  }

  .cta-panel h2 {
    font-size: 26px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

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