/* ===================================================
   EnviroChill — Arctic Ice Theme
   Cooler Solutions for a Warming Planet
   =================================================== */

/* Fonts loaded via <link> in each HTML head for non-blocking render */

/* ── Variables ─────────────────────────────────── */
:root {
  --bg:           #020c18;
  --bg-2:         #031525;
  --bg-card:      rgba(5, 20, 45, 0.82);
  --bg-card-2:    rgba(8, 30, 65, 0.70);
  --ice:          #c6e9fa;
  --ice-dim:      #6ea8cc;
  --cyan:         #00d4ff;
  --cyan-bright:  #00f0ff;
  --cyan-glow:    rgba(0, 212, 255, 0.22);
  --cyan-glow-2:  rgba(0, 212, 255, 0.08);
  --navy:         #0a2040;
  --white:        #eef8ff;
  --text:         #cce6f8;
  --text-muted:   #5d99bb;
  --border:       rgba(0, 212, 255, 0.18);
  --border-bright:rgba(0, 212, 255, 0.45);
  --gold:         #ffc848;
  --success:      #22e87c;
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Rajdhani', sans-serif;
  --font-body:    'Outfit', sans-serif;
  --radius:       14px;
  --radius-sm:    8px;
  --shadow:       0 8px 40px rgba(0,0,0,0.55);
  --shadow-glow:  0 0 40px rgba(0, 212, 255, 0.18);
  --nav-h:        70px;
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--cyan); text-decoration: none; transition: color .2s; }
a:hover { color: var(--cyan-bright); }
ul { list-style: none; }

/* ── Utility ────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 32px; }
.text-center { text-align: center; }
.text-cyan { color: var(--cyan); }
.text-ice { color: var(--ice); }
.text-white { color: var(--white); }
.text-gold { color: var(--gold); }
.sr-only { position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0); }
.section { padding: 100px 0; }
.section--sm { padding: 64px 0; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Frost overlay decorations ──────────────────── */
.frost-line {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: .35;
}
.frost-orb {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,.14) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Navigation ─────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(2, 10, 24, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  transition: background .3s;
}
.nav.scrolled { background: rgba(2, 10, 24, 0.97); }
.nav__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__logo img { height: 46px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
  font-family: var(--font-heading); font-weight: 600; font-size: .9rem;
  letter-spacing: .06em; color: var(--ice-dim); text-transform: uppercase;
  padding: 8px 14px; border-radius: var(--radius-sm); display: block;
  transition: color .2s, background .2s;
}
.nav__link:hover, .nav__link.active { color: var(--white); background: var(--cyan-glow-2); }
.nav__link.active { color: var(--cyan); }
/* Dropdown */
.nav__dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 200px;
  background: rgba(3, 14, 30, 0.97);
  border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .22s; backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.nav__item:hover .nav__dropdown { opacity: 1; visibility: visible; transform: none; }
.nav__dropdown a {
  display: block; padding: 10px 18px;
  font-family: var(--font-heading); font-weight: 500; font-size: .87rem;
  color: var(--ice-dim); letter-spacing: .04em;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .2s, background .2s;
}
.nav__dropdown a:last-child { border-bottom: none; }
.nav__dropdown a:hover { color: var(--cyan); background: var(--cyan-glow-2); }
.nav__cta {
  font-family: var(--font-heading); font-weight: 700; font-size: .88rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 9px 22px; border-radius: 50px;
  background: linear-gradient(135deg, #0090c8, #00d4ff);
  color: #000e1c; border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 20px rgba(0,212,255,.25);
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 0 32px rgba(0,212,255,.4); color: #000e1c; }
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 6px; background: none; border: none;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--ice); border-radius: 2px; transition: all .25s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh; display: flex; align-items: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #0a2a4a 0%, var(--bg) 70%);
}
.hero__canvas { position: absolute; inset: 0; pointer-events: none; }
.hero__content { position: relative; z-index: 2; padding-top: var(--nav-h); }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-weight: 600; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--cyan);
  background: var(--cyan-glow-2); border: 1px solid var(--border);
  padding: 6px 16px; border-radius: 50px; margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
