/* ═══════════════════════════════════════════════════════
   WELLBE COIN — "Vitality Chain" Design System
   Blockchain × Fitness · Teal Energy · Dark Wellness
   ═══════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
    --bg:        #050A0E;
    --bg-2:      #0A1118;
    --bg-3:      #0F1923;
    --surface:   #111D2A;
    --border:    #1A2B3D;
    --border-2:  #264058;
    --text:      #E8F0F4;
    --text-2:    #8DA4B8;
    --text-3:    #5A7A92;
    --teal:      #22D3EE;
    --teal-d:    #0891B2;
    --cyan-l:    #67E8F9;
    --green:     #34D399;
    --sky:       #38BDF8;
    --amber:     #FBBF24;
    --grad:      linear-gradient(135deg, var(--cyan-l), var(--teal), var(--teal-d));
    --grad-h:    linear-gradient(90deg, var(--cyan-l), var(--teal-d));
    --grad-glow: radial-gradient(circle, rgba(34,211,238,.12), transparent 70%);
    --ff:        'Inter', sans-serif;
    --fm:        'DM Mono', monospace;
    --fh:        'Unbounded', sans-serif;
    --radius:    14px;
    --radius-lg: 22px;
    --ease:      cubic-bezier(.22,1,.36,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--ff);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ══════════════════════════════════
   PARTICLE CANVAS
   ══════════════════════════════════ */
#particleCanvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .4;
}

/* ══════════════════════════════════
   AMBIENT PULSE RINGS
   ══════════════════════════════════ */
.pulse-rings {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}
.pr {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(34,211,238,.04);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: ambientPulse 8s ease-in-out infinite;
}
.pr-1 { width: 600px; height: 600px; animation-delay: 0s; }
.pr-2 { width: 900px; height: 900px; animation-delay: 2s; }
.pr-3 { width: 1200px; height: 1200px; animation-delay: 4s; }
@keyframes ambientPulse {
    0%, 100% { opacity: .3; transform: translate(-50%, -50%) scale(1); }
    50%      { opacity: .6; transform: translate(-50%, -50%) scale(1.08); }
}

/* ══════════════════════════════════
   NAV
   ══════════════════════════════════ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    transition: background .4s, backdrop-filter .4s, box-shadow .4s;
}
.nav.scrolled {
    background: rgba(5,10,14,.88);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    box-shadow: 0 1px 0 rgba(34,211,238,.06), 0 8px 40px rgba(0,0,0,.4);
}
.nav-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.nav-logo-svg {
    width: 44px; height: 34px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 12px rgba(34,211,238,.3));
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.12; }
.nlt-name {
    font-family: var(--fh);
    font-weight: 800;
    font-size: .92rem;
    letter-spacing: 1.5px;
    background: var(--grad-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nlt-sub {
    font-family: var(--fm);
    font-size: .6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-3);
}

/* Nav Links */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nl {
    font-size: .82rem;
    font-weight: 500;
    color: var(--text-2);
    padding: 7px 15px;
    border-radius: 10px;
    transition: color .25s, background .25s;
    letter-spacing: .2px;
}
.nl:hover, .nl.act { color: var(--teal); background: rgba(34,211,238,.06); }

/* Nav End */
.nav-end { display: flex; align-items: center; gap: 14px; }
.nav-soc {
    width: 36px; height: 36px;
    display: grid; place-items: center;
    border-radius: 8px;
    color: var(--text-3);
    transition: color .25s, background .25s;
}
.nav-soc:hover { color: var(--teal); background: rgba(34,211,238,.08); }
.nav-soc svg { width: 18px; height: 18px; }

.nav-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 24px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--bg);
    background: var(--grad);
    border-radius: 12px;
    overflow: hidden;
    transition: transform .25s var(--ease), box-shadow .3s;
    letter-spacing: .4px;
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(34,211,238,.3);
}
.nav-cta-pulse {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--grad);
    filter: blur(14px);
    opacity: 0;
    transition: opacity .4s;
    z-index: -1;
}
.nav-cta:hover .nav-cta-pulse { opacity: .4; }

/* Hamburger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
    z-index: 200;
}
.burger span {
    height: 2px;
    background: var(--text);
    border-radius: 4px;
    transition: transform .3s var(--ease), opacity .2s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════
   MOBILE OVERLAY
   ══════════════════════════════════ */
