/* ============================================================
   PERIPHERAL — base stylesheet
   Tokens: black/charcoal base, chrome metallics, icy edge-glow accent
   Type: Orbitron (display) / Inter (body) / JetBrains Mono (utility)
   ============================================================ */

:root {
  /* --- color --- */
  --black:        #0a0a0b;
  --charcoal:      #131316;
  --panel:         #1b1b1f;
  --panel-line:    #2a2a2f;
  --off-white:     #edeeec;
  --paper:         #f5f5f3;
  --ink:           #0d0d0e;
  --ink-soft:      #52525a;

  --chrome-100:    #f5f5f6;
  --chrome-300:    #c9cad0;
  --chrome-500:    #8b8d94;
  --chrome-700:    #4c4d53;

  --edge:          #8fd6ff;   /* signature icy edge-glow accent, used sparingly */
  --edge-dim:      rgba(143, 214, 255, 0.14);

  /* --- type --- */
  --f-display: 'Orbitron', sans-serif;
  --f-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* --- layout --- */
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --maxw: 1320px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-hover: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, p, dl, dd, figure { margin: 0; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }

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

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

:focus-visible {
  outline: 2px solid var(--edge);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Ambient grain — very low opacity texture over everything */
.grain {
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Small utility label style, used across sections */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--chrome-500);
}
.eyebrow.center { text-align: center; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 500;
  padding: clamp(0.9rem, 2vw, 1.3rem) 0;
  transition: background-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background-color: rgba(10, 10, 11, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--panel-line);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
}
.nav__mark { width: 22px; height: 22px; object-fit: contain; }
.nav__links {
  display: none;
  gap: clamp(1.5rem, 2.5vw, 2.6rem);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.nav__links a { color: var(--chrome-300); position: relative; padding: 0.2rem 0; transition: color 0.25s; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1px;
  background: var(--edge); transition: right 0.3s var(--ease);
}
.nav__links a:hover { color: var(--off-white); }
.nav__links a:hover::after { right: 0; }

.nav__toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 34px; height: 34px; background: none; border: none; cursor: pointer;
  padding: 0;
}
.nav__toggle span {
  display: block; height: 1px; width: 100%; background: var(--off-white);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 400;
  background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.4rem;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.mobile-menu nav a {
  font-family: var(--f-display); font-size: 1.6rem; letter-spacing: 0.04em;
  color: var(--off-white);
}
.mobile-menu__eyebrow {
  position: absolute; bottom: 2.4rem;
  font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.16em;
  color: var(--chrome-700); text-transform: uppercase;
}

@media (min-width: 860px) {
  .nav__links { display: flex; }
  .nav__toggle { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 6rem var(--gutter) 4rem;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 18%, #17171a 0%, var(--black) 62%);
}

/* literal "peripheral vision" vignette: sharp centre, dark + soft edges */
.hero__vignette {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: radial-gradient(60% 55% at 50% 42%, transparent 0%, transparent 40%, rgba(10,10,11,0.55) 78%, var(--black) 100%);
}
.hero__glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(38% 30% at var(--gx, 50%) var(--gy, 40%), var(--edge-dim), transparent 70%);
  transition: background-position 0.2s linear;
}

.hero__eyebrow {
  position: relative; z-index: 2;
  font-family: var(--f-mono);
  font-size: clamp(0.65rem, 1.4vw, 0.78rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chrome-500);
  margin-bottom: clamp(1.6rem, 4vw, 2.6rem);
}

.hero__mark {
  position: relative; z-index: 2;
  width: min(60vw, 300px);
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  will-change: transform;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
}
.hero__mark img { width: 100%; }

.hero__word {
  position: relative; z-index: 2;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 9vw, 5.5rem);
  letter-spacing: 0.05em;
  line-height: 1;
  background: linear-gradient(180deg, var(--chrome-100) 0%, var(--chrome-300) 45%, var(--chrome-700) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero__sub {
  position: relative; z-index: 2;
  margin-top: clamp(1rem, 3vw, 1.6rem);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--chrome-300);
  max-width: 26ch;
}

.scroll-cue {
  position: absolute; bottom: clamp(1.4rem, 4vh, 2.6rem); left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-family: var(--f-mono); font-size: 0.65rem; letter-spacing: 0.22em;
  color: var(--chrome-700);
}
.scroll-cue__line {
  width: 1px; height: 34px; background: linear-gradient(var(--chrome-500), transparent);
  animation: cueMove 2.2s ease-in-out infinite;
}
@keyframes cueMove {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* reveal-on-load for hero text */
.reveal {
  opacity: 0; transform: translateY(14px);
  animation: revealUp 0.9s var(--ease) forwards;
}
.hero__eyebrow.reveal { animation-delay: 0.1s; }
.hero__word.reveal { animation-delay: 0.35s; }
.hero__sub.reveal { animation-delay: 0.55s; }
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SIGNATURE: focus-reveal
   Elements start soft/blurred (peripheral) and sharpen into focus
   as they cross the viewport's centre band — echoing the brand name.
   ============================================================ */
.focus-reveal {
  opacity: 0.28;
  filter: blur(5px);
  transform: translateY(18px);
  transition: opacity 0.85s var(--ease), filter 0.85s var(--ease), transform 0.85s var(--ease);
}
.focus-reveal.in-focus {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* ============================================================
   STORY
   ============================================================ */
.story {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(5rem, 12vw, 9rem) var(--gutter);
}
.story__inner { max-width: 760px; margin: 0 auto; }
.story__headline {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0.005em;
  margin: 0.9rem 0 1.6rem;
}
.story__body {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 58ch;
}
.story__grid {
  margin-top: clamp(3rem, 7vw, 4.5rem);
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
  padding-top: 2.4rem;
  border-top: 1px solid #dcdcd8;
}
.story__stat { display: flex; flex-direction: column; gap: 0.4rem; }
.story__stat-num {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
}
.story__stat-label {
  font-size: 0.88rem; color: var(--ink-soft); max-width: 26ch;
}
@media (min-width: 760px) {
  .story__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   THE FIT (product) — sticky media, scroll-past spec panel
   ============================================================ */
.fit {
  background: var(--charcoal);
  display: flex; flex-direction: column;
}
.fit__media {
  position: relative;
  background: linear-gradient(160deg, #1c1c20, var(--black));
  display: flex; align-items: center; justify-content: center;
  padding: clamp(3rem, 9vw, 4.5rem) var(--gutter);
  overflow: hidden;
}
.fit__media::before {
  /* studio spotlight — lifts the product's near-black backdrop off the section bg */
  content: "";
  position: absolute;
  width: min(120%, 780px); aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(196,199,206,0.22), rgba(196,199,206,0.06) 55%, transparent 75%);
  pointer-events: none;
}
.fit__media::after {
  /* grounding shadow */
  content: "";
  position: absolute;
  bottom: clamp(1.5rem, 6vw, 3rem);
  width: min(70%, 340px); height: 34px;
  background: radial-gradient(closest-side, rgba(0,0,0,0.55), transparent 75%);
  filter: blur(2px);
}
.fit__img {
  position: relative;
  width: min(100%, 460px);
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.6));
}
.fit__panel {
  padding: clamp(3rem, 8vw, 5rem) var(--gutter) clamp(4rem, 10vw, 6rem);
}
.fit__headline {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(1.9rem, 5vw, 2.9rem);
  line-height: 1.12;
  margin: 0.8rem 0 1.4rem;
  color: var(--off-white);
}
.fit__body {
  color: var(--chrome-300);
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  max-width: 52ch;
  line-height: 1.65;
  margin-bottom: clamp(2rem, 5vw, 2.6rem);
}

.spec-sheet {
  border-top: 1px solid var(--panel-line);
  max-width: 520px;
  margin-bottom: clamp(2.2rem, 5vw, 3rem);
}
.spec-sheet__row {
  display: flex; justify-content: space-between; gap: 1.2rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--panel-line);
  font-family: var(--f-mono);
  font-size: 0.85rem;
}
.spec-sheet__row dt {
  color: var(--chrome-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.spec-sheet__row dd { margin: 0; color: var(--off-white); text-align: right; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.95rem 2.1rem;
  border: 1px solid var(--chrome-500);
  border-radius: 999px;
  font-size: 0.85rem; letter-spacing: 0.05em;
  color: var(--off-white);
  position: relative; overflow: hidden;
  transition: border-color 0.3s, color 0.3s;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, var(--chrome-300), var(--chrome-100), var(--chrome-300));
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}
.btn:hover { color: var(--ink); border-color: var(--chrome-100); }
.btn:hover::before { transform: translateX(0); }

@media (min-width: 900px) {
  .fit { flex-direction: row; }
  .fit__media { width: 52%; position: sticky; top: 0; height: 100vh; }
  .fit__panel { width: 48%; display: flex; flex-direction: column; justify-content: center; }
  .fit--reverse { flex-direction: row-reverse; }
}

/* ============================================================
   VALUES
   ============================================================ */
.values {
  background: var(--black);
  padding: clamp(5rem, 12vw, 9rem) var(--gutter);
}
.values__headline {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  line-height: 1.15;
  max-width: 20ch; margin: 0.8rem auto clamp(3rem, 7vw, 4.5rem);
  color: var(--off-white);
}
.values__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: 1.4rem;
  grid-template-columns: 1fr;
}
.value-card {
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: 18px;
  padding: clamp(1.8rem, 4vw, 2.4rem);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: border-color 0.45s var(--ease-hover), transform 0.45s var(--ease-hover), box-shadow 0.45s var(--ease-hover);
}
.value-card:hover {
  border-color: var(--chrome-500);
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(0,0,0,0.32);
}
.value-card__icon {
  width: 40px; height: 40px; margin-bottom: 1.4rem;
  color: var(--edge);
}
.value-card__icon svg { width: 100%; height: 100%; }
.value-card h3 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 1.1rem; letter-spacing: 0.01em;
  margin-bottom: 0.7rem; color: var(--off-white);
}
.value-card p { color: var(--chrome-500); font-size: 0.92rem; line-height: 1.6; }

@media (min-width: 760px) {
  .values__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   FOOTER / CTA
   ============================================================ */
.footer {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(5rem, 14vw, 10rem) var(--gutter) clamp(2rem, 5vw, 3rem);
  text-align: center;
}
.footer__inner { max-width: 620px; margin: 0 auto; }
.footer__mark { width: 46px; margin: 0 auto 1.6rem; opacity: 0.9; }
.footer__headline {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(1.9rem, 5vw, 2.6rem);
}
.footer__body {
  margin: 1rem auto 2.2rem;
  color: var(--ink-soft); max-width: 40ch;
}
.footer__form {
  display: flex; gap: 0.7rem; max-width: 420px; margin: 0 auto;
  flex-direction: column;
}
.footer__form input {
  flex: 1;
  padding: 0.95rem 1.2rem;
  border: 1px solid #cfcfca;
  border-radius: 999px;
  background: #fff;
  font-size: 0.92rem;
}
.footer__form input:focus { outline: none; border-color: var(--ink); }
.footer__form button {
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font-size: 0.88rem; letter-spacing: 0.03em;
  transition: opacity 0.25s;
}
.footer__form button:hover { opacity: 0.78; }
.footer__note {
  min-height: 1.4em;
  margin-top: 0.9rem;
  font-family: var(--f-mono); font-size: 0.78rem;
  color: var(--ink-soft);
}
@media (min-width: 520px) {
  .footer__form { flex-direction: row; }
}

.footer__bottom {
  margin-top: clamp(3rem, 8vw, 5rem);
  padding-top: 1.6rem;
  border-top: 1px solid #dcdcd8;
  display: flex; flex-direction: column-reverse; gap: 1rem;
  align-items: center;
}
.footer__social { display: flex; gap: 1.4rem; font-size: 0.8rem; color: var(--ink-soft); }
.footer__social a:hover { color: var(--ink); }
.footer__copy { font-size: 0.76rem; color: var(--ink-soft); }

@media (min-width: 620px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; }
}

/* ============================================================
   PRODUCT MINI-HERO (used on secondary product pages, e.g. Polo)
   ============================================================ */
.mini-hero {
  position: relative;
  min-height: 62svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem var(--gutter) 4rem;
  overflow: hidden;
  background: radial-gradient(120% 90% at 50% 10%, #17171a 0%, var(--black) 62%);
}
.mini-hero__crumb {
  font-family: var(--f-mono);
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--chrome-700);
  margin-bottom: 1.4rem;
}
.mini-hero__crumb a { color: var(--chrome-500); transition: color 0.25s; }
.mini-hero__crumb a:hover { color: var(--off-white); }
.mini-hero__eyebrow {
  font-family: var(--f-mono);
  font-size: clamp(0.65rem, 1.4vw, 0.78rem);
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--chrome-500);
  margin-bottom: clamp(1.1rem, 3vw, 1.6rem);
}
.mini-hero__word {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(2.4rem, 8vw, 4.4rem);
  letter-spacing: 0.03em; line-height: 1.05;
  background: linear-gradient(180deg, var(--chrome-100) 0%, var(--chrome-300) 45%, var(--chrome-700) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.mini-hero__sub {
  margin-top: clamp(0.9rem, 3vw, 1.4rem);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--chrome-300);
  max-width: 34ch;
}

/* ============================================================
   TECH / FEATURE GRID
   ============================================================ */
.tech {
  background: var(--black);
  padding: clamp(4.5rem, 11vw, 8rem) var(--gutter);
}
.tech__head { max-width: 640px; margin: 0 auto clamp(3rem, 7vw, 4.5rem); }
.tech__headline {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(1.8rem, 4.6vw, 2.6rem);
  line-height: 1.15;
  margin: 0.8rem 0 0.8rem;
  color: var(--off-white);
}
.tech__sub { color: var(--chrome-500); font-size: 0.98rem; max-width: 48ch; margin: 0 auto; }
.tech__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .tech__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .tech__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .tech__grid { grid-template-columns: repeat(4, 1fr); } }

