:root {
  color-scheme: dark;
  --ink: #f5f7f8;
  --muted: #aeb9c4;
  --faint: #718091;
  --night: #06101d;
  --night-2: #091625;
  --panel: #0d1b2a;
  --line: rgba(255, 255, 255, 0.12);
  --cyan: #65d8e4;
  --cyan-soft: rgba(101, 216, 228, 0.12);
  --amber: #f1b85b;
  --max: 1240px;
  --radius: 1.5rem;
  --font: "SF Arabic", "Noto Kufi Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--night);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 30%, rgba(26, 91, 105, 0.11), transparent 28rem),
    var(--night);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  right: 0.75rem;
  transform: translateY(-160%);
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--night);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: fit-content;
  line-height: 1.15;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(101, 216, 228, 0.38);
  border-radius: 50%;
  background: #06101d;
  box-shadow:
    0 0 0 4px rgba(101, 216, 228, 0.05),
    0 8px 28px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.brand-mark img {
  width: 116%;
  height: 116%;
  max-width: none;
  object-fit: cover;
  transform: scale(1.1);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.96rem;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.72rem;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.site-header nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  transition: color 180ms ease;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  width: 0;
  height: 1px;
  background: var(--cyan);
  content: "";
  transition: width 180ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: white;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  width: 100%;
}

.random-header {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.65rem;
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(6, 16, 29, 0.28);
  cursor: pointer;
  font-size: 0.82rem;
  backdrop-filter: blur(8px);
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.random-header:hover {
  border-color: rgba(101, 216, 228, 0.6);
  background: rgba(101, 216, 228, 0.1);
}

.random-header svg {
  width: 1.05rem;
  height: 1.05rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(940px, 100svh);
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  z-index: -4;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 49% center;
  scale: 1.02;
  animation: hero-enter 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-overlay {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 9, 17, 0.15) 0%, rgba(3, 9, 17, 0.18) 45%, rgba(3, 9, 17, 0.82) 100%),
    linear-gradient(0deg, var(--night) 0%, transparent 24%, rgba(3, 9, 17, 0.16) 70%, rgba(3, 9, 17, 0.52) 100%);
}

.hero-grid,
.final-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to left, black, transparent 74%);
}

.hero-content {
  align-self: center;
  width: min(calc(100% - 3rem), var(--max));
  margin: 4rem auto 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1.25rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  animation: rise-in 0.8s 0.25s both;
}

.eyebrow span {
  width: 2.2rem;
  height: 1px;
  background: var(--cyan);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.6rem, 8.5vw, 8rem);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.075em;
  text-wrap: balance;
  animation: rise-in 0.9s 0.35s both;
}

.hero h1 em,
.manifesto h2 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px rgba(245, 247, 248, 0.76);
}

.hero-lead {
  max-width: 580px;
  margin: 1.7rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.85;
  animation: rise-in 0.9s 0.48s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.2rem;
  animation: rise-in 0.9s 0.58s both;
}

.primary-action,
.final-cta button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  min-height: 3.7rem;
  padding: 0.85rem 1.35rem;
  border: 0;
  border-radius: 0.25rem;
  background: var(--cyan);
  color: #06101d;
  cursor: pointer;
  font-weight: 760;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.primary-action:hover,
.final-cta button:hover {
  transform: translateY(-2px);
  background: #86e4ec;
  box-shadow: 0 14px 36px rgba(101, 216, 228, 0.2);
}

.primary-action svg,
.final-cta button svg {
  width: 1.2rem;
  height: 1.2rem;
}

.text-action {
  padding: 0.5rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  background: transparent;
  cursor: pointer;
}

.text-action span {
  display: inline-block;
  margin-right: 0.55rem;
  color: var(--cyan);
  transition: transform 180ms ease;
}

.text-action:hover span {
  transform: translate(-2px, -2px);
}

.share-action {
  color: rgba(255, 255, 255, 0.78);
}

.hero-coordinate {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left top;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
}