.hero__title {
  font-family: var(--font-display); font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: .95; letter-spacing: .02em;
  color: var(--white); margin-bottom: 24px;
}
.hero__title .highlight {
  background: linear-gradient(120deg, var(--cyan), #0080c0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block;
}
.hero__sub {
  font-size: 1.18rem; color: var(--ice-dim); max-width: 560px;
  margin-bottom: 40px; line-height: 1.7;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 70px; max-width: 700px;
}
.hero__stat {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px;
  backdrop-filter: blur(12px);
}
.hero__stat-num {
  font-family: var(--font-display); font-size: 2.4rem;
  color: var(--cyan); letter-spacing: .02em; display: block; line-height: 1;
}
.hero__stat-label { font-size: .78rem; color: var(--text-muted); letter-spacing: .06em; margin-top: 4px; }
/* Aurora lines */
.hero__aurora {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero__aurora::before {
  content: '';
  position: absolute; top: -200px; left: -200px; right: -200px;
  height: 600px;
  background: linear-gradient(105deg, transparent 20%, rgba(0,120,200,.06) 40%, rgba(0,212,255,.1) 55%, rgba(0,120,200,.06) 70%, transparent 90%);
  animation: aurora 8s ease-in-out infinite alternate;
  transform-origin: center;
}
@keyframes aurora {
  0% { transform: rotate(-3deg) translateY(0); opacity: .7; }
  100% { transform: rotate(3deg) translateY(40px); opacity: 1; }
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-weight: 700; font-size: .9rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 13px 32px; border-radius: 50px; cursor: pointer;
  transition: all .22s; border: none; text-decoration: none;
}
.btn--primary {
  background: linear-gradient(135deg, #0090c8 0%, #00d4ff 100%);
  color: #000e1c; box-shadow: 0 0 24px rgba(0,212,255,.28);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(0,212,255,.45); color: #000e1c; }
.btn--outline {
  background: transparent; color: var(--ice);
  border: 1.5px solid var(--border-bright);
}
.btn--outline:hover { background: var(--cyan-glow); color: var(--white); border-color: var(--cyan); }
.btn--ghost {
  background: transparent; color: var(--cyan);
  border: 1px solid var(--border);
}
.btn--ghost:hover { background: var(--cyan-glow-2); color: var(--cyan-bright); }
.btn--gold {
  background: linear-gradient(135deg, #d49000, #ffc848);
  color: #1a0800; box-shadow: 0 0 24px rgba(255,200,72,.22);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 0 36px rgba(255,200,72,.38); color: #1a0800; }
.btn--lg { padding: 16px 44px; font-size: 1rem; }
.btn svg { width: 18px; height: 18px; }

/* ── Section headers ─────────────────────────────── */
.section-tag {
  display: inline-block; font-family: var(--font-heading); font-weight: 600;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white); line-height: 1; letter-spacing: .02em; margin-bottom: 18px;
}
.section-title .ice { color: var(--cyan); }
.section-sub {
  font-size: 1.05rem; color: var(--ice-dim); max-width: 580px; line-height: 1.75;
}
.section-sub.center { margin: 0 auto; }

/* ── Cards ───────────────────────────────────────── */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  backdrop-filter: blur(12px); transition: border-color .25s, box-shadow .25s, transform .25s;
}
.card:hover { border-color: rgba(0,212,255,.38); box-shadow: var(--shadow-glow); transform: translateY(-3px); }
.card--glow { box-shadow: 0 0 30px rgba(0,212,255,.1); }
.card__icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: var(--cyan-glow); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.6rem;
}
.card__title {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem;
  color: var(--white); margin-bottom: 10px; letter-spacing: .03em;
}
.card__text { color: var(--ice-dim); font-size: .95rem; line-height: 1.7; }

.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-2-risk { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 48px; }
@media (max-width: 768px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2-risk { grid-template-columns: 1fr; }
}
.stat-grid { display: grid; gap: 20px; }
.stat-grid--2 { grid-template-columns: repeat(2, 1fr); }
.stat-grid--3 { grid-template-columns: repeat(3, 1fr); }
.stat-grid--4 { grid-template-columns: repeat(4, 1fr); }
.stat-block {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px; text-align: center;
  backdrop-filter: blur(12px);
}
.stat-block__num {
  font-family: var(--font-display); font-size: 3rem;
  color: var(--cyan); letter-spacing: .03em; display: block; line-height: 1;
  text-shadow: 0 0 24px rgba(0,212,255,.4);
}
.stat-block__label { font-size: .82rem; color: var(--text-muted); letter-spacing: .06em; margin-top: 8px; }

/* ── Feature list ────────────────────────────────── */
.feature-list { display: flex; flex-direction: column; gap: 16px; }
.feature-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color .2s;
}
.feature-item:hover { border-color: rgba(0,212,255,.35); }
.feature-item__icon {
  width: 36px; height: 36px; flex-shrink: 0; border-radius: 8px;
  background: var(--cyan-glow); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; margin-top: 2px;
}
.feature-item__title {
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem;
  color: var(--white); margin-bottom: 4px;
}
.feature-item__text { font-size: .9rem; color: var(--ice-dim); line-height: 1.65; }

/* ── Two-column layouts ──────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split--reverse .split__visual { order: -1; }
.split__visual { position: relative; }
.split__visual img, .split__visual svg { border-radius: var(--radius); width: 100%; }

/* ── Tag pills ───────────────────────────────────── */
.pill {
  display: inline-block; padding: 4px 14px; border-radius: 50px;
  font-size: .78rem; font-family: var(--font-heading); font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
}
.pill--cyan { background: var(--cyan-glow); color: var(--cyan); border: 1px solid var(--border); }
.pill--ice { background: rgba(198,233,250,.1); color: var(--ice); border: 1px solid rgba(198,233,250,.2); }
.pill--gold { background: rgba(255,200,72,.12); color: var(--gold); border: 1px solid rgba(255,200,72,.25); }

/* ── Divider ─────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── CTA Banner ──────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0a2040, #062030);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 60px 48px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,212,255,.07) 0%, transparent 70%);
}
.cta-banner__title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white); margin-bottom: 16px; position: relative;
}
.cta-banner__text { font-size: 1.05rem; color: var(--ice-dim); margin-bottom: 32px; position: relative; }
.cta-banner__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* ── Process Steps ───────────────────────────────── */
.steps { display: grid; gap: 24px; }
.steps--3 { grid-template-columns: repeat(3, 1fr); }
.step {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px; position: relative;
}
.step__num {
  font-family: var(--font-display); font-size: 3.5rem; line-height: 1;
  color: rgba(0,212,255,.15); letter-spacing: .02em; margin-bottom: 16px;
  display: block;
}
.step__title {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem;
  color: var(--white); margin-bottom: 10px;
}
.step__text { color: var(--ice-dim); font-size: .92rem; line-height: 1.7; }

/* ── Table ───────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  font-family: var(--font-heading); font-weight: 700; font-size: .82rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--cyan);
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  text-align: left; background: rgba(0,212,255,.04);
}
.data-table td {
  padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,.04);
  color: var(--ice-dim); font-size: .93rem;
}
.data-table tr:hover td { background: rgba(0,212,255,.03); color: var(--ice); }
.data-table td:first-child { color: var(--white); font-weight: 500; }
.data-table td.highlight { color: var(--cyan); font-weight: 600; }

/* ── Accordion / FAQ ─────────────────────────────── */
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: rgba(0,212,255,.32); }
.faq-question {
  width: 100%; text-align: left; background: var(--bg-card);
  border: none; cursor: pointer; padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-heading); font-weight: 600; font-size: 1.02rem;
  color: var(--white); letter-spacing: .02em;
  transition: color .2s;
}
.faq-question:hover { color: var(--cyan); }
.faq-question__icon {
  width: 24px; height: 24px; flex-shrink: 0;
  border: 1.5px solid var(--border-bright); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--cyan); transition: transform .25s;
}
.faq-item.open .faq-question__icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  background: rgba(0,0,0,.2);
}
.faq-answer__inner { padding: 0 28px 22px; color: var(--ice-dim); font-size: .95rem; line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ── Team cards ──────────────────────────────────── */
.team-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
  transition: border-color .25s, transform .25s;
}
.team-card:hover { border-color: rgba(0,212,255,.38); transform: translateY(-4px); }
.team-card__avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--navy), #0a3560);
  border: 2px solid var(--border-bright);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.8rem; color: var(--cyan);
  letter-spacing: .02em;
}
.team-card__name {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem;
  color: var(--white); margin-bottom: 4px;
}
.team-card__role { font-size: .83rem; color: var(--cyan); letter-spacing: .1em; text-transform: uppercase; font-family: var(--font-heading); font-weight: 600; }
.team-card__bio { font-size: .88rem; color: var(--ice-dim); margin-top: 14px; line-height: 1.65; }

