:root {
  --bg: #0B0F14;
  --bg-1: #0E1318;
  --bg-2: #11171D;
  --bg-3: #14202A;

  --primary: #216E5C;
  --primary-2: #1a5849;
  --accent: #2FAF8A;
  --accent-2: #28997a;

  --ink: #F5F1E8;
  --ink-2: #C5BFB0;
  --ink-3: #8B8780;
  --ink-4: #5A5852;

  --line: rgba(245, 241, 232, 0.08);
  --line-2: rgba(245, 241, 232, 0.14);
  --line-warm: rgba(47, 175, 138, 0.2);

  --display: 'Sora', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea { font-family: inherit; font-size: inherit; }

*:focus-visible {
  outline: 1.5px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

h1, h2, h3 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.04em;
}
h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.025em;
}
h3 {
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 600;
}

h2 em {
  font-style: normal;
  color: var(--ink-3);
  font-weight: 300;
  display: block;
  margin-top: 4px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0;
}
.eyebrow-sep {
  color: var(--ink-4);
  margin: 0 4px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

section {
  padding: clamp(80px, 12vw, 160px) 0;
}

.sec-head {
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 760px;
}
.sec-head .eyebrow { margin-bottom: 20px; }
.sec-head h2 { margin-bottom: 16px; }
.sec-head p {
  color: var(--ink-3);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 620px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 15, 20, 0.78);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand-mark {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.brand-mark img, .brand-mark svg { width: 40px; height: 40px; display: block; }
.brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}
.brand-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.94rem;
  letter-spacing: 0.18em;
  color: var(--ink);
}
.brand-tag {
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--ink-2);
  letter-spacing: 0.04em;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.nav-social a {
  font-family: var(--sans);
  font-size: 0.84rem;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.nav-social a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav-collapse { display: contents; }
.nav-toggle { display: none; }

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 11px;
    background: transparent;
    border: 1px solid var(--line-2);
    border-radius: 4px;
    cursor: pointer;
  }
  .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.2s;
  }
  .nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-collapse {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 8px clamp(20px, 5vw, 64px) 20px;
    background: rgba(11, 15, 20, 0.97);
    backdrop-filter: blur(18px) saturate(120%);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.4);
  }
  .nav.is-open .nav-collapse { display: flex; }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .nav-links a { padding: 15px 2px; font-size: 1rem; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }

  .nav-social { padding-top: 16px; }
  .nav-social a { border-bottom: none; font-size: 1rem; }
}

@media (max-width: 640px) { .brand-tag { display: none; } }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}
.btn-line {
  padding: 14px 24px;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 2px;
}
.btn-line:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(47, 175, 138, 0.25);
}
.btn-line span { transition: transform 0.25s; }
.btn-line:hover span { transform: translateX(3px); }

.btn-solid {
  padding: 18px 32px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.btn-solid:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245, 241, 232, 0.18);
}
.btn-solid span { transition: transform 0.25s; }
.btn-solid:hover span { transform: translateX(3px); }

.frame {
  position: relative;
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-1) 50%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: 2px;
}
.frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(33, 110, 92, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(47, 175, 138, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 2px, rgba(255,255,255,0.012) 2px, rgba(255,255,255,0.012) 4px);
  pointer-events: none;
  mix-blend-mode: overlay;
}
.frame-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(11, 15, 20, 0.6);
  padding: 4px 8px;
  border: 1px solid var(--line-warm);
  border-radius: 2px;
  z-index: 2;
}
.frame-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--line-2);
  z-index: 2;
}
.frame-corner-tl { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.frame-corner-tr { top: 8px; right: 8px; border-left: none; border-bottom: none; }
.frame-corner-bl { bottom: 8px; left: 8px; border-right: none; border-top: none; }
.frame-corner-br { bottom: 8px; right: 8px; border-left: none; border-top: none; }

.frame-meta {
  position: absolute;
  top: 18px;
  right: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-family: var(--sans);
  z-index: 2;
}
.frame-meta span:first-child {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  color: var(--ink);
}
.frame-meta span:last-child {
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.frame-portrait { aspect-ratio: 4 / 5; }
.frame-detail { aspect-ratio: 3 / 2; }
.frame-step { aspect-ratio: 4 / 3; }
.frame-aside { aspect-ratio: 4 / 5; }

.frame.has-img { background: var(--bg-2); }
.frame.has-img::before { display: none; }
.frame.has-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 10, 13, 0.55) 0%, transparent 38%);
  mix-blend-mode: normal;
  z-index: 1;
  pointer-events: none;
}
.frame.has-img picture {
  position: absolute;
  inset: 0;
  display: block;
}
.frame.has-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.frame.has-img .frame-meta span { text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6); }
.frame.has-img .frame-meta span:last-child { color: var(--ink-2); }
.frame.has-img .frame-corner { border-color: rgba(245, 241, 232, 0.45); }