.hero-coordinate i {
  display: block;
  width: 4.5rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.hero-note {
  position: absolute;
  left: max(3rem, calc((100vw - var(--max)) / 2));
  bottom: 8rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.35rem;
  background: rgba(4, 11, 20, 0.43);
  backdrop-filter: blur(12px);
}

.pulse-dot {
  position: relative;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 6px rgba(241, 184, 91, 0.12);
}

.pulse-dot::after {
  position: absolute;
  inset: -0.4rem;
  border: 1px solid rgba(241, 184, 91, 0.3);
  border-radius: 50%;
  content: "";
  animation: pulse 2.2s ease-out infinite;
}

.hero-note small,
.hero-note strong {
  display: block;
}

.hero-note small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
}

.hero-note strong {
  font-size: 0.84rem;
  font-weight: 650;
}

.scroll-cue {
  position: absolute;
  right: max(1.5rem, calc((100vw - var(--max)) / 2));
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 3.6rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-cue i::after {
  position: absolute;
  top: -50%;
  left: 0;
  width: 1px;
  height: 45%;
  background: var(--cyan);
  content: "";
  animation: scroll-line 2.2s ease-in-out infinite;
}

.visual-archive {
  position: relative;
  overflow: hidden;
  padding: 8.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 76% 36%, rgba(101, 216, 228, 0.1), transparent 30rem),
    radial-gradient(circle at 18% 72%, rgba(241, 184, 91, 0.07), transparent 25rem),
    #07131f;
  isolation: isolate;
}

.visual-archive::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.24;
  background-image:
    repeating-linear-gradient(115deg, transparent 0 11px, rgba(255, 255, 255, 0.018) 12px 13px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size:
    auto,
    76px 76px,
    76px 76px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}

.gallery-heading h2 {
  font-size: clamp(2.7rem, 5.8vw, 5.5rem);
}

.gallery-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  align-items: stretch;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.gallery-stage {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 9 / 16;
  max-height: 800px;
  overflow: hidden;
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.65rem;
  background: #03070c;
  box-shadow:
    0 44px 100px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(101, 216, 228, 0.05),
    0 0 70px rgba(40, 135, 153, 0.11);
}

.gallery-stage::before {
  position: absolute;
  z-index: 4;
  inset: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.15rem;
  content: "";
  pointer-events: none;
}

#gallery-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    opacity 240ms ease,
    transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.gallery-stage:hover #gallery-main {
  transform: scale(1.025);
}

.gallery-stage.is-changing #gallery-main {
  animation: gallery-reveal 440ms ease both;
}

.gallery-vignette,
.gallery-texture {
  position: absolute;
  pointer-events: none;
  inset: 0;
}

.gallery-vignette {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(2, 7, 12, 0.34), transparent 22%, transparent 58%, rgba(2, 7, 12, 0.92)),
    radial-gradient(circle at center, transparent 58%, rgba(1, 5, 9, 0.38));
}

.gallery-texture {
  z-index: 2;
  opacity: 0.2;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, 0.035) 4px),
    repeating-linear-gradient(93deg, transparent 0 17px, rgba(101, 216, 228, 0.025) 18px);
  mix-blend-mode: soft-light;
}

.gallery-count {
  position: absolute;
  z-index: 5;
  top: 1.55rem;
  left: 1.5rem;
  display: flex;
  align-items: baseline;
  direction: ltr;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(3, 9, 16, 0.44);
  backdrop-filter: blur(9px);
}

.gallery-count strong {
  font-size: 0.9rem;
}

.gallery-count span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
}

.gallery-caption {
  position: absolute;
  z-index: 5;
  right: 1.6rem;
  bottom: 1.55rem;
  max-width: calc(100% - 9rem);
}

.gallery-caption p {
  margin: 0 0 0.25rem;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 750;
}

.gallery-caption h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.gallery-controls {
  position: absolute;
  z-index: 6;
  bottom: 1.55rem;
  left: 1.5rem;
  display: flex;
  gap: 0.45rem;
  direction: ltr;
}

