:root {
  color-scheme: light;
  --ink: #182133;
  --ink-strong: #080d18;
  --muted: #5b6678;
  --paper: #f5f7fb;
  --surface: #ffffff;
  --line: #dbe3ee;
  --teal: #0e9f90;
  --teal-dark: #08776f;
  --coral: #f05d64;
  --sun: #f3b23f;
  --violet: #7657d8;
  --graphite: #202a38;
  --night: #0b1019;
  --soft-teal: #dcfbf6;
  --soft-coral: #ffe4e0;
  --shadow: 0 24px 80px rgba(8, 13, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::selection {
  background: var(--soft-teal);
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(245, 247, 251, 0.86);
  border-bottom: 1px solid rgba(219, 227, 238, 0.78);
  backdrop-filter: blur(18px);
}

.site-nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-strong);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--graphite);
  color: #ffffff;
  box-shadow: inset -8px -8px 0 rgba(4, 122, 116, 0.55), inset 9px 9px 0 rgba(242, 107, 91, 0.45);
  font-size: 0.86rem;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(4, 122, 116, 0.09);
  color: var(--teal-dark);
  outline: none;
}

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--night);
  border-bottom: 1px solid var(--line);
  color: #ffffff;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-backdrop::before {
  position: absolute;
  inset: -20% -8% -16% 24%;
  background:
    linear-gradient(135deg, rgba(14, 159, 144, 0.35), transparent 44%),
    linear-gradient(300deg, rgba(240, 93, 100, 0.26), transparent 50%);
  content: "";
}

.hero-shot {
  position: absolute;
  width: auto;
  height: min(72vh, 720px);
  max-height: calc(100% - 92px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
  object-fit: cover;
}

.hero-shot-pop {
  right: min(30vw, 360px);
  bottom: -86px;
  z-index: 1;
  transform: rotate(-6deg);
}

.hero-shot-rift {
  right: min(10vw, 128px);
  top: 96px;
  z-index: 2;
}

.hero-shot-sea {
  right: -42px;
  bottom: -72px;
  z-index: 1;
  transform: rotate(5deg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 13, 24, 0.96) 0%, rgba(8, 13, 24, 0.82) 38%, rgba(8, 13, 24, 0.34) 70%, rgba(8, 13, 24, 0.12) 100%),
    linear-gradient(180deg, rgba(8, 13, 24, 0.16) 0%, rgba(8, 13, 24, 0.68) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 130px 0 76px;
}

.hero-copy {
  width: min(610px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8ef5df;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: var(--coral);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--ink-strong);
  font-size: 6.8rem;
  line-height: 0.88;
  letter-spacing: 0;
}

.hero h1 {
  color: #ffffff;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
}

.hero-lede {
  width: min(560px, 100%);
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.26rem;
  line-height: 1.45;
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(520px, 100%);
  margin: 30px 0 0;
}

.hero-facts div {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-facts dt {
  color: #ffffff;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1;
}

.hero-facts dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  background: var(--ink-strong);
  color: #ffffff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(31, 41, 55, 0.18);
  color: var(--ink-strong);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--teal);
}

.hero .button-primary {
  background: #ffffff;
  color: var(--ink-strong);
}

.hero .button-primary:hover,
.hero .button-primary:focus-visible {
  background: var(--soft-teal);
}

