/* ============================================================
   agilEspresso v2 — Koyu minimal, atletik tipografi
   Codeway'den ilham: dev tipografi, marquee, card stack,
   magnetic etkileşim, scroll reveal. Az gradient, tek accent.
============================================================ */

:root.v2 {
  /* Renk — minimal, tek sıcak accent */
  --bg: #0a0907;
  --bg-2: #12100d;
  --surface: #1a1714;
  --surface-2: #221e1a;
  --fg: #f5f0e8;
  --fg-2: #b8b0a4;
  --fg-3: #78706a;
  --fg-4: #48423d;
  --line: rgba(245, 240, 232, 0.08);
  --line-2: rgba(245, 240, 232, 0.14);
  --accent: #ff7a3d; /* espresso turuncusu — daha doygun, tek ton */
  --accent-2: #ffb380;
  --accent-deep: #c4521f;

  /* Tipografi */
  --f-display: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-serif: 'Instrument Serif', Georgia, serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html.v2, html.v2 body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-display);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}
html.v2 { scroll-behavior: smooth; }
html.v2 body { overflow-x: hidden; }

/* Mobil: varsayılan cursor geri gelsin */
@media (hover: none), (pointer: coarse) {
  html.v2, html.v2 body { cursor: auto; }
  .v2-cursor { display: none !important; }
}

html.v2 a { color: inherit; text-decoration: none; }
html.v2 button { font-family: inherit; cursor: none; border: 0; background: none; color: inherit; }
html.v2 ::selection { background: var(--accent); color: var(--bg); }

.v2-mono {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* ===== GRAIN — ince texture ===== */
.v2-grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.4;
  mix-blend-mode: overlay;
}

/* ===== MAGNETIC CURSOR ===== */
.v2-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  background: var(--fg);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.18s var(--ease), width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.v2-cursor.hover {
  width: 52px; height: 52px;
  background: var(--accent);
  mix-blend-mode: normal;
}
.v2-cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1px solid var(--fg-3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, width 0.25s var(--ease), height 0.25s var(--ease);
}
.v2-cursor-ring.hide { opacity: 0; }

/* ===== ROOT + TYPO BASE ===== */
.v2-root {
  position: relative;
  z-index: 2;
  min-height: 100vh;
}

/* ===== NAV ===== */
.v2-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform-origin: left;
  z-index: 1000;
  box-shadow: 0 0 20px var(--accent);
}

.v2-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  mix-blend-mode: difference;
  pointer-events: none;
}
.v2-nav > * { pointer-events: auto; }

.v2-logo {
  font-family: var(--f-serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.v2-logo-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: v2-pulse 2s ease-in-out infinite;
}
@keyframes v2-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.v2-nav-links {
  display: flex;
  gap: 36px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: #fff;
}
.v2-nav-links a {
  position: relative;
  padding: 4px 0;
  transition: opacity 0.2s;
}
.v2-nav-links a:hover { opacity: 0.6; }
.v2-nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.v2-nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.v2-nav-cta {
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  padding: 10px 18px;
  border: 1px solid #fff;
  border-radius: 100px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.v2-nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  z-index: -1;
}
.v2-nav-cta:hover { color: var(--bg); }
.v2-nav-cta:hover::before { transform: translateY(0); }

/* ===== HERO (split) ===== */
.v2-hero {
  min-height: 100vh;
  padding: 140px 40px 60px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}

.v2-hero-left {
  position: relative;
}
.v2-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.v2-hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: v2-pulse 2s ease-in-out infinite;
}

.v2-hero-title {
  font-family: var(--f-display);
  font-size: clamp(68px, 10.5vw, 180px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 0 0 40px;
  color: var(--fg);
}
.v2-hero-title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.025em;
  padding: 0.12em 0.15em 0.12em 0.08em;
  margin: 0 -0.06em;
  display: inline-block;
  line-height: 1.05;
  overflow: visible;
}
.v2-hero-title .v2-line {
  display: block;
  overflow: visible;
  padding: 0.05em 0 0.1em;
}
.v2-hero-title .v2-line-inner {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: v2-reveal-up 0.9s var(--ease-out) forwards;
}
.v2-hero-title .v2-line:nth-child(2) .v2-line-inner { animation-delay: 0.08s; }
.v2-hero-title .v2-line:nth-child(3) .v2-line-inner { animation-delay: 0.16s; }

@keyframes v2-reveal-up {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.v2-hero-desc {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 420px;
  margin: 0 0 56px;
  text-wrap: pretty;
}

.v2-hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.v2-btn {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  padding: 18px 28px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.v2-btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.v2-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--fg);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
  z-index: -1;
}
.v2-btn-primary:hover::before { transform: translateY(0); }