.gallery-controls button {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(3, 9, 16, 0.48);
  cursor: pointer;
  backdrop-filter: blur(9px);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.gallery-controls button:hover {
  transform: translateY(-2px);
  border-color: rgba(101, 216, 228, 0.7);
  background: rgba(101, 216, 228, 0.14);
}

.gallery-controls svg {
  width: 1.1rem;
  height: 1.1rem;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  min-height: 0;
}

.gallery-thumb {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: #07101a;
  cursor: pointer;
  isolation: isolate;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.gallery-thumb::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 43%, rgba(2, 7, 12, 0.9)),
    repeating-linear-gradient(115deg, transparent 0 12px, rgba(255, 255, 255, 0.018) 13px);
  content: "";
  pointer-events: none;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) brightness(0.7);
  transform: scale(1.015);
  transition:
    filter 220ms ease,
    transform 500ms ease;
}

.gallery-thumb span {
  position: absolute;
  z-index: 2;
  right: 0.75rem;
  bottom: 0.58rem;
  left: 0.65rem;
  overflow: hidden;
  font-size: 0.74rem;
  font-weight: 700;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gallery-thumb:hover,
.gallery-thumb.is-active {
  transform: translateY(-3px);
  border-color: rgba(101, 216, 228, 0.58);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.gallery-thumb:hover img,
.gallery-thumb.is-active img {
  filter: saturate(1.04) brightness(0.94);
  transform: scale(1.05);
}

.gallery-thumb.is-active::before {
  position: absolute;
  z-index: 3;
  top: 0.65rem;
  left: 0.65rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
  content: "";
}

.section-shell {
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
}

.explorer {
  padding: 8.5rem 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.18;
  letter-spacing: -0.055em;
}

.section-heading > p {
  max-width: 400px;
  margin: 0 0 0.5rem;
  color: var(--muted);
}

.topic-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.topic-tab {
  position: relative;
  min-height: 5.2rem;
  padding: 1rem 1.2rem;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: right;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.topic-tab:last-child {
  border-left: 0;
}

.topic-tab span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--faint);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.topic-tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: var(--cyan);
  content: "";
  transition: width 220ms ease;
}

.topic-tab:hover,
.topic-tab.is-active {
  background: rgba(255, 255, 255, 0.025);
  color: white;
}

.topic-tab.is-active::after {
  width: 100%;
}

.story-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 570px;
  margin-top: 2.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(14, 35, 50, 0.92), rgba(8, 20, 32, 0.88));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.23);
}

.story-visual {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle at 42% 46%, rgba(101, 216, 228, 0.13), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size:
    auto,
    48px 48px,
    48px 48px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(101, 216, 228, 0.18);
  border-radius: 50%;
}

.orbit-one {
  top: 9%;
  right: 8%;
  width: 76%;
  aspect-ratio: 1;
}

.orbit-two {
  top: 26%;
  right: 25%;
  width: 43%;
  aspect-ratio: 1;
  border-color: rgba(255, 255, 255, 0.09);
}

.map-axis {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
}

.axis-x {
  top: 48%;
  right: 8%;
  width: 84%;
  height: 1px;
}

.axis-y {
  top: 10%;
  right: 50%;
  width: 1px;
  height: 80%;
}

.location-point {
  position: absolute;
  z-index: 2;
  width: 0.8rem;
  height: 0.8rem;
  border: 3px solid var(--panel);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow:
    0 0 0 1px var(--cyan),
    0 0 28px var(--cyan);
  transition:
    top 500ms ease,
    right 500ms ease;
}

.point-a {
  top: 42%;
  right: 37%;
}

.point-b {
  top: 53%;
  right: 61%;
  background: var(--amber);
  box-shadow:
    0 0 0 1px var(--amber),
    0 0 28px var(--amber);
}

