:root {
  --bg: #08121f;
  --surface: #121f2e;
  --accent: #2ee0d1;
  --accent2: #6bc7ff;
  --warm: #ffb847;
  --text: #e6f2fa;
  --muted: #8aa4b8;
  --radius: 20px;
  --pad: clamp(20px, 4vw, 28px);
  --font: "DM Sans", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 1.05rem;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent2);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: var(--bg);
  padding: 8px 12px;
  z-index: 100;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* floating_pill */
.float-pill {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.float-pill a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
}

.float-pill a:hover {
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  color: var(--accent);
}

.band {
  padding: clamp(3rem, 8vw, 5.5rem) var(--pad);
  max-width: 1120px;
  margin: 0 auto;
}

.intro {
  max-width: 38rem;
  margin-bottom: 2rem;
}

.intro--left {
  margin-right: auto;
  text-align: left;
}

.intro--center {
  margin-inline: auto;
  text-align: center;
}

.intro--right {
  margin-left: auto;
  text-align: right;
}

.intro h2 {
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.intro p {
  margin: 0;
  color: var(--muted);
}

/* editorial_type hero */
.hero.editorial {
  position: relative;
  min-height: min(92vh, 920px);
  padding: clamp(4rem, 12vw, 7rem) var(--pad) 3rem;
  display: grid;
  align-content: end;
  overflow: hidden;
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(1.05) contrast(1.05);
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(8, 18, 31, 0.15) 0%,
    rgba(8, 18, 31, 0.92) 55%,
    var(--bg) 100%
  );
}

.hero__copy {
  position: relative;
  z-index: 1;
  max-width: 52rem;
}

.hero__kicker {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero__title {
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.15em;
}

.hero__line1 {
  font-size: clamp(3rem, 11vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--text);
}

.hero__line2 {
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 600;
  color: color-mix(in srgb, var(--accent) 75%, var(--text));
  font-style: italic;
}

.hero__tagline {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  max-width: 36ch;
  color: var(--muted);
  margin: 0;
}

.hero__gallery {
  position: relative;
  z-index: 1;
  display: none;
  gap: 12px;
  margin-top: 2.5rem;
}

@media (min-width: 900px) {
  .hero.editorial {
    grid-template-columns: 1fr auto;
    align-items: end;
    column-gap: 2rem;
  }

  .hero__gallery {
    display: grid;
    grid-template-columns: repeat(3, 88px);
  }

  .hero__gallery img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  }
}

/* icon_grid */
.icon-grid__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.icon-grid__list li {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  border: 1px solid color-mix(in srgb, var(--accent2) 12%, transparent);
}

.icon-grid__glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.icon-grid__list h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.icon-grid__list p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* annotated_shots */
.annotated__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  align-items: start;
}

.annotated__shot {
  margin: 0;
  position: relative;
}

.annotated__shot img {
  border-radius: 22px;
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.annotated__shot figcaption {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
}

.pin {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--warm);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--warm) 35%, transparent);
  flex-shrink: 0;
}

/* inline_expand legal */
.legal__block {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid color-mix(in srgb, var(--accent2) 14%, transparent);
  margin-bottom: 0.85rem;
  overflow: hidden;
}

.legal__block summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 700;
  list-style: none;
}

.legal__block summary::-webkit-details-marker {
  display: none;
}

.legal__block summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-family: var(--mono);
}

.legal__block[open] summary::after {
  content: "−";
}

.legal__body {
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.legal__body p {
  margin: 0 0 0.75rem;
}

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

.site-foot {
  text-align: center;
  padding: 2rem var(--pad) 5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 480px) {
  .intro--right {
    text-align: left;
    margin-left: 0;
  }
}
