:root {
  --ink: #090c0a;
  --pine: #111914;
  --moss: #233025;
  --cream: #f6f0df;
  --muted: #b9baa9;
  --sun: #f5aa32;
  --ember: #e9542f;
  --record: #ef2e39;
  --line: rgba(246, 240, 223, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.wrap { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.nav {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  height: 88px;
  display: flex;
  align-items: center;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 900; letter-spacing: .09em; }
.brand img { width: 50px; height: 50px; border-radius: 13px; box-shadow: 0 8px 24px rgba(0,0,0,.32); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { text-decoration: none; color: rgba(246,240,223,.82); font-size: .92rem; font-weight: 700; }
.nav-links a:hover { color: #fff; }
.hero {
  min-height: 780px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 32%, rgba(245,170,50,.24), transparent 28%),
    linear-gradient(120deg, #090c0a 8%, #131a14 55%, #3a2118 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -8% 0;
  height: 45%;
  background: linear-gradient(165deg, transparent 18%, rgba(11,18,12,.65) 18.4%, #0a100b 58%);
  clip-path: polygon(0 30%, 15% 45%, 31% 24%, 48% 49%, 63% 18%, 76% 45%, 89% 25%, 100% 41%, 100% 100%, 0 100%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 70px; padding: 130px 0 95px; }
.eyebrow { color: var(--sun); font-size: .78rem; text-transform: uppercase; letter-spacing: .24em; font-weight: 900; }
h1 { margin: 14px 0 22px; max-width: 760px; font-size: clamp(3.4rem, 8vw, 7rem); line-height: .88; letter-spacing: -.065em; text-transform: uppercase; }
.lead { margin: 0 0 32px; max-width: 610px; color: #dedbce; font-size: clamp(1.08rem, 2vw, 1.28rem); line-height: 1.55; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.button { display: inline-flex; gap: 10px; align-items: center; justify-content: center; min-height: 54px; padding: 0 22px; border-radius: 8px; border: 1px solid var(--line); text-decoration: none; font-weight: 850; }
.button.primary { border-color: var(--sun); background: var(--sun); color: #17120a; }
.button.secondary { background: rgba(255,255,255,.055); backdrop-filter: blur(10px); }
.status { display: flex; align-items: center; gap: 10px; margin-top: 23px; color: var(--muted); font-size: .9rem; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--record); box-shadow: 0 0 0 5px rgba(239,46,57,.14); }
.app-mark { position: relative; justify-self: end; width: min(390px, 86vw); }
.app-mark::after { content: ""; position: absolute; inset: 15% -10% -10% 22%; border-radius: 50%; background: rgba(233,84,47,.18); filter: blur(52px); z-index: -1; }
.app-mark img { border-radius: 29%; box-shadow: 0 36px 80px rgba(0,0,0,.56), 0 0 0 1px rgba(255,255,255,.12); }
.section { padding: 105px 0; }
.section.alt { background: var(--pine); border-block: 1px solid var(--line); }
.section-head { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: end; margin-bottom: 56px; }
h2 { margin: 10px 0 0; font-size: clamp(2.35rem, 5vw, 4.8rem); line-height: .98; letter-spacing: -.045em; text-transform: uppercase; }
.section-head p { margin: 0; color: var(--muted); font-size: 1.08rem; }
.features { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.feature { padding: 36px; min-height: 245px; border-right: 1px solid var(--line); }
.feature:last-child { border-right: 0; }
.feature-num { color: var(--sun); font-size: .75rem; font-weight: 900; letter-spacing: .2em; }
.feature h3 { margin: 36px 0 12px; font-size: 1.35rem; }
.feature p { margin: 0; color: var(--muted); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { position: relative; min-height: 300px; padding: 32px; background: linear-gradient(150deg, #18201a, #0e120f); border: 1px solid var(--line); border-radius: 12px; }
.step strong { display: block; width: 48px; height: 48px; padding-top: 10px; text-align: center; border-radius: 50%; color: #140d06; background: var(--sun); }
.step h3 { margin: 76px 0 10px; font-size: 1.5rem; }
.step p { color: var(--muted); margin: 0; }
.cta { position: relative; overflow: hidden; padding: 84px 0; background: linear-gradient(110deg, #b53426, #eb7830 55%, #f0ad34); color: #160c07; }
.cta::after { content: "REC"; position: absolute; right: 1%; top: -42%; font-size: 20rem; line-height: 1; font-weight: 1000; color: rgba(255,255,255,.09); }
.cta-grid { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.cta h2 { max-width: 700px; margin: 0; }
.cta .button { flex: none; background: #111; color: #fff; border-color: #111; }
footer { padding: 32px 0; color: #989c91; font-size: .88rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { text-decoration: none; }
.legal-page { min-height: 100vh; background: linear-gradient(150deg, #0b0f0c, #162019); }
.legal-page .nav { position: relative; border-bottom: 1px solid var(--line); }
.legal { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 80px 0 110px; }
.legal h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); margin-bottom: 24px; }
.legal h2 { font-size: 1.45rem; margin: 42px 0 10px; letter-spacing: -.02em; text-transform: none; }
.legal p, .legal li { color: #c3c5ba; }
.legal .updated { color: var(--sun); font-weight: 750; }
.support-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 38px; }
.support-card { padding: 26px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.035); }
.support-card h2 { margin-top: 0; }
@media (max-width: 820px) {
  .nav-links a:not(.button) { display: none; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 52px; padding-top: 135px; }
  .app-mark { justify-self: start; width: 260px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .features, .steps { grid-template-columns: 1fr; }
  .feature { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .feature:last-child { border-bottom: 0; }
  .cta-grid, .footer-inner { align-items: flex-start; flex-direction: column; }
  .support-cards { grid-template-columns: 1fr; }
}
@media (min-width: 821px) and (max-width: 1050px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .feature:nth-child(2) { border-right: 0; }
  .feature:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 480px) {
  .wrap { width: min(100% - 28px, 1160px); }
  .nav { height: 76px; }
  .brand img { width: 44px; height: 44px; }
  .hero-grid { padding-top: 112px; }
  .section { padding: 80px 0; }
  .actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
}