.route-line {
  position: absolute;
  top: 48.7%;
  right: 38.5%;
  width: 23%;
  height: 1px;
  transform: rotate(11deg);
  transform-origin: right center;
  border-top: 1px dashed rgba(255, 255, 255, 0.46);
  transition:
    width 500ms ease,
    transform 500ms ease;
}

.visual-label {
  position: absolute;
  top: 2rem;
  right: 2rem;
  line-height: 1.35;
}

.visual-label small,
.visual-label strong {
  display: block;
}

.visual-label small {
  color: var(--muted);
  font-size: 0.72rem;
}

.visual-label strong {
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: clamp(1.8rem, 5vw, 4.2rem);
  font-weight: 750;
  letter-spacing: 0.04em;
}

.visual-distance {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  padding: 0.7rem 1rem;
  border-right: 2px solid var(--cyan);
  background: rgba(6, 16, 29, 0.4);
}

.visual-distance span,
.visual-distance small {
  display: block;
}

.visual-distance span {
  font-size: 1.4rem;
  font-weight: 750;
}

.visual-distance small {
  color: var(--muted);
  font-size: 0.67rem;
}

.story-copy {
  align-self: center;
  padding: clamp(2rem, 5vw, 5rem);
}

.story-index {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--faint);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

.story-index i {
  width: 2.5rem;
  height: 1px;
  background: var(--line);
}

.story-place {
  margin: 3rem 0 0.7rem;
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 700;
}

.story-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.18;
  letter-spacing: -0.055em;
}

.story-copy > p:not(.story-place) {
  max-width: 530px;
  margin: 1.6rem 0 0;
  color: var(--muted);
  line-height: 1.95;
}

.story-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.story-facts span {
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c7d0d8;
  font-size: 0.72rem;
}

.story-panel.is-changing .story-copy,
.story-panel.is-changing .visual-label,
.story-panel.is-changing .visual-distance {
  animation: content-change 420ms ease both;
}

.story-strip {
  padding: 8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent),
    #07121f;
}

.section-heading.compact h2 {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
}

.circle-action {
  display: grid;
  flex: 0 0 auto;
  width: 3.6rem;
  height: 3.6rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.circle-action:hover {
  transform: rotate(-8deg);
  background: var(--cyan-soft);
}

.circle-action svg {
  width: 1.2rem;
  height: 1.2rem;
}

.story-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.story-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.015);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.story-card:hover {
  transform: translateY(-6px);
  border-color: rgba(101, 216, 228, 0.25);
  background: rgba(101, 216, 228, 0.025);
}

.featured-card {
  background: linear-gradient(160deg, rgba(101, 216, 228, 0.08), rgba(255, 255, 255, 0.015));
}

.card-topline {
  display: flex;
  justify-content: space-between;
  color: var(--faint);
  font-size: 0.7rem;
}

.card-symbol {
  position: relative;
  display: grid;
  height: 155px;
  margin: 2rem 0 1rem;
  place-items: center;
}

.lake-symbol span {
  position: absolute;
  width: 42%;
  height: 38%;
  transform: rotate(-8deg);
  border: 1px solid rgba(101, 216, 228, 0.45);
  border-radius: 50% 42% 55% 40%;
}

.lake-symbol span:nth-child(2) {
  width: 58%;
  height: 52%;
  opacity: 0.55;
}

.lake-symbol span:nth-child(3) {
  width: 78%;
  height: 68%;
  opacity: 0.25;
}

.passage-symbol {
  overflow: hidden;
}

.passage-symbol::before,
.passage-symbol::after {
  position: absolute;
  width: 58%;
  height: 90%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 48% 52% 30% 70%;
  content: "";
}

.passage-symbol::before {
  right: -14%;
  transform: rotate(22deg);
}

.passage-symbol::after {
  left: -14%;
  transform: rotate(202deg);
}

.passage-symbol i {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
  animation: passage-move 3.6s linear infinite;
}

.passage-symbol i:nth-child(2) {
  animation-delay: -1.2s;
}

