:root {
  --purple: #5420d9;
  --purple-bright: #5c20e8;
  --hero: #140927;
  --gold: #ffc73c;
  --ink: #111111;
  --muted: #545454;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 1000;
  padding: 12px 20px;
  background: var(--gold);
  color: #111;
  font-weight: 700;
  font-size: 14px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--purple);
}

.shell { width: min(1100px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  height: 94px;
  background: linear-gradient(90deg, #5220d2 0%, #5620dc 100%);
  color: #fff;
}
.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.7px;
}
.main-nav { display: flex; align-items: center; gap: 39px; }
.main-nav a { font-size: 14px; font-weight: 500; }
.main-nav a:hover, .main-nav a:focus-visible { opacity: 0.78; }

.hero {
  height: 614px;
  overflow: hidden;
  background: var(--hero);
  color: #fff;
}
.hero-inner { position: relative; height: 100%; display: flex; }
.hero-copy {
  width: 52%;
  padding-top: 67px;
  padding-left: 170px;
  position: relative;
  z-index: 2;
}
.wing-mark {
  font-size: 47px;
  line-height: .8;
  font-weight: 800;
  letter-spacing: -10px;
  transform: rotate(-6deg);
  width: 57px;
  margin-bottom: 57px;
}
.wing-mark span {
  display: inline-block;
  font-size: 24px;
  transform: translate(-3px,-14px) rotate(6deg);
}
.hero h1 {
  margin: 0 0 28px;
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: -1.2px;
  font-weight: 500;
}
.hero-copy p {
  margin: 0 0 34px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,.83);
}
.hero-copy strong { color: var(--gold); font-weight: 750; }
.cta {
  display: inline-flex;
  width: 216px;
  height: 45px;
  justify-content: center;
  align-items: center;
  background: var(--gold);
  color: #111;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .2px;
  transition: transform .15s ease;
}
.cta:hover, .cta:focus-visible { transform: translateY(-1px); }
.hero-visual {
  position: absolute;
  right: -92px;
  bottom: -129px;
  width: 690px;
  z-index: 1;
}
.hero-visual img { width: 100%; height: auto; }