.mob {
    position: fixed;
    inset: 0;
    background: rgba(5,10,14,.97);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s, visibility .4s;
}
.mob.open { opacity: 1; visibility: visible; }
.mob-inner { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.mob-link {
    font-family: var(--fh);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-2);
    transition: color .25s;
}
.mob-link:hover { color: var(--teal); }
.mob-btn { margin-top: 12px; }

/* ══════════════════════════════════
   HERO — Centered cinematic + aurora
   ══════════════════════════════════ */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 130px 24px 100px;
    overflow: hidden;
    text-align: center;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--bg), transparent);
    pointer-events: none;
    z-index: 1;
}

/* Aurora blobs */
.aurora {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .18;
    animation: auroraFloat 10s ease-in-out infinite;
}
.ab-1 {
    width: 600px; height: 600px;
    top: -15%; left: -10%;
    background: var(--teal);
    animation-delay: 0s;
}
.ab-2 {
    width: 500px; height: 500px;
    top: 10%; right: -8%;
    background: var(--sky);
    animation-delay: 3s;
}
.ab-3 {
    width: 450px; height: 450px;
    bottom: -10%; left: 30%;
    background: var(--green);
    animation-delay: 6s;
}
@keyframes auroraFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(30px, -20px) scale(1.08); }
    66%      { transform: translate(-20px, 15px) scale(0.95); }
}

/* Center content */
.hero-center {
    position: relative;
    z-index: 2;
    max-width: 780px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--fm);
    font-size: .72rem;
    color: var(--teal);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 18px 6px 12px;
    border: 1px solid rgba(34,211,238,.18);
    border-radius: 50px;
    background: rgba(34,211,238,.04);
    margin-bottom: 28px;
}
.hb-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 10px var(--teal);
    animation: dotPulse 2s infinite;
}
@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: .4; }
}

.hero-h1 {
    font-family: var(--fh);
    font-weight: 900;
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 24px;
}
.h1-row { display: block; }
.h1-glow {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: shimmer 5s ease infinite;
}
@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

.hero-p {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--text-2);
    max-width: 560px;
    margin-bottom: 36px;
}

/* Buttons */
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 0; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    font-size: .86rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all .3s var(--ease);
    letter-spacing: .3px;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    color: var(--bg);
    background: var(--grad);
    box-shadow: 0 4px 18px rgba(34,211,238,.18);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(34,211,238,.3);
}
.btn-glass {
    color: var(--text);
    border: 1px solid var(--border-2);
    background: rgba(255,255,255,.03);
}
.btn-glass:hover {
    border-color: var(--teal);
    background: rgba(34,211,238,.06);
    transform: translateY(-2px);
}
.btn-arrow { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn-lg { padding: 16px 34px; font-size: .92rem; border-radius: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Ticker strip ── */
.hero-ticker {
    position: relative;
    z-index: 2;
    width: 100vw;
    margin-top: 64px;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,.015);
    padding: 16px 0;
}
.ticker-track {
    display: flex;
    align-items: center;
    gap: 28px;
    width: max-content;
    animation: tickerSlide 30s linear infinite;
}
@keyframes tickerSlide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--fm);
    font-size: .72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-2);
    white-space: nowrap;
}
.ticker-item svg { width: 16px; height: 16px; color: var(--teal); }
.ticker-sep {
    font-size: .5rem;
    color: var(--border-2);
}

/* ── Bottom info bar ── */
.hero-bar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    padding: 18px 36px;
    border-radius: 16px;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.hbar-item { text-align: center; }
.hbar-label {
    display: block;
    font-size: .62rem;
    font-family: var(--fm);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 3px;
}
.hbar-val {
    font-family: var(--fm);
    font-size: .88rem;
    font-weight: 500;
    color: var(--text);
}
.hbar-sep { width: 1px; height: 32px; background: var(--border); }

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-3);
    font-size: .65rem;
    font-family: var(--fm);
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}
.hero-scroll-bar {
    width: 1px; height: 36px;
    background: linear-gradient(to bottom, var(--teal), transparent);
    animation: scrollBar 2.5s ease-in-out infinite;
}
@keyframes scrollBar {
    0%, 100% { opacity: .3; height: 36px; }
    50%      { opacity: 1; height: 50px; }
}