.hero {
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(72px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(33, 110, 92, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
  position: relative;
  z-index: 1;
}
@media (max-width: 1000px) { .hero-grid { grid-template-columns: 1fr; gap: 56px; } }

.hero-text { max-width: 620px; }
.brand-bar {
  display: block;
  width: 56px;
  height: 4px;
  margin-bottom: 26px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}
.hero-text .eyebrow { margin-bottom: 36px; }

.hero-name {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -0.045em;
  margin-bottom: 14px;
  color: var(--ink);
}

.hero-line {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 400;
  color: var(--ink-2);
  letter-spacing: 0.005em;
  margin-bottom: 32px;
  line-height: 1.4;
}
.hero-pipe {
  color: var(--accent);
  margin: 0 8px;
  font-weight: 400;
}

.hero-sub {
  border-left: 1px solid var(--line-2);
  padding-left: 22px;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-sub p {
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 560px;
}

.hero-proof {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-proof li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--ink-2);
  letter-spacing: 0.005em;
}
.hero-proof strong { color: var(--ink); font-weight: 600; }
.hp-mark {
  width: 6px;
  height: 6px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.cta-note {
  font-size: 0.84rem;
  color: var(--ink-3);
  letter-spacing: 0.005em;
  font-style: italic;
}

.hero-grid.is-solo { grid-template-columns: 1fr; }
.hero-grid.is-solo .hero-text { max-width: 820px; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
  pointer-events: none;
}
.hs-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; height: 24px; }
  50% { opacity: 1; height: 36px; }
}

@media (max-width: 1000px) { .hero-scroll { display: none; } }

.perspective {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.thesis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}
@media (max-width: 720px) { .thesis { grid-template-columns: 1fr; } }
.thesis li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: 2px solid var(--primary);
  border-radius: 2px;
  transition: border-left-color 0.3s, transform 0.3s;
}
.thesis li:hover {
  border-left-color: var(--accent);
  transform: translateY(-2px);
}
.th-num {
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--ink-4);
  flex-shrink: 0;
  padding-top: 5px;
}
.thesis p {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.005em;
}

.bridge {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.4;
  color: var(--ink);
  max-width: 920px;
  margin: 0 auto 64px;
  text-align: center;
  letter-spacing: -0.01em;
  padding: 0 16px;
}

.risks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}
@media (max-width: 880px) { .risks { grid-template-columns: 1fr; } }

.risk {
  background: linear-gradient(160deg, rgba(33, 110, 92, 0.14) 0%, rgba(33, 110, 92, 0.04) 100%);
  border: 1px solid var(--line-warm);
  border-top: 2px solid var(--primary);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-top-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.risk:hover {
  border-top-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.risk-num {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 500;
}
.risk h3 {
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.risk p {
  font-size: 0.94rem;
  color: var(--ink-2);
  line-height: 1.6;
}

.closing {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-style: italic;
}
.cl-mark {
  color: var(--accent);
  font-style: normal;
  margin-right: 8px;
}

.process {
  background: var(--bg);
}

.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  margin-bottom: clamp(80px, 10vw, 120px);
}
.step:last-of-type { margin-bottom: 64px; }
.step-reverse { direction: rtl; }
.step-reverse > * { direction: ltr; }

@media (max-width: 980px) {
  .step, .step-reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
}

.step-text {
  position: relative;
  padding-left: 0;
}
.step-roman {
  display: block;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--accent);
  margin-bottom: 18px;
}

.step-text h3 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 24px;
}