/* ── Timeline ────────────────────────────────────── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(180deg, var(--cyan), transparent);
}
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item::before {
  content: ''; position: absolute; left: -37px; top: 6px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 10px var(--cyan);
}
.timeline-item__period {
  font-family: var(--font-heading); font-weight: 700; font-size: .82rem;
  color: var(--cyan); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px;
}
.timeline-item__title {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem;
  color: var(--white); margin-bottom: 8px;
}
.timeline-item__text { color: var(--ice-dim); font-size: .92rem; line-height: 1.7; }

/* ── Financial KPI cards ─────────────────────────── */
.kpi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.kpi-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 26px;
  backdrop-filter: blur(12px);
}
.kpi-card--highlight { border-color: rgba(0,212,255,.4); background: rgba(0,60,100,.3); }
.kpi-card__label {
  font-family: var(--font-heading); font-weight: 600; font-size: .78rem;
  color: var(--text-muted); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px;
}
.kpi-card__value {
  font-family: var(--font-display); font-size: 2.4rem; line-height: 1;
  color: var(--cyan); margin-bottom: 6px; letter-spacing: .02em;
  text-shadow: 0 0 20px rgba(0,212,255,.3);
}
.kpi-card__sub { font-size: .84rem; color: var(--ice-dim); }

/* ── Password gate ───────────────────────────────── */
.gate {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse 70% 50% at 50% 30%, #061828 0%, var(--bg) 70%);
}
.gate__box {
  width: 100%; max-width: 440px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 48px 40px;
  backdrop-filter: blur(20px); text-align: center;
  box-shadow: var(--shadow), var(--shadow-glow);
}
.gate__logo { height: 70px; margin: 0 auto 28px; }
.gate__title {
  font-family: var(--font-display); font-size: 1.8rem;
  color: var(--white); margin-bottom: 10px;
}
.gate__sub { font-size: .9rem; color: var(--ice-dim); margin-bottom: 32px; }
.gate__form { display: flex; flex-direction: column; gap: 14px; }
.gate__input {
  width: 100%; padding: 14px 20px; border-radius: var(--radius);
  background: rgba(0,0,0,.3); border: 1.5px solid var(--border);
  color: var(--white); font-family: var(--font-body); font-size: 1rem;
  letter-spacing: .12em; outline: none; text-align: center;
  transition: border-color .2s;
}
.gate__input:focus { border-color: var(--cyan); }
.gate__input::placeholder { color: var(--text-muted); letter-spacing: .04em; }
.gate__error {
  color: #ff6b6b; font-size: .85rem; margin-top: -4px; display: none;
}
.gate__error.show { display: block; }
.gate__hint { font-size: .8rem; color: var(--text-muted); margin-top: 16px; }

