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

:root {
  --black:  #080808;
  --black2: #0f0f0f;
  --black3: #161616;
  --gold:   #c9a84c;
  --gold2:  #e8c96a;
  --gold3:  #8a6020;
  --gold4:  rgba(201,168,76,0.08);
  --cream:  #f0e6cc;
  --cream2: #b0a080;
  --muted:  #5a5040;
  --white:  #ffffff;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  cursor: none;
  overflow-x: hidden;
}

/* ── CUSTOM CURSOR ── */
#cursor {
  position: fixed; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
}
#cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.5); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, opacity 0.3s;
}
body:hover #cursor-ring { opacity: 1; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.8rem 4vw;
  transition: background 0.5s, padding 0.4s, backdrop-filter 0.5s;
}
nav.solid {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  padding: 1.1rem 4vw;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1rem; letter-spacing: 0.25em;
  color: var(--gold); text-decoration: none;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 3rem; list-style: none; }
.nav-links a {
  color: rgba(240,230,204,0.5); text-decoration: none;
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

/* ── SCROLL COUNTER ── */
.scroll-counter {
  position: fixed; bottom: 2.5rem; right: 3rem;
  font-size: 0.6rem; letter-spacing: 0.2em; color: var(--muted);
  z-index: 400; writing-mode: vertical-rl;
  display: flex; align-items: center; gap: 0.5rem;
}
.scroll-counter span { color: var(--gold); font-size: 0.8rem; }

/* ── SCROLL CUE ── */
.scroll-cue {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--muted); font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: drawLine 2s ease infinite;
}

/* ── FULL-SCREEN PANELS ── */
.panel {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 0 8vw;
}

/* ── DECORATIVE ELEMENTS ── */
.deco { position: absolute; pointer-events: none; user-select: none; }
.deco-circle {
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
}
.deco-text {
  font-family: 'Cinzel', serif;
  color: rgba(201,168,76,0.05);
  font-size: clamp(6rem,20vw,22rem);
  font-weight: 600; letter-spacing: -0.02em;
  line-height: 1; white-space: nowrap;
}
.deco-symbol {
  font-family: 'Cormorant Garamond', serif;
  color: rgba(201,168,76,0.15);
  font-size: 2rem;
}
.deco-line {
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.2), transparent);
  width: 1px;
}
.deco-dots { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.deco-dot  { width: 2px; height: 2px; border-radius: 50%; background: rgba(201,168,76,0.2); }

/* ── SECTION 0: HERO ── */
#s0 {
  background: radial-gradient(ellipse 100% 80% at 60% 40%, rgba(201,168,76,0.04) 0%, transparent 60%), var(--black);
  justify-content: flex-start;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; padding-top: 6rem; }
.hero-eyebrow {
  font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2.5rem;
  display: flex; align-items: center; gap: 1.2rem;
  opacity: 0; animation: fadeUp 1s 0.3s ease forwards;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem,7.5vw,8rem);
  font-weight: 200; line-height: 1.02;
  color: var(--white); margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 1s 0.5s ease forwards;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-h1 .line2 { display: block; padding-left: 8vw; }
.hero-sub {
  font-size: 0.82rem; line-height: 2; color: var(--cream2);
  max-width: 480px; margin-bottom: 3.5rem;
  opacity: 0; animation: fadeUp 1s 0.7s ease forwards;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 1.5rem;
  padding: 1.1rem 3rem;
  border: 1px solid var(--gold);
  color: var(--gold); text-decoration: none;
  font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase;
  transition: all 0.4s;
  opacity: 0; animation: fadeUp 1s 0.9s ease forwards;
}
.hero-cta:hover { background: var(--gold); color: var(--black); }
.hero-cta::after { content: '→'; transition: transform 0.3s; }
.hero-cta:hover::after { transform: translateX(6px); }

.hero-stats {
  position: absolute; right: 6vw; bottom: 8vh;
  display: flex; flex-direction: column; gap: 3rem;
  opacity: 0; animation: fadeUp 1s 1.1s ease forwards;
}
.h-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 200;
  color: var(--gold); line-height: 1; display: block;
}
.h-stat-label {
  font-size: 0.55rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
  margin-top: 0.3rem; display: block;
}