.step-lead {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 28px;
  max-width: 560px;
}

.step-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.step-points li {
  position: relative;
  padding-left: 26px;
  font-size: 0.94rem;
  color: var(--ink-2);
  line-height: 1.55;
  letter-spacing: 0.005em;
}
.step-points li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--accent);
}

.process-foot {
  text-align: center;
  margin-top: clamp(40px, 6vw, 80px);
}

.direction {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.qa {
  display: flex;
  flex-direction: column;
}
.qa-item {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
.qa-item:last-child { border-bottom: 1px solid var(--line); }
@media (max-width: 760px) { .qa-item { grid-template-columns: 1fr; gap: 18px; } }

.qa-item dt {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.qa-key {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.qa-q {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.qa-item dd {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 620px;
  font-weight: 400;
}

.profile {
  background: var(--bg);
}

.rep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 720px) { .rep-grid { grid-template-columns: 1fr; } }

.rep {
  padding: 36px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-top: 2px solid var(--primary);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-top-color 0.3s, transform 0.3s, background 0.3s;
}
.rep:hover {
  background: var(--bg-2);
  border-top-color: var(--accent);
  transform: translateY(-2px);
}
.rep h3 {
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.rep p {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 520px;
}

.final {
  background: linear-gradient(155deg, var(--primary) 0%, #163f34 48%, var(--bg) 100%);
  border-top: 1px solid var(--line-warm);
  position: relative;
  overflow: hidden;
}
.final::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(47, 175, 138, 0.14) 0%, transparent 65%);
  pointer-events: none;
}
.final .eyebrow { color: #bfe9da; }
.final-text h2 em { color: #8fe3c8; }
.final-steps { border-color: rgba(245, 241, 232, 0.16); }
.final .btn-solid {
  background: var(--ink);
  color: #11342b;
}
.final .btn-solid:hover {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 8px 24px rgba(47, 175, 138, 0.3);
}

.final-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) { .final-grid { grid-template-columns: 1fr; } }

.final-text .eyebrow { margin-bottom: 24px; }
.final-text h2 {
  margin-bottom: 36px;
  max-width: 720px;
}
.final-text h2 em {
  font-style: normal;
  color: var(--accent);
  font-weight: 500;
  display: inline;
}

.final-steps {
  counter-reset: fstep;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 480px;
}
.final-steps li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: 1rem;
  color: var(--ink);
}
.final-steps li::before {
  counter-increment: fstep;
  content: counter(fstep, upper-roman) ".";
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  min-width: 28px;
  flex-shrink: 0;
}

.final-aside {
  max-width: 380px;
  justify-self: end;
}
@media (max-width: 980px) { .final-aside { justify-self: start; } }

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 56px 0 36px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 32px;
  align-items: center;
}
@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr; gap: 24px; text-align: left; }
}

.foot-brand { display: flex; align-items: center; gap: 14px; }
.foot-mark { display: grid; place-items: center; flex-shrink: 0; }
.foot-mark img, .foot-mark svg { width: 32px; height: 32px; display: block; }
.foot-name { display: flex; flex-direction: column; line-height: 1.1; gap: 3px; }
.foot-name strong {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  color: var(--ink);
}
.foot-name span {
  font-size: 0.74rem;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

.foot-contact a {
  font-size: 0.86rem;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 1px;
  letter-spacing: 0.005em;
  transition: color 0.2s, border-color 0.2s;
}
.foot-contact a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.foot-social {
  display: flex;
  gap: 18px;
}
.foot-social a {
  font-size: 0.84rem;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.foot-social a:hover { color: var(--accent); }

.foot-legal {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.78rem;
  color: var(--ink-3);
}
.foot-legal a {
  color: var(--ink-3);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.foot-legal a:hover { color: var(--ink); }
.foot-legal .sep { opacity: 0.4; }

.btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
  max-width: 520px;
}
.btn-row .btn { width: 100%; justify-content: center; text-align: center; }
@media (max-width: 480px) { .btn-row { grid-template-columns: 1fr; } }
.btn-ghost {
  padding: 14px 22px;
  background: transparent;
  color: var(--ink-2);
  border: 1px solid var(--line-2);
  border-radius: 2px;
}
.btn-ghost:hover {
  color: var(--ink);
  border-color: var(--ink-3);
  transform: translateY(-1px);
}
.btn-ghost span { transition: transform 0.25s; }
.btn-ghost:hover span { transform: translateX(-3px); }

.th-sub {
  display: block;
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-3);
  letter-spacing: 0;
}

.rep-year {
  font-family: var(--display);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
}

.partners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 720px) { .partners { grid-template-columns: 1fr; } }
.partner {
  padding: 36px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: 2px solid var(--primary);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-left-color 0.3s, transform 0.3s;
}
.partner:hover { border-left-color: var(--accent); transform: translateY(-2px); }
.partner-kicker {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.partner h3 { font-size: 1.5rem; color: var(--ink); }
.partner p { font-size: 0.96rem; line-height: 1.65; color: var(--ink-2); }
.partner-link {
  margin-top: 4px;
  font-size: 0.86rem;
  color: var(--accent);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--line-warm);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: border-color 0.2s, color 0.2s;
}
.partner-link:hover { color: var(--ink); border-bottom-color: var(--ink-3); }

.hero-athlete { padding-bottom: clamp(40px, 6vw, 72px); }
.hero-athlete-head { max-width: 820px; margin-bottom: clamp(32px, 4vw, 48px); }
.hero-athlete .hero-line { margin-bottom: 28px; }

.media-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}
.frame-wide { aspect-ratio: 3 / 2; width: 100%; }