/* ── Breadcrumb ──────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-size: .82rem;
  color: var(--text-muted); letter-spacing: .05em; margin-bottom: 32px;
}
.breadcrumb a { color: var(--ice-dim); }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb__sep { color: var(--border-bright); }

/* ── Page hero (inner pages) ─────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, #081e38 0%, var(--bg) 70%);
  border-bottom: 1px solid var(--border); position: relative; overflow: hidden;
}
.page-hero__title {
  font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--white); line-height: .95; letter-spacing: .02em; margin-bottom: 20px;
}
.page-hero__title .ice { color: var(--cyan); }

/* ── Chart / Progress ────────────────────────────── */
.progress-bar { background: rgba(255,255,255,.06); border-radius: 50px; height: 8px; overflow: hidden; }
.progress-bar__fill {
  height: 100%; border-radius: 50px;
  background: linear-gradient(90deg, #0080c0, var(--cyan));
  box-shadow: 0 0 10px rgba(0,212,255,.4);
  transition: width 1.2s ease;
}

/* ── Footer ──────────────────────────────────────── */
.footer {
  background: #010b16; border-top: 1px solid var(--border);
  padding: 64px 0 36px;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer__brand img { height: 54px; margin-bottom: 18px; }
.footer__tagline { font-size: .9rem; color: var(--text-muted); line-height: 1.7; max-width: 240px; }
.footer__heading {
  font-family: var(--font-heading); font-weight: 700; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: .9rem; color: var(--ice-dim);
  transition: color .2s, padding-left .2s;
}
.footer__links a:hover { color: var(--cyan); padding-left: 4px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; color: var(--text-muted); flex-wrap: wrap; gap: 12px;
}
.footer__bottom a { color: var(--ice-dim); }
.footer__bottom a:hover { color: var(--cyan); }

/* ── Investor sidebar nav ────────────────────────── */
.investor-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; padding-top: 40px; }
.investor-nav {
  position: sticky; top: calc(var(--nav-h) + 24px);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.investor-nav__header {
  padding: 16px 20px; background: rgba(0,212,255,.05);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-heading); font-weight: 700; font-size: .78rem;
  color: var(--cyan); letter-spacing: .12em; text-transform: uppercase;
}
.investor-nav__link {
  display: block; padding: 12px 20px;
  font-family: var(--font-heading); font-weight: 500; font-size: .9rem;
  color: var(--ice-dim); border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .2s, background .2s; letter-spacing: .03em;
}
.investor-nav__link:hover { color: var(--cyan); background: var(--cyan-glow-2); }
.investor-nav__link.active { color: var(--cyan); background: var(--cyan-glow-2); border-left: 2px solid var(--cyan); }

/* ── Notice bar ──────────────────────────────────── */
.notice {
  background: rgba(255,200,72,.08); border: 1px solid rgba(255,200,72,.22);
  border-radius: var(--radius); padding: 16px 24px;
  font-size: .88rem; color: var(--gold); margin-bottom: 32px;
  display: flex; align-items: flex-start; gap: 10px;
}
.notice--info { background: var(--cyan-glow-2); border-color: var(--border); color: var(--ice); }

/* ── Button group — wraps on mobile ──────────────── */
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-group--center { justify-content: center; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .investor-layout { grid-template-columns: 1fr; }
  .investor-nav { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .container { padding: 0 20px; }
  /* Navigation */
  .nav__menu { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: rgba(2,10,24,.97); border-bottom: 1px solid var(--border); padding: 16px; gap: 4px; }
  .nav__menu.open { display: flex; }
  .nav__dropdown { position: static; opacity: 1; visibility: visible; transform: none; border: none; background: rgba(0,0,0,.3); margin-top: 4px; }
  .nav__hamburger { display: flex; }
  /* Layouts */
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split__visual { order: 0; }
  /* Stat grids */
  .stat-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stat-grid--3 { grid-template-columns: 1fr; }
  .stat-grid--2 { grid-template-columns: 1fr; }
  /* Component grids */
  .steps--3 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: 1fr; }
  /* Team */
  .team-grid { grid-template-columns: 1fr; }
  .team-featured { grid-template-columns: 1fr; }
  /* Hero */
  .hero__stats { grid-template-columns: 1fr 1fr; }
  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  /* Spacing */
  .section { padding: 70px 0; }
  /* P&L table swipe hint */
  .table-swipe-hint { display: block !important; }
  /* All data-stagger inline grids collapse to 1 col */
  [data-stagger] { grid-template-columns: 1fr !important; }
  /* Buttons stack */
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  /* Page hero actions */
  .page-hero .btn-group { flex-direction: column; }
  .page-hero .btn-group .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr; }
  .stat-grid--4 { grid-template-columns: 1fr; }
  .stat-grid--3, .stat-grid--2 { grid-template-columns: 1fr; }
  .gate__box { padding: 36px 24px; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .cta-banner__actions .btn { width: 100%; justify-content: center; }
}
}
