:root {
  --bg: #050403;
  --panel: #100d0a;
  --panel-2: #17110b;
  --text: #fff8ec;
  --muted: #b8aa97;
  --amber: #ff9f24;
  --gold: #ffc46a;
  --line: rgba(255, 159, 36, 0.44);
  --line-soft: rgba(255, 159, 36, 0.18);
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(115deg, rgba(255,255,255,.025) 0 8%, transparent 8% 16%),
    radial-gradient(circle at 76% 22%, rgba(255,159,36,.19), transparent 28rem),
    radial-gradient(circle at 18% 8%, rgba(255,196,106,.10), transparent 22rem),
    #050403;
  background-size: 18px 18px, auto, auto, auto;
}

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

.wrap {
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid var(--line-soft);
  background: rgba(5,4,3,.9);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  font-weight: 950;
}

.mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--amber);
  border-radius: 8px;
  color: var(--amber);
  background: rgba(255,159,36,.08);
}

.navlinks {
  display: flex;
  gap: 26px;
  color: #dccbb6;
  font-size: 15px;
}

.navlinks a:hover { color: var(--amber); }

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: center;
  padding: 70px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(350px, .78fr);
  gap: 58px;
  align-items: center;
}

.tag {
  width: max-content;
  max-width: 100%;
  padding: 10px 16px;
  color: var(--amber);
  border: 1px solid var(--line);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
  background: rgba(16,13,10,.78);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 13px;
}

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

h1 {
  margin-top: 26px;
  font-size: clamp(78px, 11vw, 150px);
  line-height: .82;
  font-weight: 950;
}

h1 span { color: var(--amber); }

.hero p {
  margin-top: 26px;
  color: #f6e9d8;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.25;
}

.cta {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 0 30px;
  border: 1px solid rgba(255,196,106,.7);
  border-radius: 8px;
  color: #120804;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  box-shadow: 0 0 32px rgba(255,159,36,.28);
  font-size: 19px;
  font-weight: 950;
}

.cta.ghost {
  color: var(--gold);
  background: transparent;
  box-shadow: none;
}

.launch-card {
  min-height: 430px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 34px 100%, 0 calc(100% - 34px));
  background: linear-gradient(145deg, rgba(23,17,11,.96), rgba(5,4,3,.94));
  overflow: hidden;
}

.launch-card::before {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(255,159,36,.2);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(255,159,36,.16);
}

.launch-card img {
  position: relative;
  z-index: 1;
  width: min(78%, 390px);
  height: auto;
}

section {
  border-top: 1px solid var(--line-soft);
  padding: 74px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: end;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(40px, 5vw, 72px);
  line-height: .95;
  font-weight: 950;
}

.section-head p, .lead {
  max-width: 510px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.cards, .steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}

.card, .step, .wide {
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(16,13,10,.94), rgba(6,5,4,.94));
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}

.card {
  min-height: 210px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card::before, .step::before {
  content: "";
  width: 48px;
  height: 4px;
  display: block;
  margin-bottom: 24px;
  background: var(--amber);
}

.card h3, .step h3 {
  font-size: 23px;
  line-height: 1.12;
}

.card p, .step p, .wide p {
  margin-top: 15px;
  color: var(--muted);
  line-height: 1.55;
}

.card strong {
  display: block;
  margin-top: 20px;
  color: var(--amber);
}

.step {
  min-height: 150px;
  padding: 26px;
}

.num {
  color: var(--amber);
  margin-right: 8px;
  font-weight: 950;
}

.wide {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 36px;
}

.wide h2 { font-size: clamp(36px, 5vw, 62px); }

.footer {
  border-top: 1px solid var(--line-soft);
  padding: 28px 0;
  color: var(--muted);
}

.footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.support-hero h1 {
  font-size: clamp(58px, 8vw, 104px);
}

.text-page {
  max-width: 860px;
  padding: 70px 0;
}

.text-page h1 {
  font-size: clamp(44px, 8vw, 78px);
  line-height: .95;
}

.text-page h2 {
  margin-top: 42px;
  font-size: 32px;
}

.text-page p, .text-page li {
  color: #dbcdb9;
  font-size: 18px;
  line-height: 1.65;
}

.text-page p { margin-top: 18px; }
.text-page ul { margin-top: 18px; padding-left: 22px; }

@media (max-width: 880px) {
  .navlinks { display: none; }
  .hero-grid, .cards, .steps, .wide { grid-template-columns: 1fr; }
  .hero { padding: 52px 0; }
  h1 { font-size: clamp(58px, 18vw, 88px); }
  .support-hero h1 { font-size: clamp(46px, 13vw, 68px); }
  .launch-card { min-height: 310px; }
  .section-head { display: block; }
  .section-head p { margin-top: 16px; }
}

@media (max-width: 480px) {
  .wrap { width: min(100% - 28px, 1140px); }
  .brand { font-size: 13px; }
  .cta { width: 100%; }
  .card, .step, .wide { padding: 22px; }
}