/* ── SECTION 1: BRIEFING ── */
#s1 { background: linear-gradient(160deg, var(--black) 0%, var(--black2) 100%); }
.brief-wrap { width: 100%; max-width: 1300px; }
.analysis-box {
  background: rgba(201,168,76,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  border-left: 3px solid var(--gold);
  padding: 2rem 2.5rem; margin: 2.5rem 0;
  position: relative; overflow: hidden;
}
.analysis-box::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
}
.analysis-label {
  font-size: 0.55rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.analysis-text { font-size: 0.85rem; line-height: 2; color: var(--cream2); }
.cursor-blink {
  display: inline-block; width: 2px; height: 0.85em;
  background: var(--gold); margin-left: 2px;
  vertical-align: middle; animation: blink 0.8s infinite;
}
.articles-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(201,168,76,0.08);
  margin-top: 1px;
}
.art-card {
  background: var(--black);
  padding: 1.5rem;
  text-decoration: none;
  display: flex; flex-direction: column; gap: 0.8rem;
  transition: background 0.2s; position: relative; overflow: hidden;
}
.art-card:hover { background: rgba(201,168,76,0.03); }
.art-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.4s;
}
.art-card:hover::after { width: 100%; }
.art-src-row { display: flex; align-items: center; gap: 0.6rem; }
.art-dot {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.48rem; font-weight: 600; flex-shrink: 0;
}
.dot-cnbc { background: rgba(255,100,50,0.1); color: #ff7050; border: 1px solid rgba(255,100,50,0.2); }
.dot-yf   { background: rgba(100,180,255,0.08); color: #64b4ff; border: 1px solid rgba(100,180,255,0.15); }
.dot-bb   { background: rgba(255,60,60,0.08); color: #ff6b6b; border: 1px solid rgba(255,60,60,0.12); }
.art-src-name { font-size: 0.55rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.art-headline { font-size: 0.75rem; color: var(--cream); line-height: 1.5; font-weight: 400; }
.art-tag {
  display: inline-block; padding: 0.12rem 0.5rem;
  font-size: 0.48rem; letter-spacing: 0.12em; text-transform: uppercase;
  align-self: flex-start;
}
.tag-geo     { background: rgba(201,168,76,0.08);   color: var(--gold);  border: 1px solid rgba(201,168,76,0.2); }
.tag-markets { background: rgba(92,186,125,0.08);   color: #6abf8a;      border: 1px solid rgba(92,186,125,0.18); }
.tag-tech    { background: rgba(100,180,255,0.08);  color: #64b4ff;      border: 1px solid rgba(100,180,255,0.15); }
.tag-macro   { background: rgba(255,160,64,0.08);   color: #ffa040;      border: 1px solid rgba(255,160,64,0.15); }
.art-arrow   { margin-top: auto; color: var(--muted); font-size: 0.75rem; transition: color 0.2s; }
.art-card:hover .art-arrow { color: var(--gold); }

/* ── SECTION 2: STOCKS ── */
#s2 {
  background: var(--black);
  flex-direction: column; align-items: flex-start;
  padding-top: 8rem; padding-bottom: 8rem;
}
.stocks-wrap { width: 100%; max-width: 1300px; }
.stocks-meta-row {
  display: flex; align-items: center;
  justify-content: space-between;
  margin: 2.5rem 0 1rem;
}
.live-badge {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.58rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: #5cba7d;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #5cba7d; animation: pulse 2s infinite;
}
.s-table { width: 100%; border-collapse: collapse; font-size: 0.8rem; min-width: 700px; }
.s-table th {
  padding: 1rem 1.2rem; text-align: center;
  font-size: 0.58rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.2); font-weight: 500;
}
.s-table th:first-child { text-align: left; }
.s-table td {
  padding: 1.1rem 1.2rem; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--cream2); vertical-align: middle;
  transition: background 0.2s;
}
.s-table td:first-child { text-align: left; }
.s-table tr:hover td { background: rgba(201,168,76,0.03); }
.s-ticker { font-family: 'Cinzel', serif; font-size: 0.9rem; color: var(--gold); letter-spacing: 0.05em; }
.s-name   { font-size: 0.78rem; color: var(--cream); font-weight: 400; }
.s-sector { font-size: 0.62rem; color: var(--muted); margin-top: 0.1rem; }
.conv-badge {
  display: inline-block; padding: 0.2rem 0.7rem;
  font-size: 0.52rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600;
  background: rgba(201,168,76,0.08); color: var(--gold);
  border: 1px solid rgba(201,168,76,0.25);
}
.up { color: #5cba7d; font-weight: 500; }
.dn { color: #d97070; font-weight: 500; }
.s-price { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--cream); font-weight: 400; }

/* ── SECTION 3: ABOUT ── */
#s3 { background: linear-gradient(160deg, var(--black) 0%, var(--black2) 100%); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8vw; align-items: center;
  width: 100%; max-width: 1300px;
}
.about-left .big-num {
  font-family: 'Cinzel', serif;
  font-size: clamp(5rem,14vw,14rem); font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.15);
  line-height: 1; margin-bottom: 1rem; display: block;
}

/* ── SECTION 4: PHILOSOPHY ── */
#s4 { background: var(--black2); }
.philosophy-wrap { width: 100%; }
.phil-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem,5vw,5.5rem);
  font-weight: 200; line-height: 1.1;
  color: var(--white); margin-bottom: 5rem;
}
.phil-title em { font-style: italic; color: var(--gold); }
.phil-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(201,168,76,0.12);
}
.phil-card {
  background: var(--black2);
  padding: 3rem 2rem; text-align: left;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.phil-card:hover { background: rgba(201,168,76,0.03); }
.phil-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.5s;
}
.phil-card:hover::after { transform: scaleX(1); }
.phil-num {
  font-family: 'Cinzel', serif;
  font-size: 3rem; font-weight: 400;
  color: rgba(201,168,76,0.12);
  line-height: 1; margin-bottom: 1.5rem; display: block;
}
.phil-t { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: var(--gold2); margin-bottom: 0.8rem; }
.phil-d { font-size: 0.75rem; line-height: 1.85; color: var(--cream2); }