/* ══════════════════════════════════
   SECTIONS (shared)
   ══════════════════════════════════ */
.sect {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}
.sect-alt { background: var(--bg-2); }

.sect-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--fm);
    font-size: .7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 16px;
}
.st-num { color: var(--teal); font-weight: 700; }
.st-line { width: 36px; height: 1px; background: var(--border-2); }

.sect-h2 {
    font-family: var(--fh);
    font-weight: 800;
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    letter-spacing: -.8px;
    line-height: 1.15;
    margin-bottom: 18px;
}
.glow-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sect-sub {
    color: var(--text-2);
    font-size: 1.02rem;
    max-width: 520px;
}
.sect-head { margin-bottom: 56px; }

.p-lg { font-size: 1.08rem; line-height: 1.8; color: var(--text-2); margin-bottom: 14px; }
.p-md { font-size: .92rem; line-height: 1.75; color: var(--text-3); margin-bottom: 22px; }

/* ══════════════════════════════════
   VISION
   ══════════════════════════════════ */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}
.vision-cards { display: flex; flex-direction: column; gap: 16px; }
.vc {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.02);
    border: 1px solid var(--border);
    transition: border-color .3s, background .3s, transform .3s var(--ease);
}
.vc:hover {
    border-color: rgba(34,211,238,.2);
    background: rgba(34,211,238,.03);
    transform: translateX(4px);
}
.vc-icon {
    width: 46px; height: 46px;
    min-width: 46px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(34,211,238,.07);
    color: var(--teal);
}
.vc-icon-blue { color: var(--sky); background: rgba(56,189,248,.07); }
.vc-icon-teal { color: var(--teal-d); background: rgba(8,145,178,.1); }
.vc-icon-green { color: var(--green); background: rgba(52,211,153,.07); }
.vc-icon svg { width: 20px; height: 20px; }
.vc strong {
    display: block;
    font-size: .86rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}
.vc span { font-size: .76rem; color: var(--text-3); }

/* ══════════════════════════════════
   ECOSYSTEM CARDS
   ══════════════════════════════════ */
.eco-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.eco-card {
    position: relative;
    padding: 34px 26px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.eco-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34,211,238,.18);
    box-shadow: 0 12px 48px rgba(0,0,0,.3), 0 0 0 1px rgba(34,211,238,.08);
}
.eco-glow {
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: var(--grad);
    opacity: 0;
    transition: opacity .4s;
    z-index: 0;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    padding: 1px;
}
.eco-card:hover .eco-glow { opacity: 1; }
.eco-card > *:not(.eco-glow) { position: relative; z-index: 1; }
.eco-icon {
    width: 50px; height: 50px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(34,211,238,.06);
    border: 1px solid rgba(34,211,238,.1);
    color: var(--teal);
    margin-bottom: 18px;
    transition: background .3s, border-color .3s;
}
.eco-card:hover .eco-icon { background: rgba(34,211,238,.1); border-color: rgba(34,211,238,.2); }
.eco-icon svg { width: 22px; height: 22px; }
.eco-card h3 {
    font-family: var(--fh);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -.2px;
}
.eco-card p {
    font-size: .84rem;
    line-height: 1.65;
    color: var(--text-2);
    margin-bottom: 16px;
}
.eco-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.eco-tags span {
    font-family: var(--fm);
    font-size: .6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(34,211,238,.05);
    color: var(--teal);
    border: 1px solid rgba(34,211,238,.08);
}
.eco-featured {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}
.eco-featured p { flex: 1; }

/* ══════════════════════════════════
   STATS BAND
   ══════════════════════════════════ */