.hero .button-secondary {
  background: rgba(8, 13, 24, 0.46);
  border-color: rgba(255, 255, 255, 0.34);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.hero .button-secondary:hover,
.hero .button-secondary:focus-visible {
  border-color: rgba(142, 245, 223, 0.8);
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title {
  width: min(720px, 100%);
  margin-bottom: 18px;
  color: var(--ink-strong);
  font-size: 3.6rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.section-lede {
  width: min(720px, 100%);
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.08rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card,
.signal-card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.product-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.product-media {
  width: 100%;
  aspect-ratio: 0.72;
  overflow: hidden;
  background: var(--night);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-kicker {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.product-card h3,
.signal-card h3 {
  margin-bottom: 8px;
  color: var(--ink-strong);
  font-size: 1.25rem;
  line-height: 1.2;
}

.product-card p,
.signal-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-card .product-kicker {
  margin-bottom: 8px;
  color: var(--teal-dark);
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 6px 8px;
  border: 1px solid rgba(14, 159, 144, 0.16);
  border-radius: 8px;
  background: var(--soft-teal);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.1;
}

.studio-band {
  background: var(--night);
  color: #ffffff;
}

.studio-band .section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.studio-band .section-kicker,
.studio-band .section-title,
.studio-band .section-lede {
  color: #ffffff;
}

.studio-band .section-lede {
  color: rgba(255, 255, 255, 0.76);
}

.signal-list {
  display: grid;
  gap: 12px;
}

.signal-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.signal-card h3 {
  color: #ffffff;
}

.signal-card p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  margin-bottom: 10px;
  color: var(--ink-strong);
  font-size: 2.5rem;
  line-height: 1.05;
}

.contact-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-links a {
  color: var(--ink-strong);
  font-weight: 700;
}

.document-page {
  background: var(--paper);
}

.document-page .site-header {
  position: sticky;
}

.document-shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 74px;
}

.document-header {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.document-header h1 {
  margin-bottom: 14px;
  font-size: 4.8rem;
}

.document-badge {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(4, 122, 116, 0.18);
  border-radius: 8px;
  background: var(--soft-teal);
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.document-body {
  padding-top: 24px;
}

.document-body h2 {
  margin: 34px 0 10px;
  color: var(--ink-strong);
  font-size: 1.28rem;
  line-height: 1.25;
}

.document-body p,
.document-body li {
  color: var(--muted);
}

.document-body a {
  color: var(--teal-dark);
  font-weight: 700;
}

.document-body ul {
  padding-left: 1.25rem;
}

.not-found {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding: 110px 16px 54px;
}

.not-found-panel {
  width: min(720px, 100%);
  text-align: center;
}

.not-found-panel h1 {
  margin-bottom: 16px;
  font-size: 6.2rem;
}

.not-found-panel p {
  margin: 0 auto 26px;
  width: min(520px, 100%);
  color: var(--muted);
  font-size: 1.1rem;
}

@media (max-width: 980px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.62fr) 1fr;
  }

  .product-media {
    min-height: 100%;
  }
}

@media (max-width: 860px) {
  .site-nav {
    min-height: 64px;
  }

  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    padding: 9px 8px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-shot {
    height: min(64vh, 620px);
    opacity: 0.66;
  }

  .hero-shot-pop {
    right: 46%;
    bottom: -70px;
  }

  .hero-shot-rift {
    right: 16%;
    top: 90px;
  }

  .hero-shot-sea {
    right: -118px;
    bottom: -64px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(8, 13, 24, 0.94) 0%, rgba(8, 13, 24, 0.78) 58%, rgba(8, 13, 24, 0.62) 100%),
      linear-gradient(90deg, rgba(8, 13, 24, 0.92) 0%, rgba(8, 13, 24, 0.42) 100%);
  }

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

  .studio-band .section,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 5.2rem;
  }

  .section-title {
    font-size: 2.8rem;
  }

  .contact-panel h2 {
    font-size: 2.1rem;
  }

  .document-header h1 {
    font-size: 3.4rem;
  }

  .not-found-panel h1 {
    font-size: 4.6rem;
  }

  .contact-panel {
    padding: 24px;
  }
}

@media (max-width: 620px) {
  .site-nav {
    width: min(100% - 24px, 1120px);
  }

  .brand-link span:last-child {
    max-width: 118px;
    overflow: hidden;
    white-space: nowrap;
  }

  .nav-links a:nth-child(2) {
    display: none;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-shot {
    height: 58vh;
    opacity: 0.48;
  }

  .hero-shot-pop {
    right: 52%;
    bottom: -54px;
  }

  .hero-shot-rift {
    right: 8%;
    top: 84px;
  }

  .hero-shot-sea {
    right: -148px;
    bottom: -48px;
  }

  .hero-content {
    width: min(100% - 24px, 1120px);
    padding-bottom: 54px;
  }

  h1 {
    font-size: 3.55rem;
  }

  .hero-lede {
    font-size: 1.04rem;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .product-card {
    display: flex;
  }

  .product-media {
    aspect-ratio: 0.82;
    min-height: 0;
    max-height: 280px;
  }

  .section-title {
    font-size: 2.15rem;
  }

  .contact-panel h2 {
    font-size: 1.9rem;
  }

  .document-header h1 {
    font-size: 2.8rem;
  }

  .not-found-panel h1 {
    font-size: 3.5rem;
  }

  .section {
    width: min(100% - 24px, 1120px);
    padding: 62px 0;
  }

  .footer-inner {
    width: min(100% - 24px, 1120px);
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