.passage-symbol i:nth-child(3) {
  animation-delay: -2.4s;
}

.peak-symbol svg {
  width: 92%;
  max-width: 220px;
  stroke: rgba(255, 255, 255, 0.28);
  stroke-width: 1;
}

.peak-symbol svg path:last-child {
  stroke: var(--cyan);
}

.story-card > p {
  margin: auto 0 0.6rem;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 700;
}

.story-card h3 {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 650;
  line-height: 1.7;
}

.story-card button {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding: 0.85rem 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: right;
}

.story-card button span {
  color: var(--cyan);
  transition: transform 180ms ease;
}

.story-card button:hover span {
  transform: translate(-3px, -3px);
}

.digital-store,
.services {
  padding: 9rem 0;
}

.digital-store {
  position: relative;
  border-top: 1px solid var(--line);
}

.store-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: 4rem;
  align-items: end;
  margin-bottom: 3.25rem;
}

.store-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 6.6vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.store-heading h2 em {
  color: var(--cyan);
  font-family: inherit;
  font-style: normal;
}

.store-intro {
  padding-bottom: 0.35rem;
}

.store-intro > p {
  margin: 1.1rem 0 0;
  color: var(--muted);
  line-height: 1.9;
}

.store-opening {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 750;
}

.store-opening i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
}

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

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: rgba(10, 25, 41, 0.78);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(101, 216, 228, 0.34);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.26);
}

.product-cover {
  position: relative;
  display: flex;
  min-height: 330px;
  padding: 1.5rem;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-color: #112c42;
  isolation: isolate;
}

.product-cover::before,
.product-cover::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.product-cover::before {
  inset: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.product-cover::after {
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(101, 216, 228, 0.34);
  border-radius: 50%;
  left: -6rem;
  bottom: -8rem;
  box-shadow: 0 0 0 2.8rem rgba(101, 216, 228, 0.035), 0 0 0 5.5rem rgba(101, 216, 228, 0.025);
}

.maps-cover {
  background: linear-gradient(145deg, #153147, #0a1b2c 70%);
}

.wallpaper-cover {
  background: linear-gradient(145deg, #352812, #101c29 70%);
}

.wallpaper-cover::after {
  border-color: rgba(241, 184, 91, 0.42);
  box-shadow: 0 0 0 2.8rem rgba(241, 184, 91, 0.04), 0 0 0 5.5rem rgba(241, 184, 91, 0.025);
}

.product-cover > span,
.product-cover > small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.product-cover strong {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.product-copy {
  display: flex;
  min-height: 260px;
  padding: 1.35rem;
  flex: 1;
  flex-direction: column;
}

.product-copy > small {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 750;
}

.product-copy h3 {
  margin: 0.35rem 0 0;
  font-size: 1.35rem;
}

.product-copy > p {
  margin: 0.85rem 0 1.25rem;
  color: var(--muted);
  line-height: 1.8;
}

.product-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.product-action > span {
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 720;
}

.product-action a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: white;
  font-size: 0.8rem;
  font-weight: 720;
}

.product-action a:hover,
.product-action a:focus-visible {
  color: var(--cyan);
}

.product-action b {
  font-weight: 400;
}

.store-note {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(101, 216, 228, 0.18);
  border-radius: 0.75rem;
  background: rgba(101, 216, 228, 0.045);
  color: var(--muted);
}

.store-note > span {
  color: var(--cyan);
}

.store-note p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.7;
}

.store-note strong {
  color: white;
}

.services-heading h2 {
  font-size: clamp(2.5rem, 5.2vw, 4.9rem);
}

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

.service-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: linear-gradient(155deg, rgba(13, 29, 45, 0.95), rgba(7, 18, 31, 0.9));
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(101, 216, 228, 0.38);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.service-card-featured {
  background:
    radial-gradient(circle at 22% 15%, rgba(101, 216, 228, 0.14), transparent 12rem),
    linear-gradient(155deg, rgba(14, 37, 53, 0.98), rgba(7, 18, 31, 0.92));
}

.service-number {
  position: absolute;
  top: 1.35rem;
  left: 1.35rem;
  color: var(--faint);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.service-icon {
  display: grid;
  width: 4.3rem;
  height: 4.3rem;
  margin: 0 0 5rem;
  place-items: center;
  border: 1px solid rgba(101, 216, 228, 0.25);
  border-radius: 50%;
  background: var(--cyan-soft);
  color: var(--cyan);
}

.service-icon svg {
  width: 2rem;
  height: 2rem;
}

.service-card > p:first-of-type {
  margin: 0 0 0.3rem;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 700;
}

.service-card h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  letter-spacing: -0.035em;
}

.service-card > p:last-child {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.9;
}

.collaboration-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(241, 184, 91, 0.22);
  border-radius: 1.15rem;
  background: linear-gradient(90deg, rgba(241, 184, 91, 0.07), rgba(255, 255, 255, 0.015));
}

.collaboration-banner small,
.collaboration-banner strong {
  display: block;
}

.collaboration-banner small {
  color: var(--amber);
  font-size: 0.75rem;
}

.collaboration-banner strong {
  margin-top: 0.2rem;
  font-size: 1.15rem;
}

.collaboration-banner > a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 1.8rem;
  min-height: 3.45rem;
  padding: 0.75rem 1.1rem;
  border-radius: 0.25rem;
  background: var(--amber);
  color: var(--night);
  font-weight: 760;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.collaboration-banner > a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(241, 184, 91, 0.17);
}