.v2-btn-ghost {
  color: var(--fg);
  border: 1px solid var(--line-2);
}
.v2-btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.v2-btn-arrow {
  transition: transform 0.3s var(--ease);
}
.v2-btn:hover .v2-btn-arrow {
  transform: translateX(4px);
}

/* Hero right — animated cup */
.v2-hero-right {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-cup-stage {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
  will-change: transform;
}

.v2-cup-svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 40px 80px rgba(255, 122, 61, 0.25));
}

.v2-cup-orbit {
  position: absolute;
  inset: -8%;
  border: 1px dashed var(--line-2);
  border-radius: 50%;
  animation: v2-orbit-rotate 40s linear infinite;
}
.v2-cup-orbit-2 {
  position: absolute;
  inset: -16%;
  border: 1px solid var(--line);
  border-radius: 50%;
  animation: v2-orbit-rotate 60s linear infinite reverse;
}
@keyframes v2-orbit-rotate { to { transform: rotate(360deg); } }

.v2-cup-label {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--fg-3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.v2-cup-label-top { top: -4%; left: 50%; transform: translateX(-50%); }
.v2-cup-label-right { top: 50%; right: -8%; transform: translateY(-50%) rotate(90deg); transform-origin: center; }
.v2-cup-label-bottom { bottom: -4%; left: 50%; transform: translateX(-50%); }
.v2-cup-label-left { top: 50%; left: -8%; transform: translateY(-50%) rotate(-90deg); transform-origin: center; }

/* Hero scroll hint */
.v2-hero-scroll {
  position: absolute;
  bottom: 40px; left: 40px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.v2-hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--fg-3));
  position: relative;
  overflow: hidden;
}
.v2-hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 40%;
  background: var(--accent);
  animation: v2-scroll-bob 2.2s ease-in-out infinite;
}
@keyframes v2-scroll-bob {
  0% { top: -40%; }
  100% { top: 100%; }
}

/* ===== MARQUEE ===== */
.v2-marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.v2-marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: v2-marquee 40s linear infinite;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.v2-marquee-track > span:nth-child(even) {
  color: var(--accent);
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 300;
}
@keyframes v2-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SHOTS — Card stack with overlap ===== */
.v2-section {
  padding: 140px 40px;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}
.v2-section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.v2-section-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.v2-section-label::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--accent);
}
.v2-section-title {
  font-family: var(--f-display);
  font-size: clamp(44px, 5.5vw, 92px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0;
}
.v2-section-title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.v2-section-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 540px;
  margin: 0;
}

.v2-shots-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.v2-shot-row {
  display: grid;
  grid-template-columns: 100px 1fr 240px 180px 60px;
  align-items: center;
  gap: 32px;
  padding: 32px 40px;
  border-top: 1px solid var(--line);
  cursor: none;
  transition: padding 0.5s var(--ease), background 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.v2-shot-row:last-child { border-bottom: 1px solid var(--line); }
.v2-shot-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 61, 0.04) 40%, rgba(255, 122, 61, 0.08));
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.v2-shot-row:hover {
  padding: 40px 40px;
  background: var(--bg-2);
}
.v2-shot-row:hover::before { opacity: 1; }

.v2-shot-num {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--fg-3);
  letter-spacing: 0.05em;
}
.v2-shot-title {
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  transition: color 0.4s var(--ease);
}
.v2-shot-row:hover .v2-shot-title { color: var(--accent); }
.v2-shot-cat {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.v2-shot-meta {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--fg-2);
  display: flex;
  gap: 14px;
  align-items: center;
}
.v2-shot-strength {
  display: inline-flex;
  gap: 3px;
}
.v2-shot-strength span {
  width: 4px; height: 14px;
  background: var(--fg-4);
  border-radius: 1px;
}
.v2-shot-strength span.on {
  background: var(--accent);
}
.v2-shot-arrow {
  display: inline-flex;
  justify-content: flex-end;
  color: var(--fg-3);
  transition: transform 0.4s var(--ease), color 0.4s var(--ease);
}
.v2-shot-row:hover .v2-shot-arrow {
  transform: translateX(8px);
  color: var(--accent);
}

/* Card stack alt variant — scroll reveal */
.v2-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.v2-reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MATURITY bleed ===== */
.v2-maturity-bleed {
  margin: 80px 0;
  padding: 120px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.v2-maturity-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.v2-maturity-giant {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(80px, 16vw, 280px);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--fg);
  margin: 0;
  pointer-events: none;
}
.v2-maturity-giant em {
  color: var(--accent);
  font-style: italic;
}
.v2-maturity-right h3 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--fg);
  font-family: var(--f-display);
}
.v2-maturity-right p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0 0 40px;
}

