:root {
  --bg: #202020;
  --surface: #272727;
  --surface-2: #2d2d2d;
  --text: #f5f5f5;
  --muted: #a9a9a9;
  --line: #3a3a3a;
  --soft: #e8e8e8;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 760;
  letter-spacing: .01em;
}
.brand img { width: 40px; height: 40px; object-fit: contain; }
.brand span { font-size: 1.05rem; }

.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .95rem;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--text); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-weight: 670;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-1px); border-color: #5a5a5a; background: rgba(255,255,255,.03); }
.button.primary { background: var(--text); color: #171717; border-color: var(--text); }
.button.primary:hover { background: #dedede; border-color: #dedede; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 74px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  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: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 85%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c9c9c9;
  font-size: .86rem;
  font-weight: 720;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: #8c8c8c; }

h1 {
  margin: 18px 0 24px;
  font-size: clamp(3.3rem, 7.3vw, 6.7rem);
  line-height: .93;
  letter-spacing: -.065em;
  max-width: 860px;
}
.hero p {
  margin: 0;
  color: #b9b9b9;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  max-width: 680px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.hero-mark {
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.01));
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.hero-mark::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 0 0 54px rgba(255,255,255,.02), 0 0 0 108px rgba(255,255,255,.012);
}
.hero-mark img { width: 230px; height: 230px; position: relative; z-index: 1; filter: drop-shadow(0 18px 35px rgba(0,0,0,.25)); }

.trust-row {
  position: relative;
  z-index: 1;
  margin-top: 56px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.trust-item strong { display: block; font-size: .96rem; margin-bottom: 2px; }
.trust-item span { color: var(--muted); font-size: .9rem; }

.section { padding: 88px 0; }
.section + .section { border-top: 1px solid rgba(255,255,255,.055); }
.section-head { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; margin-bottom: 42px; align-items: end; }
.section-head h2 { margin: 0; font-size: clamp(2.1rem, 4.2vw, 3.8rem); line-height: 1; letter-spacing: -.045em; }
.section-head p { margin: 0; color: var(--muted); max-width: 640px; justify-self: end; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.card {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.card:hover { transform: translateY(-3px); border-color: #515151; background: #2a2a2a; }
.card-icon {
  width: 44px; height: 44px; border: 1px solid #494949; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: auto; color: #dcdcdc;
}
.card-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { margin: 34px 0 8px; font-size: 1.18rem; }
.card p { margin: 0; color: var(--muted); font-size: .95rem; }

.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: steps; }
.step {
  counter-increment: steps;
  padding: 30px 0 0;
  border-top: 1px solid #555;
}
.step::before {
  content: "0" counter(steps);
  display: block;
  color: #777;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 30px;
}
.step h3 { margin: 0 0 9px; font-size: 1.18rem; }
.step p { color: var(--muted); margin: 0; font-size: .95rem; max-width: 310px; }

.cta-box {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, #2b2b2b, #252525);
  padding: clamp(32px, 6vw, 66px);
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 40px;
  align-items: end;
}
.cta-box h2 { margin: 0 0 14px; font-size: clamp(2.3rem, 4.5vw, 4.2rem); line-height: .98; letter-spacing: -.05em; }
.cta-box p { margin: 0; color: var(--muted); max-width: 690px; }
.contact-side { justify-self: end; width: min(100%, 360px); }
.contact-label { color: #8f8f8f; font-size: .79rem; text-transform: uppercase; letter-spacing: .11em; margin-bottom: 7px; }
.contact-value { font-size: 1.04rem; font-weight: 650; overflow-wrap: anywhere; }
.contact-note { margin-top: 18px; color: var(--muted); font-size: .88rem; }

.site-footer { border-top: 1px solid var(--line); padding: 30px 0 38px; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.footer-left { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .9rem; }
.footer-left img { width: 28px; height: 28px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: .86rem; }
.footer-links a:hover { color: var(--text); }

.legal-hero { padding: 78px 0 38px; }
.legal-hero h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); margin-bottom: 16px; }
.legal-hero p { color: var(--muted); max-width: 680px; }
.legal-content { padding: 26px 0 90px; max-width: 830px; }
.legal-content h2 { margin: 44px 0 12px; font-size: 1.35rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: #bcbcbc; }
.legal-content ul { padding-left: 20px; }
.legal-content strong { color: var(--text); }
.placeholder { color: #fff; background: #3a3a3a; border-radius: 5px; padding: .05em .35em; }

@media (max-width: 900px) {
  .hero { padding-top: 68px; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-mark { min-height: 320px; }
  .hero-mark img { width: 180px; height: 180px; }
  .trust-row { grid-template-columns: 1fr; gap: 18px; }
  .section-head, .cta-box { grid-template-columns: 1fr; }
  .section-head p, .contact-side { justify-self: start; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 650px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav { min-height: 66px; }
  .nav-links a:not(.button) { display: none; }
  .nav-links { gap: 8px; }
  .nav-links .button { min-height: 40px; padding-inline: 13px; font-size: .87rem; }
  .brand span { display: none; }
  h1 { font-size: clamp(3rem, 17vw, 5rem); }
  .hero { padding-bottom: 58px; }
  .cards { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .section-head { margin-bottom: 30px; }
  .card { min-height: 215px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}

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