.manifesto {
  position: relative;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 5rem;
  padding: 10rem 0;
}

.manifesto-mark {
  position: absolute;
  z-index: -1;
  top: 4rem;
  right: -2rem;
  color: rgba(255, 255, 255, 0.024);
  font-size: min(40vw, 33rem);
  font-weight: 800;
  line-height: 1;
}

.manifesto-copy h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5.8vw, 5.5rem);
  line-height: 1.14;
  letter-spacing: -0.06em;
}

.manifesto-copy > p:last-child {
  max-width: 630px;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 2;
}

.manifesto-points {
  display: grid;
  align-self: end;
  gap: 0;
}

.manifesto-points > div {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  column-gap: 1rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}

.manifesto-points > div:last-child {
  border-bottom: 1px solid var(--line);
}

.manifesto-points span {
  grid-row: span 2;
  color: var(--cyan);
  font-size: 0.7rem;
}

.manifesto-points strong {
  font-size: 1rem;
}

.manifesto-points p {
  margin: 0.25rem 0 0;
  color: var(--faint);
  font-size: 0.86rem;
}

.social-hub {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 7vw, 7rem);
  padding: 1rem 0 9rem;
}

.social-intro h2 {
  margin: 0;
  font-size: clamp(2.55rem, 5vw, 4.8rem);
  line-height: 1.12;
  letter-spacing: -0.06em;
}

.social-intro h2 em {
  color: var(--cyan);
  font-style: normal;
}

.social-intro > p:last-child {
  max-width: 34rem;
  margin: 1.7rem 0 0;
  color: var(--muted);
}

.social-links {
  display: grid;
  gap: 1rem;
}

.social-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.15rem;
  min-height: 9.25rem;
  overflow: hidden;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  background: linear-gradient(135deg, rgba(16, 35, 52, 0.95), rgba(8, 20, 32, 0.92));
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.social-card::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4px;
  background: var(--cyan);
  content: "";
}

.youtube-card::before {
  background: #ff3b30;
}

.social-card:hover,
.social-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(101, 216, 228, 0.45);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
}

