:root {
  color-scheme: light;
  --ink: #071326;
  --muted: #5d6980;
  --blue: #2563eb;
  --navy: #071a3c;
  --cyan: #00d4ff;
  --orange: #ff7a45;
  --paper: #f8fbff;
  --line: rgba(37, 99, 235, 0.18);
  --shadow: 0 24px 80px rgba(7, 26, 60, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Aptos", "SF Pro Text", "Helvetica Neue", sans-serif;
  text-rendering: geometricPrecision;
}

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

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

.site-hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  background: var(--navy);
  color: white;
  isolation: isolate;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
  z-index: -3;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 8, 25, 0.96) 0%, rgba(4, 18, 48, 0.82) 34%, rgba(4, 18, 48, 0.26) 66%, rgba(4, 18, 48, 0.1) 100%),
    linear-gradient(180deg, rgba(2, 8, 25, 0.14), rgba(2, 8, 25, 0.48));
  z-index: -2;
}

.nav {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.nav-links a {
  padding: 10px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  color: white;
  border-bottom-color: var(--cyan);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0 112px;
  max-width: 690px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-content h1,
.section h2,
.identity-grid h2,
.studio-copy h2,
.closing h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-content h1 {
  font-size: 5.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.25rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 20px;
  font-weight: 800;
  line-height: 1.2;
}

.primary-action {
  background: var(--orange);
  color: #150803;
  box-shadow: 0 16px 38px rgba(255, 122, 69, 0.28);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: white;
  background: rgba(255, 255, 255, 0.06);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 28px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: white;
  transform: translateX(-50%);
  animation: cue 1.4s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% {
    transform: translate(-50%, 0);
    opacity: 0.35;
  }
  50% {
    transform: translate(-50%, 11px);
    opacity: 1;
  }
}

.section {
  padding: 108px 0;
}

.section-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.identity-band {
  background: white;
  border-bottom: 1px solid var(--line);
}

.identity-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 42px;
  padding: 54px 0;
  align-items: start;
}

.identity-grid h2,
.section h2,
.studio-copy h2,
.closing h2 {
  font-size: 3.3rem;
}

.identity-grid > p,
.fox-copy > p,
.studio-copy p,
.closing p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.9;
}

.identity-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 4px 0 0;
}

.identity-facts div,
.content-grid article,
.column-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 251, 255, 0.88);
}

.identity-facts div {
  padding: 18px;
}

.identity-facts dt {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.identity-facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.fox-section {
  background:
    linear-gradient(180deg, #f8fbff 0%, #edf6ff 100%),
    radial-gradient(circle at 70% 24%, rgba(0, 212, 255, 0.2), transparent 42%);
}

.fox-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: center;
}

.fox-copy h2 {
  max-width: 650px;
}

.fox-copy > p {
  margin-top: 26px;
}

.trait-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trait-list span {
  border: 1px solid rgba(37, 99, 235, 0.26);
  border-radius: 999px;
  padding: 9px 14px;
  background: white;
  color: #174074;
  font-weight: 800;
  font-size: 0.92rem;
}

.fox-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: end center;
}

.fox-stage::before {
  content: "";
  position: absolute;
  inset: auto 10% 0;
  height: 78%;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 26, 60, 0.94), rgba(37, 99, 235, 0.72)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 64px);
  box-shadow: var(--shadow);
}

.fox-stage img {
  position: relative;
  z-index: 1;
  width: min(520px, 96%);
  filter: drop-shadow(0 24px 42px rgba(7, 26, 60, 0.2));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.content-section {
  background: #071a3c;
  color: white;
}

.content-section .section-heading h2 {
  color: white;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.content-grid article {
  min-height: 246px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.content-grid span {
  color: var(--cyan);
  font-weight: 900;
}

.content-grid h3 {
  margin: 54px 0 14px;
  font-size: 1.26rem;
}

.content-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.studio-strip {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: white;
  display: grid;
  align-items: end;
}

.studio-strip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.studio-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 10, 28, 0.88), rgba(3, 10, 28, 0.42), rgba(3, 10, 28, 0.12));
}

.studio-copy {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 64px;
  max-width: 680px;
}

.studio-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.visual-section {
  background: white;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.visual-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #f6faff;
  box-shadow: 0 18px 42px rgba(7, 26, 60, 0.08);
}

.visual-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.visual-grid figcaption {
  padding: 14px 16px 16px;
  color: #174074;
  font-weight: 900;
}

.guide-section {
  background: linear-gradient(180deg, #f8fbff, #eef6ff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guide-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.column-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.column-list article {
  min-height: 148px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.column-list strong {
  font-size: 1.22rem;
}

.column-list span {
  color: var(--blue);
  font-weight: 800;
}

.closing {
  padding: 72px 0;
  background:
    linear-gradient(135deg, rgba(7, 26, 60, 0.98), rgba(10, 50, 100, 0.92)),
    linear-gradient(90deg, rgba(0, 212, 255, 0.08), rgba(255, 122, 69, 0.08));
  color: white;
}

.closing-inner {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 34px;
  align-items: center;
}

.closing img {
  width: 190px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.closing p {
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, 0.74);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px max(24px, calc((100% - 1180px) / 2));
  color: rgba(255, 255, 255, 0.7);
  background: #030a1c;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero-content h1 {
    font-size: 4.2rem;
  }

  .identity-grid,
  .fox-layout,
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .identity-facts,
  .content-grid,
  .visual-grid,
  .column-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-grid article {
    min-height: 210px;
  }

  .fox-stage {
    min-height: 520px;
  }
}

@media (max-width: 700px) {
  .site-hero {
    min-height: 84svh;
  }

  .hero-bg {
    object-position: 62% center;
    opacity: 0.62;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(2, 8, 25, 0.9) 0%, rgba(4, 18, 48, 0.72) 50%, rgba(4, 18, 48, 0.44) 100%),
      linear-gradient(90deg, rgba(2, 8, 25, 0.66), rgba(2, 8, 25, 0.16));
  }

  .nav {
    width: min(100% - 32px, 1180px);
    padding-top: 16px;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    width: min(100% - 32px, 1180px);
    padding: 72px 0 82px;
  }

  .hero-content h1 {
    font-size: 3.25rem;
  }

  .hero-lead {
    font-size: 1.02rem;
    line-height: 1.75;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .section-inner,
  .studio-copy {
    width: min(100% - 32px, 1180px);
  }

  .identity-grid {
    padding: 40px 0;
  }

  .identity-grid h2,
  .section h2,
  .studio-copy h2,
  .closing h2 {
    font-size: 2.18rem;
    line-height: 1.08;
  }

  .identity-facts,
  .content-grid,
  .visual-grid,
  .column-list {
    grid-template-columns: 1fr;
  }

  .fox-stage {
    min-height: 430px;
  }

  .fox-stage::before {
    inset: auto 0 0;
    height: 78%;
  }

  .studio-strip {
    min-height: 440px;
  }

  .studio-strip img {
    object-position: 58% center;
  }

  .studio-copy {
    padding-bottom: 42px;
  }

  .closing-inner {
    grid-template-columns: 1fr;
  }

  .closing img {
    width: 146px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .scroll-cue span {
    animation: none;
  }
}
