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

:root {
  --navy: #0F172A;
  --navy-mid: #1E293B;
  --charcoal: #36454F;
  --slate: #475569;
  --muted: #64748B;
  --silver: #94A3B8;
  --light: #E2E8F0;
  --off-white: #F8FAFC;
  --white: #FFFFFF;
  --accent-green: #16A34A;
  --accent-orange: #E67E22;
  --accent-blue: #2563EB;
  --accent-teal: #0D9488;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', 'Calibri', sans-serif;
  --font-mono: 'JetBrains Mono', 'Consolas', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
.nav.scrolled { border-bottom-color: var(--light); box-shadow: 0 1px 20px rgba(15,23,42,0.06); }
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--navy);
  text-decoration: none; letter-spacing: -0.02em;
}
.nav-logo span { color: var(--charcoal); }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; color: var(--slate);
  text-decoration: none; letter-spacing: 0.03em; text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 700; }
.nav-links .cta-btn {
  background: var(--navy); color: var(--white); padding: 0.65rem 1.5rem;
  border-radius: 6px; font-size: 0.8rem; letter-spacing: 0.05em;
  transition: all 0.3s;
}
.nav-links .cta-btn:hover { background: var(--charcoal); color: var(--white); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); transition: 0.3s; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 8rem 3rem 4rem;
  background: var(--white);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -30%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(13,148,136,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: 1200px; margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.hero-left { }
.hero-label {
  font-family: var(--font-mono);
  font-size: 0.75rem; color: var(--slate);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.05; letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 0.5rem;
  opacity: 0; animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero-title .line-accent { color: var(--charcoal); }
.hero-subtitle {
  font-size: 1.05rem; color: var(--muted);
  max-width: 480px; line-height: 1.7; font-weight: 300;
  margin-top: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s ease 0.6s forwards;
}
.hero-actions {
  margin-top: 2.5rem; display: flex; gap: 1rem; align-items: center;
  opacity: 0; animation: fadeUp 0.8s ease 0.8s forwards;
}

/* ─── VS CODE EDITOR ─── */
.vscode-editor {
  background: #1E1E1E;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.05);
  opacity: 0; animation: fadeUp 0.8s ease 0.5s forwards;
  max-height: 520px;
}
.vscode-titlebar {
  background: #323233;
  padding: 0.5rem 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.vscode-dots { display: flex; gap: 6px; }
.vscode-dots span {
  width: 12px; height: 12px; border-radius: 50%;
}
.vscode-dots .red { background: #FF5F57; }
.vscode-dots .yellow { background: #FEBC2E; }
.vscode-dots .green { background: #28C840; }
.vscode-titlebar-text {
  font-family: var(--font-mono);
  font-size: 0.65rem; color: #999;
  margin-left: 0.75rem;
}
.vscode-tabs {
  background: #252526;
  display: flex; border-bottom: 1px solid #1E1E1E;
}
.vscode-tab {
  padding: 0.45rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem; color: #6E7681;
  border-right: 1px solid #1E1E1E;
  cursor: default;
}
.vscode-tab.active {
  background: #1E1E1E; color: #D4D4D4;
  border-top: 2px solid var(--accent-teal);
}
.vscode-body {
  padding: 1rem 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.65;
  overflow: hidden;
  position: relative;
}
.code-line {
  display: flex; padding: 0 1rem;
  white-space: nowrap;
}
.code-line:hover { background: rgba(255,255,255,0.03); }
.line-num {
  color: #505050; width: 35px;
  text-align: right; margin-right: 1.25rem;
  user-select: none; flex-shrink: 0;
}
.code-text { color: #D4D4D4; }
.code-text .kw { color: #C586C0; }
.code-text .cls { color: #4EC9B0; }
.code-text .fn { color: #DCDCAA; }
.code-text .str { color: #CE9178; }
.code-text .num { color: #B5CEA8; }
.code-text .cmt { color: #6A9955; }
.code-text .blue { color: #569CD6; }
.code-text .param { color: #9CDCFE; }
.code-text .op { color: #D4D4D4; }
.vscode-statusbar {
  background: #007ACC;
  padding: 0.25rem 1rem;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.6rem; color: #fff;
}
.vscode-cursor {
  display: inline-block; width: 2px; height: 1em;
  background: #AEAFAD;
  animation: blink 1s step-end infinite;
  vertical-align: text-bottom; margin-left: 1px;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
@keyframes typeIn {
  from { max-width: 0; } to { max-width: 100%; }
}
.type-line .code-text {
  overflow: hidden; display: inline-block;
  animation: typeIn 1.5s steps(40) forwards;
  max-width: 0;
}
.btn-primary {
  display: inline-block; padding: 0.9rem 2rem;
  background: var(--navy); color: var(--white);
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  text-decoration: none; border-radius: 6px; letter-spacing: 0.04em;
  transition: all 0.3s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--charcoal); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(15,23,42,0.15); }
.btn-secondary {
  display: inline-block; padding: 0.9rem 2rem;
  background: transparent; color: var(--navy);
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  text-decoration: none; border-radius: 6px; letter-spacing: 0.04em;
  border: 1.5px solid var(--light); transition: all 0.3s; cursor: pointer;
}
.btn-secondary:hover { border-color: var(--navy); }

/* ─── CODE STRIP ─── */
.code-strip {
  background: var(--navy); padding: 0; overflow: hidden;
  position: relative;
}
.code-scroll {
  display: flex; animation: scrollCode 30s linear infinite;
  white-space: nowrap;
}
.code-scroll span {
  font-family: var(--font-mono);
  font-size: 0.7rem; color: rgba(148,163,184,0.4);
  padding: 0.8rem 2rem; flex-shrink: 0;
}
.code-scroll .kw { color: rgba(86,156,214,0.5); }
.code-scroll .fn { color: rgba(220,220,170,0.5); }
.code-scroll .str { color: rgba(206,145,120,0.5); }

/* ─── STATS BAR ─── */
.stats-bar {
  padding: 4rem 3rem;
  background: var(--off-white);
  border-top: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
}
.stats-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 2rem; text-align: center;
}
.stat-item h3 {
  font-family: var(--font-display);
  font-size: 2.5rem; color: var(--navy);
  letter-spacing: -0.02em;
}
.stat-item p {
  font-size: 0.7rem; color: var(--silver);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-top: 0.4rem; font-weight: 600;
}

/* ─── SECTIONS ─── */
section { padding: 7rem 3rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem; color: var(--slate);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em; color: var(--navy);
  line-height: 1.15;
}
.section-desc {
  font-size: 1.05rem; color: var(--muted);
  line-height: 1.7; max-width: 620px; margin-top: 1rem; font-weight: 300;
}

/* ─── WHO WE ARE ─── */
#who-we-are { background: var(--white); }
.who-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; margin-top: 4rem; align-items: start;
}
.who-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--navy); margin-bottom: 1rem;
}
.who-text p {
  font-size: 0.95rem; color: var(--slate);
  line-height: 1.8; margin-bottom: 1.5rem;
}
.philosophy-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.phil-card {
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: 10px;
  border: 1px solid var(--light);
  transition: all 0.3s;
}
.phil-card:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(15,23,42,0.06); border-color: var(--navy); }
.phil-card .icon {
  width: 36px; height: 36px;
  background: var(--navy); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem; font-size: 1rem;
}
.phil-card h4 {
  font-size: 0.9rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.4rem;
}
.phil-card p {
  font-size: 0.8rem; color: var(--muted); line-height: 1.6;
}

/* ─── SERVICES ─── */
#services { background: var(--off-white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3.5rem;
}
.service-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 12px;
  transition: all 0.4s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--navy);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(15,23,42,0.08); }
.service-card .num {
  font-family: var(--font-mono);
  font-size: 0.7rem; color: var(--silver);
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem; color: var(--navy);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.88rem; color: var(--muted); line-height: 1.7;
}

/* ─── PERFORMANCE ─── */
#performance { background: var(--navy); color: var(--white); }
#performance .section-label { color: rgba(255,255,255,0.5); }
#performance .section-title { color: var(--white); }
#performance .section-desc { color: var(--silver); }
.perf-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem; margin-top: 3.5rem;
}
.perf-card {
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; text-align: center;
  transition: all 0.3s;
}
.perf-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-2px); }
.perf-card h3 {
  font-family: var(--font-display);
  font-size: 2.2rem; color: var(--white);
}
.perf-card h3 .teal { color: var(--white); }
.perf-card p {
  font-size: 0.7rem; color: var(--silver);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 0.3rem; font-weight: 600;
}
.perf-card .sub {
  font-size: 0.75rem; color: rgba(148,163,184,0.6);
  margin-top: 0.25rem; text-transform: none; letter-spacing: 0; font-weight: 400;
}
.perf-highlight {
  margin-top: 3rem; padding: 2.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: space-between;
}
.perf-highlight-text h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; color: var(--white);
}
.perf-highlight-text p { font-size: 0.9rem; color: var(--silver); margin-top: 0.5rem; }
.perf-highlight-stat {
  text-align: right;
}
.perf-highlight-stat .big {
  font-family: var(--font-display);
  font-size: 3rem; color: var(--white);
}
.perf-highlight-stat .label {
  font-size: 0.7rem; color: var(--silver); text-transform: uppercase; letter-spacing: 0.1em;
}

/* ─── FEE STRUCTURE ─── */
#fees { background: var(--white); }
.fee-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-top: 3.5rem;
}
.fee-card {
  padding: 3rem; border-radius: 14px;
  border: 1px solid var(--light);
  text-align: center; position: relative; overflow: hidden;
}
.fee-card.highlight {
  background: var(--navy); border-color: var(--navy);
}
.fee-card .fee-amount {
  font-family: var(--font-display);
  font-size: 4rem; letter-spacing: -0.02em;
  margin: 1rem 0 0.5rem;
}
.fee-card.highlight .fee-amount { color: var(--accent-teal); }
.fee-card .fee-label {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.12em; font-weight: 600;
}
.fee-card.highlight .fee-label { color: var(--silver); }
.fee-card .fee-desc {
  font-size: 0.9rem; line-height: 1.7; margin-top: 1rem;
}
.fee-card.highlight .fee-desc { color: var(--silver); }
.fee-card:not(.highlight) .fee-desc { color: var(--muted); }
.fee-card:not(.highlight) .fee-amount { color: var(--navy); }
.fee-card:not(.highlight) .fee-label { color: var(--muted); }

.fee-tagline {
  text-align: center; margin-top: 3rem;
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--navy);
}
.fee-tagline-sub {
  text-align: center; margin-top: 0.5rem;
  font-size: 0.95rem; color: var(--muted); max-width: 600px; margin-left: auto; margin-right: auto;
}

/* ─── FUND SECURITY ─── */
#security { background: var(--off-white); }
.security-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3.5rem;
}
.security-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 10px;
  transition: all 0.3s;
}
.security-card:hover { box-shadow: 0 8px 30px rgba(15,23,42,0.06); }
.security-card .icon-circle {
  width: 48px; height: 48px;
  background: var(--navy); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 1.2rem;
}
.security-card h3 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.6rem;
}
.security-card p {
  font-size: 0.88rem; color: var(--muted); line-height: 1.7;
}