/* ── SECTION 5: METHODOLOGY ── */
#s5 { background: var(--black); align-items: flex-start; padding-top: 8rem; padding-bottom: 8rem; }
.method-wrap { width: 100%; max-width: 1300px; }
.method-header { margin-bottom: 5rem; }
.method-steps {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(201,168,76,0.08);
}
.m-step {
  background: var(--black);
  padding: 2.5rem;
  display: flex; gap: 1.5rem;
  transition: background 0.3s;
  position: relative; overflow: hidden;
}
.m-step:hover { background: rgba(201,168,76,0.025); }
.m-step::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 2px; height: 0; background: var(--gold);
  transition: height 0.4s;
}
.m-step:hover::before { height: 100%; }
.m-step-num {
  font-family: 'Cinzel', serif;
  font-size: 2rem; font-weight: 400;
  color: rgba(201,168,76,0.15);
  flex-shrink: 0; line-height: 1; width: 3rem;
}
.m-step-t { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--gold2); margin-bottom: 0.6rem; }
.m-step-d { font-size: 0.75rem; line-height: 1.85; color: var(--cream2); }

/* ── SECTION 6: PERFORMANCE ── */
#s6 {
  background: linear-gradient(160deg, var(--black2) 0%, var(--black) 100%);
  flex-direction: column; align-items: flex-start;
  padding-top: 8rem; padding-bottom: 8rem;
}
.perf-wrap { width: 100%; max-width: 1300px; }
.perf-hero-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 1px; background: rgba(201,168,76,0.15);
  margin: 4rem 0;
}
.perf-hero-box {
  background: var(--black);
  padding: 3.5rem 2.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.perf-hero-box::before {
  content: ''; position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.perf-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem,5vw,5rem);
  font-weight: 200; color: var(--gold);
  line-height: 1; display: block;
}
.perf-lbl {
  font-size: 0.58rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
  margin-top: 0.8rem; display: block;
}
.perf-note { font-size: 0.68rem; color: var(--cream2); margin-top: 0.4rem; font-style: italic; }
.v-table { width: 100%; border-collapse: collapse; font-size: 0.8rem; }
.v-table th {
  padding: 1rem 1.5rem; text-align: center;
  font-size: 0.58rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.2); font-weight: 500;
}
.v-table th:first-child { text-align: left; }
.v-table td {
  padding: 1.1rem 1.5rem; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--cream2); transition: background 0.2s;
}
.v-table td:first-child { text-align: left; color: var(--cream); }
.v-table tr:hover td { background: rgba(201,168,76,0.03); }
.v-gold  { color: var(--gold2) !important; font-weight: 500 !important; }
.v-red   { color: #d97070 !important; }
.v-green { color: #6abf8a !important; }

/* ── SECTION 7: TEAM ── */
#s7 {
  background: var(--black2);
  flex-direction: column; align-items: flex-start;
  padding-top: 8rem; padding-bottom: 8rem;
}
.team-wrap { width: 100%; max-width: 1300px; }
.team-sub-label {
  font-size: 0.55rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold3);
  margin: 3.5rem 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.team-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(201,168,76,0.08); }
