:root {
  --bg: #0b0f14;
  --bg-mid: #121a24;
  --ink: #e8eaed;
  --muted: #9aa3af;
  --near: #e53e3e;
  --far: #2b6cb0;
  --mid: #38b2ac;
  --steel: #6a8fad;
  --font-display: "Syne", "Arial Narrow", sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
  --max: 68rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  background:
    radial-gradient(ellipse 90% 70% at 70% 10%, rgba(42, 90, 140, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(229, 62, 62, 0.08), transparent 50%),
    linear-gradient(165deg, var(--bg) 0%, var(--bg-mid) 45%, #0a1018 100%);
  min-height: 100vh;
}

a {
  color: inherit;
}

img,
video {
  max-width: 100%;
  display: block;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: ken 28s ease-in-out infinite alternate;
}

@keyframes ken {
  from {
    transform: scale(1);
    opacity: 0.88;
  }
  to {
    transform: scale(1.06);
    opacity: 1;
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(11, 15, 20, 0.35) 0%, rgba(11, 15, 20, 0.55) 40%, rgba(11, 15, 20, 0.92) 100%),
    linear-gradient(90deg, rgba(11, 15, 20, 0.75) 0%, transparent 55%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: clamp(2.5rem, 8vh, 5rem);
}

.brand {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 12vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.headline {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 3.2vw, 1.85rem);
  letter-spacing: -0.02em;
  max-width: 22ch;
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.22s forwards;
}

.lede {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 36ch;
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.34s forwards;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  align-items: center;
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.46s forwards;
}

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

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.cta-primary {
  background: linear-gradient(135deg, var(--near), #c45c26 55%, #d4a017);
  color: #0b0f14;
}

.cta-primary:hover {
  transform: translateY(-2px);
}

.cta-ghost {
  background: transparent;
  border-color: rgba(232, 234, 237, 0.28);
  color: var(--ink);
  position: relative;
}

.cta-ghost::after {
  content: "";
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 0.55rem;
  height: 1px;
  background: var(--steel);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.cta-ghost:hover::after {
  transform: scaleX(1);
}

.cta-ghost:hover {
  border-color: rgba(106, 143, 173, 0.7);
}

/* —— Sections —— */
main {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem) 4rem;
}

.section {
  padding: clamp(3rem, 8vh, 5.5rem) 0;
  border-top: 1px solid rgba(232, 234, 237, 0.08);
}

.section h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.section p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 58ch;
}

.section p:last-child {
  margin-bottom: 0;
}

.split {
  display: grid;
  gap: 1.5rem 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 760px) {
  .split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.split h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.split .label {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}

.proof {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .proof {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.proof figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.proof .frame {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(12rem, 28vw, 18rem);
  aspect-ratio: 16 / 10;
  background: rgba(8, 12, 18, 0.65);
  border: 1px solid rgba(232, 234, 237, 0.1);
  overflow: hidden;
}

.proof img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.proof figcaption {
  margin-top: 0.55rem;
  font-size: 0.85rem;
  color: var(--muted);
  min-height: 2.4em;
}

.honesty {
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(232, 234, 237, 0.08);
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 52ch;
}

.swatch {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.swatch i {
  display: inline-block;
  width: 5.5rem;
  height: 0.55rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--near), #ecc94b, var(--mid), var(--far));
}

footer {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 1.5rem clamp(1.5rem, 4vw, 3rem) 2.5rem;
  border-top: 1px solid rgba(232, 234, 237, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.88rem;
}

footer a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

footer a:hover {
  color: var(--ink);
  border-bottom-color: var(--steel);
}

@media (prefers-reduced-motion: reduce) {
  .brand,
  .headline,
  .lede,
  .cta-row,
  .hero-media video,
  .hero-media img {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
