:root {
  --ink: #071f34;
  --ink-soft: #25455c;
  --ocean: #075d7a;
  --teal: #0e8177;
  --sun: #ffad32;
  --ember: #e95f2a;
  --paper: #fffaf0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
}

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

.page-shell {
  min-height: 100svh;
  overflow-x: hidden;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1fr);
  align-content: space-between;
  gap: 22px;
  isolation: isolate;
  padding: clamp(18px, 4vw, 48px);
  color: #ffffff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 22, 38, 0.94) 0%, rgba(4, 22, 38, 0.82) 48%, rgba(4, 22, 38, 0.42) 100%),
    linear-gradient(180deg, rgba(4, 22, 38, 0.22), rgba(4, 22, 38, 0.88));
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand,
.header-link,
.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand {
  gap: 12px;
  min-width: 0;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
}

.header-link {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.header-link:hover {
  border-color: rgba(255, 255, 255, 0.72);
  color: #ffffff;
}

.hero-content {
  width: min(620px, 100%);
  padding: clamp(10px, 4vh, 36px) 0;
}

.eyebrow {
  margin: 0;
  color: #ffd284;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
p {
  margin-top: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 14px;
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: 0;
  font-weight: 800;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.96rem, 1.18vw, 1.04rem);
  font-weight: 500;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions a {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.primary-action {
  color: var(--ink);
  background: #ffd284;
  box-shadow: 0 14px 34px rgba(255, 173, 50, 0.28);
}

.primary-action:hover {
  background: #ffe0a8;
}

.launch-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
}

@media (max-width: 760px) {
  .hero {
    min-height: 100svh;
    gap: 18px;
  }

  .brand span {
    display: none;
  }

  .hero-content {
    padding-top: 22px;
  }
}

@media (max-width: 440px) {
  .hero-actions a {
    width: 100%;
  }

  .site-header {
    align-items: flex-start;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.8rem);
  }
}
