:root {
  --ink: #12161c;
  --muted: #5a6570;
  --paper: #eef1f5;
  --surface: #ffffff;
  --line: #d4dae3;
  --blue: #006fff;
  --blue-deep: #0056cc;
  --font: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 85% -10%, color-mix(in srgb, var(--blue) 10%, transparent), transparent 60%),
    linear-gradient(180deg, #f7f9fc 0%, var(--paper) 40%, #e8ecf2 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.top {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem clamp(1.25rem, 5vw, 3rem);
}

.top--on-hero {
  background: transparent;
  border-bottom: 1px solid color-mix(in srgb, #fff 12%, transparent);
}

.logo img {
  height: 1.85rem;
  width: auto;
  background: transparent;
}

.top nav {
  display: flex;
  gap: 0.15rem;
}

.top nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  padding: 0.4rem 0.7rem;
}

.top nav a:hover {
  color: #fff;
}

/* —— Hero banner —— */
.hero-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  min-height: min(72vh, 40rem);
  display: flex;
  flex-direction: column;
}

.hero-geo {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #0a1630;
}

.hero-geo-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(2.5rem, 7vw, 5rem) clamp(1.25rem, 5vw, 4rem) clamp(3rem, 8vw, 5.5rem);
}

.hero-copy {
  max-width: 36rem;
  text-align: right;
  margin-left: auto;
  animation: rise 0.75s ease both;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ec2ff;
}

.hero h1 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.lede {
  margin: 1.15rem 0 1.6rem;
  margin-left: auto;
  max-width: 32rem;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(230, 238, 252, 0.9);
  animation: rise 0.75s ease 0.08s both;
}

.lede em {
  font-style: normal;
  color: #7eb6ff;
  font-weight: 500;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
  animation: rise 0.75s ease 0.14s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.35rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn.cta {
  background: #ff6a00;
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.35);
}

.btn.cta:hover {
  background: #ff7e24;
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--blue);
  color: #fff;
  border-radius: 0.45rem;
}

.btn.primary:hover {
  background: var(--blue-deep);
}

.btn.ghost {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
  border-radius: 0.45rem;
}

.btn.ghost:hover {
  border-color: color-mix(in srgb, var(--ink) 35%, var(--line));
}

.btn.ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn.ghost-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 700px) {
  .hero {
    justify-content: center;
  }

  .hero-copy {
    text-align: left;
    margin-left: 0;
  }

  .cta-row {
    justify-content: flex-start;
  }

  .lede {
    margin-left: 0;
  }
}

/* —— Pillars —— */
.pillars {
  padding: 0 clamp(1.25rem, 5vw, 4rem) 3rem;
}

.pillars ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .pillars ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.pillars li {
  padding: 0.25rem 0;
  border-top: 1px solid var(--ink);
}

.pillars strong {
  display: block;
  margin: 0.85rem 0 0.4rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.pillars span {
  color: var(--muted);
  font-size: 0.98rem;
}

.punch {
  margin: 0 clamp(1.25rem, 5vw, 4rem) 3.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.punch p {
  margin: 0;
  max-width: 38rem;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.punch em {
  font-style: normal;
  color: var(--blue);
}

/* —— Product shots —— */
.product {
  padding: 0 clamp(1.25rem, 5vw, 4rem) 4rem;
}

.section-head {
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

.section-head h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.shots {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .shots {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .shots {
    grid-template-columns: repeat(3, 1fr);
  }
}

.shot {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  overflow: hidden;
}

.shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  background: #f3f5f8;
  display: block;
}

.shot figcaption {
  padding: 0.65rem 0.85rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.start {
  padding: 0 clamp(1.25rem, 5vw, 4rem) 4.5rem;
}

.start-inner {
  background: var(--ink);
  color: #f5f6f8;
  border-radius: 0.75rem;
  padding: clamp(1.5rem, 3.5vw, 2.4rem);
}

.start h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  font-weight: 600;
}

.start p {
  margin: 0 0 1.2rem;
  max-width: 36rem;
  color: color-mix(in srgb, #fff 72%, transparent);
}

.start code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.88em;
  color: #9ec5ff;
}

.start .btn.primary {
  background: #fff;
  color: var(--ink);
}

.start .btn.primary:hover {
  background: #e8eefc;
}

.start .btn.ghost {
  background: transparent;
  border-color: color-mix(in srgb, #fff 28%, transparent);
  color: #fff;
}

.start .btn.ghost:hover {
  border-color: #fff;
}

.foot {
  padding: 2.5rem 1.25rem 3rem;
  background: #0a1630;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

.foot-inner {
  max-width: 42rem;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

.foot img {
  height: 2.1rem;
  width: auto;
  opacity: 0.95;
}

.foot p {
  margin: 0;
  line-height: 1.45;
}

.foot a {
  color: #9ec2ff;
  font-weight: 600;
  text-decoration: none;
}

.foot a:hover {
  color: #c5daff;
  text-decoration: underline;
}

.foot-copy {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}

.foot-links {
  font-size: 0.95rem;
}

.foot-blurb {
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.45;
  opacity: 0.85;
}

.foot-addr {
  font-size: 0.95rem;
  opacity: 0.8;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 700px) {
  .top nav {
    display: none;
  }
}