.bio { max-width: 920px; }
.bio .eyebrow { display: block; margin-bottom: 20px; }
.bio-lead {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-consent {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 32px 24px 52px;
  border: 0;
  cursor: pointer;
  color: var(--ink-3);
  background:
    radial-gradient(ellipse at 50% 38%, rgba(33, 110, 92, 0.2) 0%, transparent 60%),
    linear-gradient(135deg, var(--bg-3), var(--bg-1));
  transition: background 0.3s;
}
.video-consent:hover {
  background:
    radial-gradient(ellipse at 50% 38%, rgba(47, 175, 138, 0.26) 0%, transparent 60%),
    linear-gradient(135deg, var(--bg-3), var(--bg-1));
}
.vc-play {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-warm);
  border-radius: 50%;
  color: var(--accent);
  font-size: 1.1rem;
  background: rgba(11, 15, 20, 0.5);
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.video-consent:hover .vc-play {
  transform: scale(1.06);
  border-color: var(--accent);
  background: rgba(47, 175, 138, 0.12);
}
.vc-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.vc-note {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 460px;
}
.vc-policy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 2;
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-3);
  pointer-events: none;
}
.vc-policy a {
  pointer-events: auto;
  color: var(--accent);
  border-bottom: 1px solid var(--line-warm);
  padding-bottom: 1px;
}
.vc-policy a:hover { color: var(--ink); }
@media (max-width: 600px) {
  .video-wrap:has(.video-consent) { aspect-ratio: auto; min-height: 260px; }
  .video-consent { padding: 22px 18px 46px; gap: 12px; }
  .vc-play { width: 50px; height: 50px; font-size: 1rem; }
  .vc-title { font-size: 1.02rem; }
  .vc-note { font-size: 0.74rem; line-height: 1.5; max-width: 320px; }
  .vc-policy { bottom: 14px; font-size: 0.73rem; }
}
.video-note { margin-top: 20px; font-size: 0.9rem; color: var(--ink-3); }
.video-note a { color: var(--accent); border-bottom: 1px solid var(--line-warm); padding-bottom: 1px; }
.video-note a:hover { color: var(--ink); }

