/* =============================================
   CLEAR ROCK SUSTAINABLE ENERGY — STYLES
   ============================================= */

:root {
  --gold:    #f5c518;
  --gold-dk: #d4aa00;
  --teal:    #1ab5a0;
  --blue:    #1a7fbd;
  --blue-dk: #0d5d93;
  --blue-lt: #e8f4fd;
  --navy:    #0d3b6e;
  --dark:    #0a2a4a;
  --mid:     #f0f7ff;
  --card:    #ffffff;
  --text:    #0d2d52;
  --muted:   #5a7a9a;
  --border:  rgba(26,127,189,0.18);
  --radius:  8px;
  --max:     1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: #ffffff;
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

a { color: var(--gold); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }

img { max-width: 100%; display: block; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }

.gold   { color: var(--gold); }
.teal   { color: var(--teal); }
.blue   { color: var(--blue); }
.muted  { color: var(--muted); }

/* ---- LAYOUT ---- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

section { padding: 96px 0; }
section.tight { padding: 64px 0; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  border-left: 3px solid var(--gold);
  padding-left: 10px;
  margin-bottom: 16px;
}

.section-title { margin-bottom: 16px; }
.section-sub   { color: var(--muted); max-width: 640px; margin-bottom: 48px; font-size: 1.05rem; }

/* ---- ENERGY MARKET TICKER ---- */
#energy-ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: 38px;
  background: var(--navy);
  border-bottom: 1px solid rgba(26,127,189,0.3);
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  align-items: center;
  height: 100%;
}
.ticker-label {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  border-right: 1px solid rgba(252,191,0,0.15);
  height: 100%;
}
.ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: ticker-pulse 2s ease-in-out infinite;
}
@keyframes ticker-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
.ticker-track-wrap {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 80s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  font-size: .72rem;
}
.ticker-name  { color: var(--muted); font-weight: 500; }
.ticker-price { color: var(--text);  font-weight: 700; font-family: 'Barlow Condensed', Arial, sans-serif; font-size: .82rem; }
.ticker-chg   { font-weight: 600; font-size: .72rem; }
.ticker-chg.up   { color: #22c55e; }
.ticker-chg.down { color: #ef4444; }
.ticker-vol   { color: #556; font-size: .65rem; }
.ticker-sep   { color: rgba(252,191,0,0.3); padding: 0 8px; font-size: .8rem; }
.ticker-oil   .ticker-name { color: #fbbf24; }
.ticker-lng   .ticker-name { color: #60a5fa; }
.ticker-solar .ticker-name { color: var(--teal); }
.ticker-loading { color: var(--muted); font-size: .75rem; padding: 0 24px; }
.ticker-meta {
  padding: 0 14px;
  font-size: .62rem;
  color: #334;
  white-space: nowrap;
  border-left: 1px solid rgba(255,255,255,0.06);
  height: 100%;
  display: flex;
  align-items: center;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,127,189,0.15);
  box-shadow: 0 2px 16px rgba(13,59,110,0.08);
  transition: background .3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 40px;
  height: 40px;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text strong {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
}
.nav-logo-text span {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: var(--navy);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--blue); }

.nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-dk); opacity: 1 !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .3s;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(176,224,250,0.40) 0%,
    rgba(140,205,242,0.34) 60%,
    rgba(110,185,235,0.42) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,0.15);
  border: 1px solid rgba(245,197,24,0.50);
  color: var(--gold);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero h1 { max-width: 820px; margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--gold); }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(13,45,82,0.70);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 72px;
  flex-wrap: wrap;
}
.hero-stat { }
.hero-stat .num {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .label {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(13,45,82,0.65);
  margin-top: 4px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all .2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover { background: var(--gold-dk); opacity: 1; }

.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(13,45,82,0.45);
  color: var(--navy);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--navy); opacity: 1; }