.stats-band {
    position: relative;
    z-index: 1;
    padding: 60px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.stats-band::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 500px; height: 500px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--grad-glow);
    pointer-events: none;
}
.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
    flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-val {
    font-family: var(--fh);
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    font-weight: 800;
    background: var(--grad-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}
.stat-label { font-size: .76rem; color: var(--text-3); margin-top: 4px; letter-spacing: .5px; }
.stat-sep { width: 1px; height: 44px; background: var(--border); }

/* ══════════════════════════════════
   FEATURES
   ══════════════════════════════════ */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.feat {
    padding: 34px 26px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.015);
    border: 1px solid var(--border);
    transition: transform .3s var(--ease), border-color .3s;
    position: relative;
    overflow: hidden;
}
.feat::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 140px; height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34,211,238,.05), transparent 70%);
    opacity: 0;
    transition: opacity .4s;
}
.feat:hover::before { opacity: 1; }
.feat:hover {
    transform: translateY(-4px);
    border-color: rgba(34,211,238,.15);
}
.feat-num {
    font-family: var(--fm);
    font-size: .68rem;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.feat-icon {
    width: 44px; height: 44px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(34,211,238,.06);
    color: var(--teal);
    margin-bottom: 16px;
}
.feat-icon svg { width: 20px; height: 20px; }
.feat h3 {
    font-family: var(--fh);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -.2px;
}
.feat p {
    font-size: .82rem;
    line-height: 1.7;
    color: var(--text-2);
}

/* ══════════════════════════════════
   ROADMAP
   ══════════════════════════════════ */
.road {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}
.road-line {
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--teal), var(--border), transparent);
    transform: translateX(-50%);
}
.road-item {
    position: relative;
    width: 48%;
    margin-bottom: 40px;
}
.road-right { margin-left: auto; }

.ri-dot {
    position: absolute;
    top: 24px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--teal);
    z-index: 2;
}
.road-item:not(.road-right) .ri-dot { right: -7px; transform: translateX(50%); right: calc(-50% - 7px); right: unset; left: calc(100% + 22px); }
.road-right .ri-dot { left: unset; right: calc(100% + 22px); }

/* Simplified dot positioning */
.road-item .ri-dot {
    display: none; /* hide complex positioned dots, use card borders instead */
}

.ri-card {
    padding: 24px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: border-color .3s, transform .3s var(--ease);
}
.ri-card:hover {
    border-color: rgba(34,211,238,.2);
    transform: translateY(-3px);
}
.ri-active {
    border-color: rgba(34,211,238,.3);
    background: rgba(34,211,238,.04);
    box-shadow: 0 0 30px rgba(34,211,238,.08);
}
.ri-phase {
    font-family: var(--fm);
    font-size: .65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 8px;
}
.ri-card h3 {
    font-family: var(--fh);
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.ri-card p {
    font-size: .82rem;
    line-height: 1.65;
    color: var(--text-2);
    margin-bottom: 10px;
}
.ri-date {
    font-family: var(--fm);
    font-size: .68rem;
    color: var(--text-3);
    letter-spacing: 1px;
}

/* ══════════════════════════════════
   CTA SECTION
   ══════════════════════════════════ */
.cta-section {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
    text-align: center;
    overflow: hidden;
    background: var(--bg);
}
.cta-bg-glow-1, .cta-bg-glow-2 {
    position: absolute;
    width: 480px; height: 480px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}
.cta-bg-glow-1 { top: -200px; left: 8%; background: rgba(34,211,238,.08); }
.cta-bg-glow-2 { bottom: -200px; right: 8%; background: rgba(52,211,153,.06); }
.cta-h2 {
    font-family: var(--fh);
    font-weight: 800;
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    letter-spacing: -.8px;
    margin-bottom: 14px;
}
.cta-p { color: var(--text-2); font-size: 1rem; margin-bottom: 34px; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ══════════════════════════════════
   CONTACT
   ══════════════════════════════════ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}
.ci-list { display: flex; flex-direction: column; gap: 18px; margin-top: 22px; }
.ci { display: flex; align-items: flex-start; gap: 14px; }
.ci svg {
    width: 20px; height: 20px;
    color: var(--teal);
    margin-top: 3px;
    flex-shrink: 0;
}
.ci strong { display: block; font-size: .84rem; font-weight: 600; margin-bottom: 2px; }
.ci span, .ci a { font-size: .8rem; color: var(--text-3); }
.ci a:hover { color: var(--teal); }

/* Form */
.contact-form-wrap {
    padding: 34px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
}
.cf { display: flex; flex-direction: column; gap: 16px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-field { display: flex; flex-direction: column; gap: 5px; }
.cf-field label {
    font-size: .76rem;
    font-weight: 600;
    color: var(--text-2);
    letter-spacing: .3px;
}
.cf-field input,
.cf-field select,
.cf-field textarea {
    background: var(--bg-2);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 10px;
    padding: 11px 15px;
    transition: border-color .3s, box-shadow .3s;
    outline: none;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(34,211,238,.08);
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: var(--text-3); }
.cf-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%235A7A92' viewBox='0 0 12 12'%3E%3Cpath d='M6 8.5L1 3.5h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}
.cf-field select option { background: var(--bg-2); }
.cf-field textarea { resize: vertical; min-height: 96px; }
.cf-note { font-size: .7rem; color: var(--text-3); text-align: center; }

/* ══════════════════════════════════
   FOOTER
   ══════════════════════════════════ */
.footer {
    position: relative;
    z-index: 1;
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 56px;
    padding-bottom: 44px;
}
.footer-desc {
    font-size: .82rem;
    line-height: 1.7;
    color: var(--text-3);
    margin-top: 14px;
    max-width: 280px;
}
.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.footer-col h4 {
    font-family: var(--fh);
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-2);
    margin-bottom: 14px;
}
.footer-col a {
    display: block;
    font-size: .8rem;
    color: var(--text-3);
    padding: 3px 0;
    transition: color .25s;
}
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    border-top: 1px solid var(--border);
    font-size: .72rem;
    color: var(--text-3);
}