.tech-card {
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: 14px;
  padding: clamp(1.4rem, 3vw, 1.7rem);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: border-color 0.45s var(--ease-hover), transform 0.45s var(--ease-hover), box-shadow 0.45s var(--ease-hover);
}
.tech-card:hover {
  border-color: var(--chrome-500);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.3);
}
.tech-card__mark {
  width: 22px; height: 1px; background: var(--edge); margin-bottom: 1rem;
}
.tech-card h3 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 0.92rem; letter-spacing: 0.01em;
  margin-bottom: 0.55rem; color: var(--off-white);
}
.tech-card p { color: var(--chrome-500); font-size: 0.85rem; line-height: 1.55; }

/* ============================================================
   CROSS-SELL CTA (between products)
   ============================================================ */
.cross-cta {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(4rem, 10vw, 6.5rem) var(--gutter);
  text-align: center;
}
.cross-cta__headline {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin: 0.7rem 0 1.8rem;
}
.cross-cta .btn { border-color: var(--ink); color: var(--ink); }
.cross-cta .btn::before { background: linear-gradient(100deg, var(--ink), #333, var(--ink)); }
.cross-cta .btn:hover { color: var(--paper); }

/* ============================================================
   SOCIAL PREVIEW PAGE
   ============================================================ */
.social-view {
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem var(--gutter) 5rem;
  background: radial-gradient(120% 90% at 50% 10%, #17171a 0%, var(--black) 62%);
}
.social-view__eyebrow {
  font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--chrome-500);
  margin-bottom: 1rem;
}
.social-view__headline {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
  color: var(--off-white);
}
.social-view__frame {
  width: min(92vw, 512px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--panel-line);
  box-shadow: 0 40px 80px rgba(0,0,0,0.55);
}
.social-view__frame img { width: 100%; display: block; }
.social-view__caption {
  margin-top: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--chrome-500); font-size: 0.9rem; max-width: 46ch;
}
.social-view__back {
  margin-top: clamp(2rem, 5vw, 2.8rem);
  font-family: var(--f-mono); font-size: 0.75rem; letter-spacing: 0.1em;
  color: var(--chrome-300); text-transform: uppercase;
  border-bottom: 1px solid var(--chrome-700); padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.social-view__back:hover { color: var(--off-white); border-color: var(--off-white); }