/* ---- STAT BAND ---- */
.stat-band {
  background: var(--navy);
  border-top: 1px solid rgba(26,127,189,0.3);
  border-bottom: 1px solid rgba(26,127,189,0.3);
  padding: 56px 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {}
.stat-item .big {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-item .desc {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
}

/* ---- ABOUT SECTION ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(252,191,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-top: 2px;
}
.feature-text h4 { margin-bottom: 4px; color: var(--text); }
.feature-text p  { color: var(--muted); font-size: .9rem; }

.about-visual {
  position: relative;
}
.about-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(13,59,110,0.07);
}
.operations-list { list-style: none; }
.operations-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: .95rem;
}
.operations-list li:last-child { border-bottom: none; }
.operations-list .flag { font-size: 1.4rem; }
.operations-list strong { color: var(--blue); display: block; font-size: .8rem; letter-spacing: .08em; }

/* ---- OPPORTUNITY / FINANCIALS ---- */
.opp-section { background: var(--mid); }

.revenue-streams {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.stream-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(13,59,110,0.06);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.stream-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(26,127,189,0.15); }
.stream-icon { font-size: 2rem; margin-bottom: 12px; }
.stream-card h4 { color: var(--blue); margin-bottom: 8px; }
.stream-card p  { color: var(--muted); font-size: .9rem; }

/* ---- FINANCIAL TABLE ---- */
.fin-table-wrap { overflow-x: auto; }
.fin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
.fin-table th {
  background: var(--blue-lt);
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  padding: 14px 20px;
  text-align: right;
  border-bottom: 1px solid var(--border);
}
.fin-table th:first-child { text-align: left; }
.fin-table td {
  padding: 14px 20px;
  text-align: right;
  border-bottom: 1px solid rgba(26,127,189,0.08);
  color: var(--muted);
}
.fin-table td:first-child { text-align: left; color: var(--text); font-weight: 600; }
.fin-table tr:hover td { background: var(--blue-lt); }
.fin-table .highlight td { color: var(--navy); font-weight: 700; background: rgba(252,191,0,0.07); }
.fin-table .highlight td:first-child { color: var(--blue); }

/* ---- CAPITAL DEPLOYMENT ---- */
.capital-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}
.capital-bars { display: flex; flex-direction: column; gap: 20px; }
.cap-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  margin-bottom: 6px;
  color: var(--muted);
}
.cap-bar-label strong { color: var(--text); }
.cap-bar-track {
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}
.cap-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 4px;
  transition: width 1s ease;
}

.returns-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(13,59,110,0.08);
}
.returns-box h3 { color: var(--blue); margin-bottom: 24px; }
.return-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(26,127,189,0.1);
}
.return-item:last-child { border-bottom: none; }
.return-item .key { color: var(--muted); font-size: .9rem; }
.return-item .val { color: var(--gold); font-weight: 700; font-size: 1.05rem; }