.social-icon {
  display: grid;
  width: 3.6rem;
  height: 3.6rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.youtube-card .social-icon {
  background: rgba(255, 59, 48, 0.16);
  color: #ff7067;
}

.social-icon svg {
  width: 1.55rem;
  height: 1.55rem;
}

.social-icon-note {
  color: var(--cyan);
  font-size: 1.85rem;
  font-weight: 800;
}

.social-copy small,
.social-copy strong,
.social-copy span {
  display: block;
}

.social-copy small {
  color: var(--faint);
  font-size: 0.76rem;
}

.social-copy strong {
  margin-top: 0.12rem;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.social-copy span {
  margin-top: 0.15rem;
  direction: ltr;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: right;
}

.social-arrow {
  color: var(--cyan);
  font-size: 1.35rem;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  overflow: hidden;
  padding: 6rem 1.5rem;
  text-align: center;
  isolation: isolate;
  background:
    radial-gradient(circle at center, rgba(101, 216, 228, 0.13), transparent 34%),
    #091726;
}

.final-grid {
  opacity: 0.16;
  mask-image: radial-gradient(circle, black, transparent 69%);
}

.final-orbit {
  position: absolute;
  z-index: -1;
  width: min(66vw, 650px);
  aspect-ratio: 1;
  border: 1px solid rgba(101, 216, 228, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(101, 216, 228, 0.02),
    0 0 0 160px rgba(101, 216, 228, 0.015);
}

.final-cta p {
  align-self: end;
  margin: 0;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 700;
}

.final-cta h2 {
  margin: 1rem 0 2rem;
  font-size: clamp(3rem, 7.5vw, 7rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

.final-cta button {
  min-width: 14rem;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
  padding: 2.5rem 0;
}

.footer-brand .brand-mark {
  width: 2.7rem;
  height: 2.7rem;
}

.footer-brand .brand-mark img {
  width: 116%;
  height: 116%;
}

footer > p {
  color: var(--faint);
  font-size: 0.8rem;
}

.footer-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 1.15rem;
}

.footer-actions a {
  justify-self: end;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-actions button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.8rem;
}

.footer-actions a:hover,
.footer-actions a:focus-visible,
.footer-actions button:hover,
.footer-actions button:focus-visible {
  color: white;
}

.footer-actions a:last-child span {
  margin-right: 0.4rem;
  color: var(--cyan);
}

.share-toast {
  position: fixed;
  z-index: 90;
  right: 50%;
  bottom: 1.25rem;
  visibility: hidden;
  margin: 0;
  padding: 0.7rem 1rem;
  transform: translate(50%, 1rem);
  border: 1px solid rgba(101, 216, 228, 0.35);
  border-radius: 999px;
  background: rgba(6, 16, 29, 0.94);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
  color: white;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.share-toast.is-visible {
  visibility: visible;
  transform: translate(50%, 0);
  opacity: 1;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

@keyframes gallery-reveal {
  0% {
    opacity: 0.25;
    transform: scale(1.045);
    filter: blur(3px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes hero-enter {
  from {
    scale: 1.08;
    filter: brightness(0.55);
  }
  to {
    scale: 1.02;
    filter: brightness(1);
  }
}

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

@keyframes pulse {
  0% {
    scale: 0.4;
    opacity: 0.9;
  }
  75%,
  100% {
    scale: 1.4;
    opacity: 0;
  }
}

@keyframes scroll-line {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(330%);
  }
}

@keyframes passage-move {
  0% {
    transform: translate(5rem, -3rem);
    opacity: 0;
  }
  20%,
  80% {
    opacity: 1;
  }
  100% {
    transform: translate(-5rem, 3rem);
    opacity: 0;
  }
}

@keyframes content-change {
  0% {
    transform: translateY(10px);
    opacity: 0.15;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    min-height: 880px;
  }

  .hero-image {
    object-position: 47% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 9, 17, 0.18), rgba(3, 9, 17, 0.76)),
      linear-gradient(0deg, var(--night), transparent 46%, rgba(3, 9, 17, 0.5));
  }

  .hero-note {
    display: none;
  }

  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .gallery-stage {
    width: min(100%, 430px);
  }

  .gallery-thumbs {
    grid-template-columns: repeat(9, 124px);
    grid-template-rows: 190px;
    overflow-x: auto;
    padding: 0.25rem 0 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-color: rgba(101, 216, 228, 0.38) transparent;
  }

  .gallery-thumb {
    scroll-snap-align: start;
  }

  .topic-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .topic-tab:nth-child(2) {
    border-left: 0;
  }

  .topic-tab:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .story-panel {
    grid-template-columns: 1fr;
  }

  .story-visual {
    min-height: 420px;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .story-cards {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .store-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

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

  .product-cover,
  .product-copy {
    min-height: 300px;
  }

  .service-card {
    min-height: 330px;
  }

  .story-card {
    min-height: 410px;
  }

  .manifesto {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 8rem 0;
  }

  .social-hub {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 620px) {
  .site-header,
  .section-shell,
  footer {
    width: min(calc(100% - 2rem), var(--max));
  }

  .site-header {
    padding: 1rem 0;
  }

  .random-header {
    width: 2.7rem;
    height: 2.7rem;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .random-header span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .hero {
    min-height: 830px;
  }

  .hero-content {
    width: calc(100% - 2rem);
    margin-top: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 17vw, 5rem);
  }

  .hero-lead {
    max-width: 94%;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.9rem;
    max-width: 18rem;
  }

  .text-action {
    align-self: start;
  }

  .hero-coordinate {
    display: none;
  }

  .scroll-cue {
    right: 1rem;
  }

  .explorer,
  .story-strip,
  .visual-archive,
  .digital-store,
  .services {
    padding: 6.5rem 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.2rem;
  }

  .section-heading > p {
    font-size: 0.92rem;
  }

  .topic-tab {
    min-height: 5.6rem;
    padding: 0.8rem;
    font-size: 0.85rem;
  }

  .story-panel {
    margin-top: 1.3rem;
    border-radius: 1rem;
  }

  .story-visual {
    min-height: 340px;
  }

  .visual-label {
    top: 1.2rem;
    right: 1.2rem;
  }

  .visual-distance {
    right: 1.2rem;
    bottom: 1.2rem;
  }

  .story-copy {
    padding: 2rem 1.3rem 2.4rem;
  }

  .story-place {
    margin-top: 2rem;
  }

  .story-copy h3 {
    font-size: 2.05rem;
  }

  .story-copy > p:not(.story-place) {
    font-size: 0.95rem;
  }

  .gallery-heading h2 {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .gallery-stage {
    border-radius: 1.25rem;
  }

  .gallery-stage::before {
    inset: 0.55rem;
    border-radius: 0.85rem;
  }

  .gallery-count {
    top: 1.1rem;
    left: 1rem;
  }

  .gallery-caption {
    right: 1.1rem;
    bottom: 1.15rem;
    max-width: calc(100% - 8rem);
  }

  .gallery-controls {
    bottom: 1.15rem;
    left: 1rem;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(9, 105px);
    grid-template-rows: 158px;
    margin-inline: -1rem;
    padding-inline: 1rem;
  }

  .story-card {
    min-height: 390px;
  }

  .service-icon {
    margin-bottom: 3.8rem;
  }

  .product-card {
    display: flex;
  }

  .product-cover {
    min-height: 300px;
  }

  .product-copy {
    min-height: 245px;
  }

  .store-note {
    align-items: flex-start;
  }

  .collaboration-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .collaboration-banner > a {
    justify-content: space-between;
    width: 100%;
  }

  .manifesto {
    padding: 7rem 0;
  }

  .manifesto-copy > p:last-child {
    font-size: 0.98rem;
  }

  .social-hub {
    padding: 0 0 6.5rem;
  }

  .social-card {
    min-height: 8.4rem;
    padding: 1.15rem;
  }

  .social-icon {
    width: 3rem;
    height: 3rem;
  }

  .final-cta {
    min-height: 580px;
  }

  .final-orbit {
    width: 95vw;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  footer > p {
    display: none;
  }

  .footer-actions {
    justify-self: start;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
