:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #08060d;
  color: #fafafa;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    #08060d;
  background-size: 48px 48px;
}

.glow { position: fixed; z-index: -1; width: 34rem; height: 34rem; border-radius: 50%; filter: blur(110px); opacity: .2; }
.glow-one { top: -15rem; left: -10rem; background: #8b5cf6; }
.glow-two { right: -18rem; top: 12rem; background: #4f46e5; }

header, main, footer { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

header { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: white; text-decoration: none; font-size: 14px; font-weight: 800; letter-spacing: .15em; }
.mark { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(167,139,250,.35); border-radius: 12px; color: #c4b5fd; background: rgba(139,92,246,.12); box-shadow: 0 0 30px rgba(139,92,246,.15); }
.nav-link { color: #d4d4d8; text-decoration: none; padding: 10px 15px; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; background: rgba(255,255,255,.035); font-size: 14px; }
.nav-link:hover { border-color: rgba(167,139,250,.45); color: white; }

.hero { display: grid; grid-template-columns: 1.02fr .98fr; gap: 68px; align-items: center; min-height: calc(100vh - 230px); padding: 74px 0 88px; }
.eyebrow { margin: 0 0 22px; color: #a78bfa; font-size: 12px; font-weight: 800; letter-spacing: .18em; }
h1 { margin: 0; max-width: 700px; font-size: clamp(56px, 7vw, 92px); line-height: .92; letter-spacing: -.06em; }
h1 span { color: #8b5cf6; }
.intro { max-width: 580px; margin: 28px 0 0; color: #a1a1aa; font-size: 18px; line-height: 1.75; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.actions a { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 19px; border-radius: 11px; text-decoration: none; font-size: 14px; font-weight: 750; transition: .2s ease; }
.primary { gap: 12px; color: white; background: #8b5cf6; box-shadow: 0 0 38px rgba(139,92,246,.3); }
.primary:hover { background: #a78bfa; transform: translateY(-2px); }
.secondary { color: #e4e4e7; border: 1px solid rgba(255,255,255,.11); background: rgba(255,255,255,.035); }
.secondary:hover { border-color: rgba(167,139,250,.4); background: rgba(139,92,246,.09); }
.destination { margin-top: 18px; color: #71717a; font-size: 12px; }

.visual { overflow: hidden; padding: 12px; border: 1px solid rgba(255,255,255,.1); border-radius: 26px; background: rgba(255,255,255,.035); box-shadow: 0 30px 90px rgba(0,0,0,.42); }
.visual img { display: block; width: 100%; aspect-ratio: 1200 / 630; object-fit: cover; border-radius: 17px; }
.status-row { display: flex; align-items: center; justify-content: space-between; padding: 15px 8px 3px; color: #a1a1aa; font-size: 12px; font-weight: 650; }
.status-row span:first-child { display: flex; align-items: center; gap: 8px; color: #d4d4d8; }
.status-row i { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 14px #34d399; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding-bottom: 80px; }
.features article { min-height: 130px; padding: 22px; border: 1px solid rgba(255,255,255,.08); border-radius: 17px; background: rgba(255,255,255,.025); }
.features b { display: block; margin-bottom: 12px; color: #c4b5fd; font-size: 11px; letter-spacing: .16em; }
.features span { color: #a1a1aa; font-size: 14px; line-height: 1.65; }

footer { display: flex; justify-content: space-between; gap: 30px; padding: 25px 0 40px; border-top: 1px solid rgba(255,255,255,.08); color: #71717a; font-size: 12px; }
footer span:first-child { color: #a78bfa; font-weight: 800; letter-spacing: .14em; }

@media (max-width: 850px) {
  .hero { grid-template-columns: 1fr; gap: 44px; padding-top: 54px; }
  .visual { order: -1; }
  .features { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  header, main, footer { width: min(100% - 28px, 1120px); }
  .brand { font-size: 12px; }
  .hero { padding-top: 34px; }
  h1 { font-size: clamp(48px, 16vw, 72px); }
  .actions, .actions a { width: 100%; }
  footer { flex-direction: column; }
}