/* ---- TEAM SECTION ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(13,59,110,0.06);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.team-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(26,127,189,0.15); }
.team-card.featured { border-color: var(--border); grid-column: span 1; }
.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.team-role {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 6px;
}
.team-name { font-size: 1.15rem; margin-bottom: 12px; }
.team-bio  { color: var(--muted); font-size: .875rem; line-height: 1.65; }

/* ---- VALUES ---- */
.values-section { background: var(--dark); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.value-card {
  border-left: 3px solid var(--gold);
  padding: 24px 24px 24px 28px;
  background: rgba(255,255,255,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.value-card h4 { color: var(--gold); margin-bottom: 8px; }
.value-card p  { color: rgba(255,255,255,0.65); font-size: .9rem; }

/* ---- MARKET SECTION ---- */
.market-section { background: var(--mid); }
.market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}
.market-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(13,59,110,0.06);
}
.market-card .market-num {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}
.market-card h4 { margin-bottom: 12px; color: var(--navy); }
.market-card p  { color: var(--muted); font-size: .9rem; }

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dk) 100%);
  border-top: none;
  border-bottom: none;
  padding: 80px 0;
  text-align: center;
  color: #fff;
}
.cta-band h2 { margin-bottom: 16px; color: #fff; }
.cta-band p  { color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---- CONTACT SECTION ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(252,191,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item h4 { color: var(--gold); font-size: .8rem; letter-spacing: .1em; margin-bottom: 4px; }
.contact-item p  { color: var(--muted); font-size: .9rem; }
.contact-item a  { color: var(--text); }

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--text);
  padding: 12px 16px;
  font-size: .95rem;
  font-family: inherit;
  transition: border-color .2s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---- FOOTER ---- */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { color: rgba(255,255,255,0.55); font-size: .9rem; margin-top: 16px; max-width: 300px; }
.footer-col h5 {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: .9rem; transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: .8rem; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: 180px 0 80px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dk) 60%, var(--navy) 100%);
  border-bottom: none;
  color: #fff;
}
.page-hero h1 { margin-bottom: 16px; color: #fff; }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 600px; }
.page-hero .section-label { color: var(--gold); }

/* ---- TIMELINE ---- */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: var(--blue-lt);
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--dark);
}
.timeline-item .year {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 4px;
}
.timeline-item h4 { margin-bottom: 8px; }
.timeline-item p  { color: var(--muted); font-size: .9rem; }

/* ---- NEWS TICKER ---- */
#news-ticker-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(245,197,24,0.2);
  overflow: hidden;
  height: 44px;
}
.news-ticker-inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 100%;
}
.news-ticker-tabs {
  display: flex;
  height: 100%;
  flex-shrink: 0;
}
.news-tab {
  background: none;
  border: none;
  border-right: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 0 16px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, color .2s;
  font-family: 'Inter', sans-serif;
}
.news-tab:hover  { background: rgba(255,255,255,0.05); color: #fff; }
.news-tab.active { background: rgba(245,197,24,0.12); color: var(--gold); }

.news-ticker-track-wrap {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.news-ticker-track-wrap::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 32px;
  background: linear-gradient(90deg, var(--navy), transparent);
  z-index: 2;
  pointer-events: none;
}
.news-ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: news-scroll 60s linear infinite;
  padding-left: 32px;
}
.news-ticker-track:hover { animation-play-state: paused; }
@keyframes news-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.news-headline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-size: .8rem;
  color: rgba(255,255,255,0.85);
  border-right: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: color .2s;
}
.news-headline:hover { color: #fff; }
.news-headline a {
  color: inherit;
  text-decoration: none;
}
.news-headline a:hover { color: var(--gold); opacity: 1; }
.news-cat {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
  flex-shrink: 0;
}
.news-cat.energy { background: rgba(245,197,24,0.2); color: var(--gold); }
.news-cat.solar  { background: rgba(26,181,160,0.2); color: #2dd4c0; }
.news-cat.lng    { background: rgba(96,165,250,0.2); color: #93c5fd; }

.news-ticker-loading { color: rgba(255,255,255,0.4); font-size: .8rem; padding: 0 24px; }
.news-ticker-time {
  padding: 0 14px;
  font-size: .62rem;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
  border-left: 1px solid rgba(255,255,255,0.06);
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .stat-grid         { grid-template-columns: repeat(2, 1fr); }
  .team-grid         { grid-template-columns: repeat(2, 1fr); }
  .revenue-streams   { grid-template-columns: repeat(2, 1fr); }
  .about-grid        { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .market-grid       { grid-template-columns: 1fr; }
  .capital-grid      { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 110px; left: 0; right: 0; background: #fff; padding: 24px; border-bottom: 1px solid var(--border); gap: 16px; box-shadow: 0 8px 24px rgba(13,59,110,0.1); }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .hero-stats { gap: 24px; }
  .team-grid         { grid-template-columns: 1fr; }
  .revenue-streams   { grid-template-columns: 1fr; }
  .contact-grid      { grid-template-columns: 1fr; }
  .values-grid       { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; }
  .capital-grid      { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