.team-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: rgba(201,168,76,0.08); max-width: 880px; }
.t-card {
  background: var(--black2);
  padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.t-card:hover { background: rgba(201,168,76,0.03); }
.t-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: width 0.4s;
}
.t-card:hover::after { width: 100%; }
.t-av {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--black3);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-size: 0.85rem;
  color: var(--gold); margin-bottom: 1.4rem;
  letter-spacing: 0.1em;
}
.t-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--white); margin-bottom: 0.25rem; }
.t-role { font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.t-exp  { font-size: 0.65rem; color: var(--muted); margin-bottom: 0.9rem; }
.t-bio  { font-size: 0.73rem; line-height: 1.85; color: var(--cream2); }

/* ── SECTION 8: CONTACT ── */
#s8 {
  background: var(--black);
  flex-direction: column; justify-content: center;
  text-align: center; min-height: 80vh;
}
.contact-wrap { max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.contact-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem,6vw,6rem);
  font-weight: 200; line-height: 1.08;
  color: var(--white); margin-bottom: 1.5rem;
}
.contact-h em { font-style: italic; color: var(--gold); }
.contact-sub { font-size: 0.82rem; line-height: 2; color: var(--cream2); margin-bottom: 3rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 3rem; }
.contact-item { display: flex; align-items: center; justify-content: center; gap: 1rem; font-size: 0.8rem; color: var(--cream2); }
.c-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.8rem; flex-shrink: 0;
}
.c-link { color: var(--cream2); text-decoration: none; transition: color 0.3s; }
.c-link:hover { color: var(--gold); }
.contact-cta {
  display: inline-flex; align-items: center; gap: 1.2rem;
  padding: 1.2rem 3.5rem;
  background: var(--gold); color: var(--black);
  text-decoration: none; font-size: 0.65rem;
  letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
  transition: all 0.3s;
}
.contact-cta:hover { background: var(--gold2); }

/* ── SHARED COMPONENTS ── */
.section-tag {
  font-size: 0.58rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-tag::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.section-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem,3.5vw,3.5rem);
  font-weight: 300; line-height: 1.15;
  color: var(--white); margin-bottom: 1.5rem;
}
.section-h em { font-style: italic; color: var(--gold); }
.section-p { font-size: 0.82rem; line-height: 2; color: var(--cream2); margin-bottom: 1.2rem; }
.gold-divider { width: 50px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); margin: 2rem 0; }
.pillar-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1rem; }
.pillar { border-left: 1px solid rgba(201,168,76,0.25); padding: 0.3rem 0 0.3rem 1.4rem; transition: border-color 0.3s; }
.pillar:hover { border-color: var(--gold); }
.pillar-t { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; color: var(--gold2); margin-bottom: 0.3rem; }
.pillar-d { font-size: 0.75rem; line-height: 1.8; color: var(--cream2); }

/* ── DISCLAIMER + FOOTER ── */
.disclaimer {
  background: rgba(5,5,5,0.98);
  border-top: 1px solid rgba(201,168,76,0.08);
  padding: 2.5rem 8vw;
  font-size: 0.62rem; line-height: 1.8;
  color: var(--muted); text-align: center;
}
footer {
  background: #050505;
  padding: 1.8rem 8vw;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(201,168,76,0.06);
}
.f-logo { font-family: 'Cinzel', serif; font-size: 0.9rem; letter-spacing: 0.2em; color: var(--gold); }
.f-copy { font-size: 0.58rem; color: var(--muted); letter-spacing: 0.12em; }

/* ── REVEAL ANIMATIONS ── */
.reveal       { opacity: 0; transform: translateY(28px);  transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left  { opacity: 0; transform: translateX(-28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right { opacity: 0; transform: translateX(28px);  transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translate(0); }

/* ── KEYFRAMES ── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(30px); }   to { opacity:1; transform:translateY(0); } }
@keyframes float    { 0%,100% { transform:translateX(-50%) translateY(0); } 50% { transform:translateX(-50%) translateY(-8px); } }
@keyframes drawLine { 0% { opacity:0; transform:scaleY(0); transform-origin:top; } 50% { opacity:1; transform:scaleY(1); } 100% { opacity:0; transform:scaleY(0); transform-origin:bottom; } }
@keyframes pulse    { 0%,100% { opacity:1; } 50% { opacity:0.3; } }
@keyframes blink    { 0%,100% { opacity:1; } 50% { opacity:0; } }
@keyframes rotateSlow { from { transform:rotate(0deg); }   to { transform:rotate(360deg); } }
@keyframes shimmer    { 0% { opacity:0.03; } 50% { opacity:0.07; } 100% { opacity:0.03; } }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid, .method-steps, .phil-grid,
  .team-grid-3, .team-grid-2, .articles-grid { grid-template-columns: 1fr; }
  .perf-hero-row { grid-template-columns: 1fr; }
  .hero-stats    { display: none; }
  .nav-links     { display: none; }
  .hero-h1       { font-size: clamp(2.8rem,10vw,5rem); }
}