.how { min-height: 613px; background: #fff; }
.how-inner { text-align: center; padding-top: 78px; padding-bottom: 84px; }
.eyebrow {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.eyebrow.dark { color: #282828; }
.how h2 {
  margin: 24px 0 51px;
  color: #5921ea;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -1px;
}
.steps {
  display: grid;
  grid-template-columns: 240px 86px 240px 86px 240px;
  justify-content: center;
  align-items: start;
  gap: 28px;
}
.step { text-align: center; }
.step img {
  width: 210px;
  height: 210px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 32px;
  margin: 0 auto 19px;
}
.step h3 {
  margin: 0 0 13px;
  font-size: 21px;
  line-height: 1.15;
  font-weight: 750;
}
.step p {
  margin: 0;
  color: #505050;
  font-size: 15px;
  line-height: 1.32;
}
.step p strong { color: #343434; font-weight: 800; }
.step-arrow { margin-top: 86px; width: 86px; }
.step-arrow svg { width: 100%; overflow: visible; }
.step-arrow path {
  fill: none;
  stroke: #5921ea;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 2.8 5.5;
}
.step-arrow .tip { stroke-dasharray: none; }

.vision {
  min-height: 353px;
  background: linear-gradient(90deg, #5620d6 0%, #5a20e8 100%);
  color: #fff;
  display: flex;
  align-items: center;
}
.vision-inner { text-align: center; padding: 60px 0 67px; }
.eyebrow.gold { color: var(--gold); text-transform: lowercase; font-size: 13px; }
.vision h2 {
  margin: 21px 0 20px;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -1.1px;
  font-weight: 450;
}
.vision-copy {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.83);
}

.site-footer { min-height: 425px; background: #fff; padding-top: 81px; position: relative; }
.footer-inner { display: flex; justify-content: space-between; gap: 90px; }
.footer-brand-col { width: 37%; }
.footer-brand { font-size: 23px; font-weight: 800; letter-spacing: -.7px; margin-bottom: 24px; }
.footer-tagline { margin: 0 0 73px; max-width: 260px; font-size: 13px; line-height: 1.5; color: #555; }
.email { font-size: 13px; color: #4b4b4b; }
.footer-links { display: grid; grid-template-columns: repeat(3, 130px); gap: 44px; }
.footer-col { display: flex; flex-direction: column; gap: 16px; }
.footer-col h3 { margin: 0 0 11px; font-size: 13px; font-weight: 800; }
.footer-col a { font-size: 13px; color: #4e4e4e; }
.footer-col a:hover, .footer-col a:focus-visible, .email:hover, .email:focus-visible { color: var(--purple); }
.copyright { margin: 86px 0 0; padding-bottom: 25px; text-align: center; font-size: 12px; color: #555; }

@media (max-width: 1100px) {
  .shell { width: min(940px, calc(100% - 42px)); }
  .hero-copy { padding-left: 80px; }
  .hero-visual { right: -150px; }
  .steps { grid-template-columns: 220px 58px 220px 58px 220px; gap: 16px; }
  .step-arrow { width: 58px; }
}

@media (max-width: 820px) {
  .site-header { height: auto; min-height: 82px; }
  .nav-wrap { padding: 21px 0; gap: 28px; }
  .main-nav { gap: 22px; flex-wrap: wrap; justify-content: flex-end; }
  .main-nav a { font-size: 13px; }

  .hero { height: auto; min-height: 640px; }
  .hero-inner { min-height: 640px; }
  .hero-copy { width: 62%; padding: 56px 0 0 24px; }
  .wing-mark { margin-bottom: 42px; }
  .hero h1 { font-size: 34px; }
  .hero-copy p { font-size: 16px; }
  .hero-visual { width: 560px; right: -245px; bottom: -72px; }

  .how-inner { padding-top: 64px; }
  .how h2 { font-size: 34px; margin-bottom: 42px; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .step-arrow { display: none; }
  .step img { width: min(190px, 100%); height: auto; aspect-ratio: 1; }
  .step p br { display: none; }

  .footer-inner { gap: 45px; }
  .footer-brand-col { width: 31%; }
  .footer-links { grid-template-columns: repeat(3, 1fr); gap: 28px; flex: 1; }
}

@media (max-width: 600px) {
  .shell { width: min(100% - 32px, 560px); }
  .desktop-only { display: none; }
  .nav-wrap { align-items: flex-start; }
  .main-nav { gap: 10px 16px; max-width: 235px; }

  .hero { min-height: 760px; }
  .hero-inner { display: block; min-height: 760px; }
  .hero-copy { width: 100%; padding: 48px 0 0; }
  .wing-mark { margin-bottom: 34px; }
  .hero h1 { font-size: 36px; }
  .hero-copy p { max-width: 350px; }
  .hero-visual { width: 500px; right: 50%; transform: translateX(57%); bottom: -181px; opacity: .98; }
  .cta { width: 190px; }

  .how-inner { padding-top: 58px; padding-bottom: 62px; }
  .how h2 { font-size: 33px; margin: 18px 0 42px; }
  .steps { grid-template-columns: 1fr; gap: 46px; }
  .step img { width: 220px; }
  .step p { max-width: 310px; margin-inline: auto; }

  .vision-inner { padding: 56px 0 60px; }
  .vision h2 { font-size: 31px; }
  .vision-copy { font-size: 14px; }

  .site-footer { padding-top: 58px; }
  .footer-inner { flex-direction: column; gap: 48px; }
  .footer-brand-col { width: 100%; }
  .footer-tagline { margin-bottom: 26px; }
  .footer-links { width: 100%; grid-template-columns: 1fr 1fr; gap: 44px 26px; }
  .copyright { margin-top: 66px; }
}

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