.v2-maturity-bg-letters {
  position: absolute;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(200px, 30vw, 540px);
  color: rgba(255, 122, 61, 0.04);
  right: -5%;
  bottom: -20%;
  font-weight: 400;
  pointer-events: none;
  line-height: 0.8;
  z-index: 1;
}

/* ===== MANIFESTO ===== */
.v2-manifesto {
  padding: 140px 40px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: left;
}
.v2-manifesto-body {
  font-family: var(--f-display);
  font-size: clamp(32px, 3.6vw, 60px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
  color: var(--fg);
}
.v2-manifesto-body em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.v2-manifesto-body .v2-muted {
  color: var(--fg-3);
}
.v2-manifesto-sig {
  margin-top: 60px;
  display: flex;
  gap: 16px;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.v2-manifesto-sig-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* ===== SUBSCRIBE ===== */
.v2-subscribe {
  padding: 140px 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.v2-subscribe h2 {
  font-family: var(--f-display);
  font-size: clamp(48px, 7vw, 120px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0 0 40px;
}
.v2-subscribe h2 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.v2-subscribe-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 40px auto 0;
  padding: 8px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  transition: border-color 0.3s;
}
.v2-subscribe-form:focus-within {
  border-color: var(--accent);
}
.v2-subscribe-form input {
  flex: 1;
  background: none;
  border: 0;
  color: var(--fg);
  padding: 14px 20px;
  font-family: var(--f-display);
  font-size: 15px;
  outline: none;
  cursor: none;
}
.v2-subscribe-form input::placeholder { color: var(--fg-3); }
.v2-subscribe-form button {
  padding: 14px 28px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  transition: background 0.3s;
}
.v2-subscribe-form button:hover { background: var(--fg); }
.v2-subscribe-note {
  margin-top: 28px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.08em;
}

/* ===== ARCHIVE ===== */
.v2-archive-list {
  border-top: 1px solid var(--line);
}
.v2-archive-row {
  display: grid;
  grid-template-columns: 80px 1fr 200px 100px;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  transition: padding 0.3s var(--ease), color 0.3s var(--ease);
  cursor: none;
}
.v2-archive-row:hover {
  padding-left: 20px;
  color: var(--accent);
}
.v2-archive-num, .v2-archive-cat, .v2-archive-date {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.v2-archive-title {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.015em;
}

/* ===== FOOTER ===== */
.v2-footer {
  margin-top: 100px;
  padding: 80px 40px 40px;
  border-top: 1px solid var(--line);
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
.v2-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.v2-footer-brand {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(60px, 9vw, 140px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin: 0;
}
.v2-footer-brand em { color: var(--accent); }
.v2-footer-col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-weight: 500;
}
.v2-footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 15px;
  color: var(--fg-2);
  transition: color 0.2s;
}
.v2-footer-col a:hover { color: var(--accent); }

.v2-footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.05em;
}

/* ===== MODAL ===== */
.v2-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 7, 0.85);
  backdrop-filter: blur(12px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: v2-fade 0.3s var(--ease);
}
@keyframes v2-fade { from { opacity: 0; } to { opacity: 1; } }
.v2-modal {
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 60px;
  position: relative;
  animation: v2-slide-up 0.5s var(--ease-out);
}
@keyframes v2-slide-up { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.v2-modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  color: var(--fg-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.v2-modal-close:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(90deg);
}
.v2-modal-eyebrow {
  display: flex;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.v2-modal-title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
}
.v2-modal-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-2);
}
.v2-modal-body p { margin: 0 0 20px; }
.v2-modal-body h4 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--fg);
  margin: 32px 0 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .v2-hero {
    grid-template-columns: 1fr;
    padding: 120px 24px 60px;
    gap: 40px;
  }
  .v2-hero-right {
    max-height: 340px;
  }
  .v2-nav { padding: 16px 24px; }
  .v2-nav-links { display: none; }
  .v2-section { padding: 80px 24px; }
  .v2-section-head { grid-template-columns: 1fr; gap: 24px; }
  .v2-shot-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 20px !important;
  }
  .v2-archive-row { grid-template-columns: 60px 1fr 80px; gap: 12px; }
  .v2-archive-row .v2-archive-date { display: none; }
  .v2-footer-top { grid-template-columns: 1fr; gap: 32px; }
  .v2-maturity-inner { grid-template-columns: 1fr; gap: 40px; }
  .v2-modal { padding: 32px 24px; }
  .v2-hero-scroll { display: none; }
}
