:root {
  --navy: #081a2d;
  --navy-soft: #0e2d4b;
  --orange: #ff9418;
  --cream: #fff8ec;
  --ink: #14202b;
  --muted: #52606d;
  --white: #fff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a { color: inherit; }

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  color: var(--white);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 950;
  letter-spacing: .04em;
  text-decoration: none;
}

.brand img { border-radius: 12px; box-shadow: 0 8px 24px #0007; }
.brand em, .footer-brand em { color: var(--orange); font-style: normal; }

.site-header nav { display: flex; gap: 28px; }
.site-header nav a { color: #fff; font-size: .9rem; font-weight: 750; text-decoration: none; }
.site-header nav a:hover { color: var(--orange); }

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  color: var(--white);
  background: url("/assets/hero.jpg") 63% center / cover no-repeat;
  isolation: isolate;
}

.hero-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, #04111ff2 0%, #071728cd 36%, #07172846 63%, #07172828 100%),
              linear-gradient(0deg, #061321b8 0%, transparent 42%);
}

.hero-copy {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 96px;
}

.hero-copy > * { max-width: 580px; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(4.1rem, 9vw, 7.4rem);
  line-height: .86;
  letter-spacing: -.065em;
  word-spacing: .05em;
  text-transform: uppercase;
  text-shadow: 0 10px 30px #0007;
}

.hero-copy > p:not(.eyebrow, .coming-soon) {
  color: #f5f7facc;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease;
}

.button:hover { transform: translateY(-2px); }
.button.primary { color: #101820; background: var(--orange); }
.button.secondary { color: var(--white); border-color: #ffffff70; background: #06132170; backdrop-filter: blur(8px); }
.coming-soon { margin-top: 18px; color: #ffffff9c; font-size: .84rem; font-weight: 700; }

.intro, .toolbelt, .final-cta, footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.intro { padding: 110px 0 80px; text-align: center; }

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: .98;
  letter-spacing: -.05em;
}

.lede { max-width: 760px; margin: 0 auto 60px; color: var(--muted); font-size: 1.2rem; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
.steps article { padding: 30px; border: 1px solid #d8d2c7; border-radius: 24px; background: #ffffffb5; }
.steps span { color: var(--orange); font-size: .78rem; font-weight: 950; letter-spacing: .14em; }
.steps h3 { margin: 12px 0 8px; font-size: 1.35rem; }
.steps p { margin-bottom: 0; color: var(--muted); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  gap: 16px;
}

.feature-card {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-radius: 26px;
  color: var(--white);
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.feature-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, #04111ff2 0%, #04111f20 68%);
}

.feature-card > div { padding: 34px; }
.feature-card h2 { margin-bottom: 12px; font-size: 2.5rem; }
.feature-card p:last-child { margin: 0; color: #ffffffc7; }
.feature-build { background-image: url("/assets/build.jpg"); }
.feature-tools { background-image: url("/assets/hammer.jpg"); }
.feature-score { background-image: url("/assets/gate.jpg"); }

.toolbelt {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  padding: 120px 0;
  align-items: start;
}

.toolbelt ul { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid #d5cec2; }
.toolbelt li { padding: 16px 0; border-bottom: 1px solid #d5cec2; font-weight: 750; }
.toolbelt li::before { content: "✓"; margin-right: 12px; color: var(--orange); font-weight: 950; }

.final-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  margin-bottom: 96px;
  padding: 44px;
  border-radius: 30px;
  color: var(--white);
  background: var(--navy);
}

.final-cta img { border-radius: 28px; box-shadow: 0 14px 30px #0008; }
.final-cta h2 { margin-bottom: 12px; font-size: 2.5rem; }
.final-cta p:not(.eyebrow) { margin-bottom: 0; color: #ffffffb5; }
.final-cta .actions { margin: 0; }

footer { padding: 44px 0 54px; border-top: 1px solid #d5cec2; }
.footer-brand { font-size: 1.3rem; font-weight: 950; letter-spacing: .04em; text-decoration: none; }
footer > p { color: var(--muted); }
footer nav { display: flex; gap: 22px; margin: 30px 0; }
footer nav a { font-weight: 750; }
.copyright { font-size: .8rem; }

.legal {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 90px;
}
.legal h1 { color: var(--navy); font-size: clamp(3rem, 7vw, 5rem); text-shadow: none; }
.legal h2 { margin-top: 46px; font-size: 1.8rem; letter-spacing: -.03em; }
.legal p, .legal li { color: var(--muted); }
.legal .back { display: inline-block; margin-bottom: 34px; color: var(--orange); font-weight: 850; }
.legal .updated { margin-bottom: 44px; font-size: .9rem; }

@media (max-width: 880px) {
  .site-header nav { display: none; }
  .hero { min-height: 760px; background-position: 68% center; }
  .steps, .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 620px; }
  .toolbelt { grid-template-columns: 1fr; gap: 28px; }
  .final-cta { grid-template-columns: 1fr; text-align: center; }
  .final-cta img { margin: 0 auto; }
  .final-cta .actions { justify-content: center; }
}

@media (max-width: 560px) {
  .site-header { width: min(100% - 28px, 1180px); }
  .hero-copy, .intro, .toolbelt, .final-cta, footer { width: min(100% - 28px, 1180px); }
  h1 { font-size: 3.7rem; }
  .hero-copy { padding-top: 78px; }
  .actions .button { width: 100%; }
  .intro { padding-top: 78px; }
  .feature-grid { width: calc(100% - 20px); }
  .feature-card { min-height: 560px; }
  .final-cta { padding: 34px 22px; }
}

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