/* ══════════════════════════════════
   BACK TO TOP
   ══════════════════════════════════ */
.btt {
    position: fixed;
    bottom: 26px; right: 26px;
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--teal);
    font-size: 1rem;
    display: grid;
    place-items: center;
    z-index: 80;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .3s, transform .3s, background .3s, border-color .3s;
    pointer-events: none;
}
.btt.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.btt:hover { background: rgba(34,211,238,.08); border-color: rgba(34,211,238,.2); }

/* ══════════════════════════════════
   ANIMATIONS / REVEALS
   ══════════════════════════════════ */
.anim-in {
    opacity: 0;
    transform: translateY(28px);
    animation: fadeUp .8s var(--ease) forwards;
}
.anim-in:nth-child(2) { animation-delay: .1s; }
.anim-in:nth-child(3) { animation-delay: .2s; }
.anim-in:nth-child(4) { animation-delay: .3s; }
.anim-in:nth-child(5) { animation-delay: .4s; }
.anim-in:nth-child(6) { animation-delay: .5s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.rv {
    opacity: 0;
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.rv-up    { transform: translateY(36px); }
.rv-left  { transform: translateX(-36px); }
.rv-right { transform: translateX(36px); }
.rv.in-view { opacity: 1; transform: translate(0); }

/* ══════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════ */
@media (max-width: 1024px) {
    .hero { padding-top: 110px; }
    .hero-h1 { font-size: 2.6rem; letter-spacing: -1px; }
    .hero-bar { gap: 20px; padding: 14px 24px; }

    .nav-links, .nav-end { display: none; }
    .burger { display: flex; }

    .vision-grid { grid-template-columns: 1fr; gap: 40px; }
    .eco-grid { grid-template-columns: repeat(2, 1fr); }
    .eco-featured { grid-row: span 1; }
    .feat-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { grid-template-columns: 1fr; gap: 44px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }

    .road { max-width: 100%; }
    .road-line { left: 20px; }
    .road-item, .road-right { width: 100%; margin-left: 48px; }
}

@media (max-width: 640px) {
    .hero { padding-top: 96px; padding-bottom: 80px; }
    .hero-h1 { font-size: 1.9rem; letter-spacing: -.5px; }
    .hero-bar { flex-wrap: wrap; gap: 14px; padding: 12px 18px; border-radius: 12px; }
    .hbar-sep { display: none; }
    .hero-ticker { margin-top: 40px; }

    .sect { padding: 80px 0; }
    .sect-h2 { font-size: 1.7rem; }

    .eco-grid { grid-template-columns: 1fr; }
    .feat-grid { grid-template-columns: 1fr; }
    .cf-row { grid-template-columns: 1fr; }

    .stats-row { gap: 20px; flex-direction: column; }
    .stat-sep { display: none; }

    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; justify-content: center; }

    .footer-cols { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .cta-section { padding: 72px 24px; }
    .cta-btns { flex-direction: column; align-items: center; }
}

/* ── SELECTION ── */
::selection { background: rgba(34,211,238,.18); color: var(--text); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal); }