.palmares { border-top: 1px solid var(--line); }
.palmares li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(20px, 4vw, 48px);
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.palmares li:hover { background: var(--bg-1); }
@media (max-width: 640px) { .palmares li { grid-template-columns: 1fr; gap: 8px; } }
.pm-year {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  padding-top: 2px;
}
.pm-body h3 { font-size: 1.4rem; color: var(--ink); margin-bottom: 6px; }
.pm-body p { font-size: 0.96rem; color: var(--ink-2); line-height: 1.6; }

.sponsor-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 6vw, 72px);
  padding: 24px 0;
}
.sponsor {
  display: inline-flex;
  align-items: center;
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.3s;
}
.sponsor:hover { opacity: 1; transform: translateY(-2px); }
.sponsor img { max-height: 36px; width: auto; filter: grayscale(1) brightness(1.7); }
.sponsor:hover img { filter: none; }
.sponsor-word {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}

.hero-action { position: relative; }
.hero-portrait {
  position: absolute;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  width: clamp(86px, 11vw, 132px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #0B0F14;
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.5);
  z-index: 3;
}
.hero-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(47, 175, 138, 0.5);
  pointer-events: none;
}
.hero-portrait picture { position: absolute; inset: 0; display: block; }
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }

.info-grid {
  margin-top: clamp(48px, 6vw, 84px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 52px) clamp(40px, 5vw, 72px);
  max-width: 980px;
}
@media (max-width: 760px) { .info-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .info-grid { grid-template-columns: 1fr; } }
.info-item {
  padding-top: 18px;
  border-top: 2px solid var(--primary);
  transition: border-top-color 0.3s;
}
.info-item:hover { border-top-color: var(--accent); }
.info-item dt {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 10px;
}
.info-item dd {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.moments { background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.timeline { border-top: 1px solid var(--line); }
.tl-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: clamp(20px, 4vw, 56px);
  padding: clamp(28px, 4vw, 42px) 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.tl-item:hover { background: var(--bg-2); }
@media (max-width: 600px) { .tl-item { grid-template-columns: 1fr; gap: 6px; } }

.tl-item.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s cubic-bezier(0.33, 0, 0.2, 1),
              transform 0.9s cubic-bezier(0.33, 0, 0.2, 1),
              background 0.3s;
}
.tl-item.reveal.in { opacity: 1; transform: translateY(0); }
.tl-item.reveal:nth-child(2) { transition-delay: 0.10s, 0.10s, 0s; }
.tl-item.reveal:nth-child(3) { transition-delay: 0.20s, 0.20s, 0s; }
.tl-item.reveal:nth-child(4) { transition-delay: 0.30s, 0.30s, 0s; }
.tl-year {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  padding-top: 4px;
}
.tl-body h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
  transition: color 0.25s;
}
.tl-item:hover .tl-body h3 { color: var(--accent); }
.tl-body p { font-size: 0.98rem; color: var(--ink-2); line-height: 1.65; max-width: 660px; }

.legal { background: var(--bg); }
.legal-content {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-2);
}
.legal-content h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 38px 0 12px;
}
.legal-content h3:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 14px; }
.legal-content ul { margin: 0 0 14px; }
.legal-content li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 7px;
  color: var(--ink-2);
}
.legal-content li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--display);
  font-weight: 600;
  color: var(--accent);
}
.legal-content a {
  color: var(--accent);
  border-bottom: 1px solid var(--line-warm);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.legal-content a:hover { color: var(--ink); border-bottom-color: var(--ink-3); }
.legal-address {
  margin: 4px 0 14px;
  padding: 20px 24px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-left: 2px solid var(--primary);
  border-radius: 2px;
  font-style: normal;
  line-height: 1.7;
  color: var(--ink);
}
.legal-updated {
  margin-top: 32px;
  font-size: 0.86rem;
  color: var(--ink-3);
  font-style: italic;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .tl-item.reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (min-width: 1280px) {
  body { zoom: 1.25; }
}