/* ─── CONTACT ─── */
#contact { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; margin-top: 3.5rem;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--navy);
  margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-detail .icon-sm {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--off-white); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.contact-detail .label {
  font-size: 0.7rem; color: var(--silver);
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
}
.contact-detail .value {
  font-size: 0.95rem; color: var(--navy); margin-top: 0.2rem;
}
.contact-detail .value a { color: var(--navy); text-decoration: none; }
.contact-detail .value a:hover { color: var(--charcoal); }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem; color: var(--navy);
  border: 1.5px solid var(--light);
  border-radius: 8px; background: var(--off-white);
  transition: all 0.3s; outline: none;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(15,23,42,0.08);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .btn-primary { width: 100%; text-align: center; font-size: 0.9rem; }

/* ─── FOOTER ─── */
.footer {
  background: var(--navy); padding: 4rem 3rem 2rem;
  color: var(--silver);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.footer-brand .logo {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-brand .logo span { color: var(--charcoal); }
.footer-brand p { font-size: 0.85rem; color: var(--silver); max-width: 320px; line-height: 1.6; }
.footer-links { display: flex; gap: 3rem; }
.footer-links a {
  font-size: 0.82rem; color: var(--silver);
  text-decoration: none; transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between;
  font-size: 0.75rem; color: rgba(148,163,184,0.6);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollCode {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.reveal {
  opacity: 0; transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── MOBILE NAV ─── */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.2rem; font-weight: 600; color: var(--navy);
  text-decoration: none;
}
.mobile-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 2rem; background: none; border: none; cursor: pointer; color: var(--navy);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .perf-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 7rem 1.5rem 3rem; }
  section { padding: 4rem 1.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .who-grid, .contact-grid, .fee-grid { grid-template-columns: 1fr; gap: 2rem; }
  .philosophy-cards { grid-template-columns: 1fr; }
  .services-grid, .security-grid { grid-template-columns: 1fr; }
  .perf-grid { grid-template-columns: repeat(2, 1fr); }
  .perf-highlight { flex-direction: column; text-align: center; gap: 1.5rem; }
  .perf-highlight-stat { text-align: center; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
  .hero-title { font-size: 2.8rem; }
  .hero-content { grid-template-columns: 1fr; }
  .vscode-editor { display: none; }
}

/* ─── PAGE HERO (for inner pages) ─── */
.page-hero {
  padding: 10rem 3rem 5rem;
  background: var(--white);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -30%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(13,148,136,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1100px; margin: 0 auto;
}
.page-hero-label {
  font-family: var(--font-mono);
  font-size: 0.75rem; color: var(--slate);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s ease 0.2s forwards;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05; letter-spacing: -0.03em;
  color: var(--navy);
  opacity: 0; animation: fadeUp 0.8s ease 0.4s forwards;
}
.page-hero-desc {
  font-size: 1.1rem; color: var(--muted);
  max-width: 560px; line-height: 1.7; font-weight: 300;
  margin-top: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s ease 0.6s forwards;
}

/* ─── HOME TEASERS ─── */
.home-teasers {
  padding: 6rem 3rem;
  background: var(--off-white);
}
.home-teasers-inner {
  max-width: 1100px; margin: 0 auto;
}
.home-teasers h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy); margin-bottom: 0.75rem;
}
.home-teasers p.lead {
  font-size: 1rem; color: var(--muted);
  margin-bottom: 3rem; font-weight: 300;
}
.teaser-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.teaser-card {
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
}
.teaser-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(15,23,42,0.08); border-color: var(--navy); }
.teaser-card .t-num {
  font-family: var(--font-mono);
  font-size: 0.65rem; color: var(--silver); margin-bottom: 1rem;
}
.teaser-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; color: var(--navy); margin-bottom: 0.5rem;
}
.teaser-card p {
  font-size: 0.82rem; color: var(--muted); line-height: 1.6;
}
.teaser-card .t-link {
  display: inline-block; margin-top: 1.25rem;
  font-size: 0.78rem; font-weight: 600; color: var(--navy);
  letter-spacing: 0.04em; text-transform: uppercase;
}
@media (max-width: 1024px) { .teaser-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .teaser-grid { grid-template-columns: 1fr; } .home-teasers { padding: 4rem 1.5rem; } .page-hero { padding: 8rem 1.5rem 3rem; } }
