:root {
  --ink: #eaf7ef;
  --muted: #8aa296;
  --green: #00e66b;
  --green-soft: #70f6a8;
  --gold: #d8bd6a;
  --bg: #020b07;
  --panel: rgba(8, 31, 21, 0.58);
  --line: rgba(155, 220, 179, 0.14);
  --max: 1240px;
  --ease: cubic-bezier(.22,.8,.24,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body { margin: 0; color: var(--ink); background: radial-gradient(circle at 50% -10%, #0c3320 0, var(--bg) 38%); font-family: "DM Sans", sans-serif; overflow-x: hidden; }
body::before { content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 9; opacity: .19; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--green); color: #001a0b; }

.section-pad { width: min(var(--max), calc(100% - 64px)); margin-inline: auto; }
.site-glow { position: fixed; width: 580px; height: 580px; border-radius: 50%; pointer-events: none; filter: blur(120px); opacity: .11; z-index: -1; }
.site-glow--one { background: var(--green); top: 15%; left: -350px; }
.site-glow--two { background: #d9bd61; bottom: 10%; right: -400px; }

.site-header { position: fixed; left: 50%; top: 18px; width: min(var(--max), calc(100% - 38px)); height: 64px; transform: translateX(-50%); z-index: 20; display: flex; align-items: center; justify-content: space-between; padding: 0 14px 0 22px; border: 1px solid rgba(170,230,191,.14); border-radius: 18px; background: rgba(2,14,9,.7); backdrop-filter: blur(20px); box-shadow: 0 18px 60px rgba(0,0,0,.24); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: Manrope, sans-serif; font-size: 1.08rem; font-weight: 700; letter-spacing: -.03em; }
.brand-mark { width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid rgba(85,255,155,.42); border-radius: 50%; transform: rotate(-12deg); box-shadow: inset 0 0 12px rgba(0,230,107,.15); }
.brand-mark span { width: 11px; height: 16px; display: block; border-radius: 100% 0 100% 0; background: linear-gradient(135deg, var(--green-soft), #008b43); box-shadow: 0 0 12px rgba(0,230,107,.6); }
.desktop-nav { display: flex; gap: 30px; color: #9cb2a6; font-size: .86rem; }
.desktop-nav a, .site-footer nav a { transition: color .25s ease; }
.desktop-nav a:hover, .site-footer nav a:hover { color: var(--green-soft); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-community { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 0 18px; border-radius: 11px; color: #05150d; background: var(--green); font-size: .84rem; font-weight: 700; box-shadow: 0 0 30px rgba(0,230,107,.13); transition: transform .25s ease, box-shadow .25s ease; }
.header-community:hover { transform: translateY(-2px); box-shadow: 0 0 34px rgba(0,230,107,.3); }
.menu-button, .mobile-nav { display: none; }

.hero { min-height: 100svh; position: relative; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 4vw; padding-top: 130px; padding-bottom: 86px; }
.hero::before { content: ""; position: absolute; top: 12%; left: 47%; height: 68%; width: 1px; background: linear-gradient(transparent, rgba(89,217,139,.16), transparent); }
.eyebrow, .section-number { display: flex; align-items: center; gap: 12px; text-transform: uppercase; letter-spacing: .18em; color: #9eb2a8; font-size: .7rem; font-weight: 600; }
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 18px var(--green); }
.hero h1 { margin: 24px 0 0; font: 600 clamp(4.4rem, 9.4vw, 8.6rem)/.88 Manrope, sans-serif; letter-spacing: -.075em; }
.hero h2 { margin: 26px 0 0; font: 500 clamp(2rem, 4.2vw, 4.3rem)/1.02 Manrope, sans-serif; letter-spacing: -.055em; }
em { color: var(--green); font-style: normal; }
.hero-copy > p { max-width: 570px; margin: 25px 0 0; color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.hero-actions, .community-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.button { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 52px; padding: 0 23px; border: 1px solid transparent; border-radius: 13px; font-size: .9rem; font-weight: 700; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.button::after { content: ""; position: absolute; inset: -2px; transform: translateX(-120%); background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent); transition: transform .7s var(--ease); }
.button:hover::after { transform: translateX(120%); }
.button:hover { transform: translateY(-2px); }
.button--primary { color: #00170a; background: var(--green); box-shadow: 0 0 30px rgba(0,230,107,.17); }
.button--primary:hover { box-shadow: 0 0 38px rgba(0,230,107,.36); }
.button--ghost { color: #cfe0d6; border-color: rgba(180,235,201,.17); background: rgba(255,255,255,.025); }
.button--ghost:hover { border-color: rgba(0,230,107,.45); }
.hero-visual { position: relative; justify-self: end; width: min(100%, 570px); aspect-ratio: 1; display: grid; place-items: center; }
.hero-visual::before { content: ""; position: absolute; inset: 12%; border-radius: 50%; background: radial-gradient(circle, rgba(0,230,107,.2), transparent 62%); filter: blur(24px); }
.hero-visual img { position: relative; width: 76%; height: 76%; object-fit: cover; border-radius: 50%; z-index: 2; filter: saturate(1.05) contrast(1.02); box-shadow: 0 34px 100px rgba(0,0,0,.42), 0 0 80px rgba(0,230,107,.12); }
.orbit { position: absolute; z-index: 3; border-radius: 50%; border: 1px solid rgba(218,193,109,.45); transform: rotate(-23deg); }
.orbit::before { content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%; top: 12%; right: 15%; background: #f3d47a; box-shadow: 0 0 20px #efd373; }
.orbit--outer { width: 88%; height: 52%; animation: orbitPulse 4s ease-in-out infinite; }
.orbit--inner { width: 62%; height: 83%; transform: rotate(29deg); border-color: rgba(0,230,107,.35); animation: orbitPulse 4s 1.2s ease-in-out infinite; }
.visual-label { position: absolute; z-index: 5; display: flex; align-items: center; gap: 8px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 10px; background: rgba(2,15,10,.74); backdrop-filter: blur(14px); color: #b7c9bf; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.visual-label span { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.visual-label--top { top: 14%; right: 3%; }
.visual-label--bottom { bottom: 15%; left: 0; }
.scroll-cue { position: absolute; bottom: 28px; left: 0; display: flex; align-items: center; gap: 13px; color: #728a7e; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.scroll-cue span { width: 36px; height: 1px; background: linear-gradient(90deg, var(--green), transparent); }

.intro, .core, .flow-section, .ecosystem, .community, .access { padding-top: 145px; padding-bottom: 145px; }
.section-number span { width: 42px; height: 1px; background: linear-gradient(90deg, rgba(0,230,107,.8), transparent); }
.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 10vw; align-items: end; margin-top: 42px; }
.display-title { margin: 0; font: 500 clamp(2.7rem, 5.8vw, 5.8rem)/1.04 Manrope, sans-serif; letter-spacing: -.065em; }
.intro-copy > p { margin: 0; color: #a0b5aa; font-size: 1.18rem; line-height: 1.8; }
.principles { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.principles span { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: #bbcdc3; font-size: .78rem; background: rgba(255,255,255,.02); }

.vision { padding-top: 30px; padding-bottom: 30px; }
.vision-panel { position: relative; min-height: 520px; display: flex; flex-direction: column; justify-content: space-between; padding: 60px; border: 1px solid rgba(0,230,107,.16); border-radius: 30px; overflow: hidden; background: linear-gradient(130deg, rgba(6,36,23,.9), rgba(2,14,9,.8)), url("assets/pevlunora-banner.png") center/cover; box-shadow: inset 0 1px rgba(255,255,255,.04), 0 36px 100px rgba(0,0,0,.25); }
.vision-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,12,8,.82) 0%, rgba(2,12,8,.54) 47%, rgba(2,12,8,.22)); }
.vision-panel > * { position: relative; z-index: 2; }
.vision-panel > p { max-width: 920px; margin: 90px 0 25px; font: 500 clamp(2.15rem, 4.5vw, 4.6rem)/1.12 Manrope, sans-serif; letter-spacing: -.05em; }
.vision-line { width: 100%; height: 1px; background: rgba(205,235,216,.13); overflow: hidden; }
.vision-line i { display: block; width: 35%; height: 100%; background: linear-gradient(90deg, transparent, var(--green), transparent); animation: lineMove 3.8s linear infinite; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 62px; }
.section-heading .section-number { align-self: flex-start; margin-top: 10px; white-space: nowrap; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.feature-card { min-height: 370px; position: relative; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(145deg, rgba(10,42,27,.55), rgba(3,17,11,.35)); overflow: hidden; transition: transform .35s var(--ease), border-color .35s ease, background .35s ease; }
.feature-card:hover { transform: translateY(-8px); border-color: rgba(0,230,107,.35); background: linear-gradient(145deg, rgba(10,53,32,.7), rgba(3,17,11,.5)); }
.feature-card::before { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; right: -80px; top: -80px; background: rgba(0,230,107,.06); filter: blur(20px); }
.feature-icon { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid rgba(0,230,107,.22); border-radius: 16px; background: rgba(0,230,107,.045); }
.diamond { width: 19px; height: 19px; border: 1px solid var(--green); transform: rotate(45deg); box-shadow: 0 0 15px rgba(0,230,107,.3), inset 0 0 10px rgba(0,230,107,.14); }
.rings { width: 27px; height: 17px; border: 1px solid var(--green); border-radius: 50%; position: relative; }
.rings::after { content: ""; position: absolute; inset: -7px 5px; border: 1px solid var(--gold); border-radius: 50%; transform: rotate(90deg); }
.arrows { width: 30px; height: 20px; background: linear-gradient(150deg, transparent 42%, var(--green) 43% 48%, transparent 49%), linear-gradient(330deg, transparent 42%, var(--gold) 43% 48%, transparent 49%); }
.grid-icon { width: 26px; height: 26px; background-image: radial-gradient(circle, var(--green) 2px, transparent 3px); background-size: 9px 9px; }
.card-index { margin: 28px 0 48px; color: #64796e; font-size: .7rem; letter-spacing: .14em; }
.feature-card h3 { margin: auto 0 11px; font: 600 1.25rem/1.3 Manrope, sans-serif; letter-spacing: -.03em; }
.feature-card p { min-height: 66px; margin: 0; color: var(--muted); font-size: .91rem; line-height: 1.6; }
.card-line { position: absolute; bottom: 0; left: 28px; width: 0; height: 2px; background: linear-gradient(90deg, var(--green), var(--gold)); transition: width .4s var(--ease); }
.feature-card:hover .card-line { width: calc(100% - 56px); }

.flow-section { width: 100%; max-width: none; padding-inline: max(32px, calc((100vw - var(--max)) / 2)); background: linear-gradient(180deg, transparent, rgba(0,230,107,.025), transparent); }
.section-heading--center { flex-direction: column; align-items: center; text-align: center; gap: 30px; }
.section-heading--center .section-number { align-self: center; }
.flow-wrap { max-width: var(--max); margin: 95px auto 0; position: relative; display: grid; grid-template-columns: repeat(4, 1fr); }
.flow-track { position: absolute; top: 43px; left: 12.5%; right: 12.5%; height: 1px; background: rgba(0,230,107,.16); overflow: hidden; }
.flow-track i { display: block; width: 30%; height: 100%; background: linear-gradient(90deg, transparent, var(--green), var(--gold), transparent); animation: flowLine 4s linear infinite; }
.flow-node { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 25px; }
.flow-node > span { width: 86px; height: 86px; display: grid; place-items: center; z-index: 2; border: 1px solid rgba(0,230,107,.25); border-radius: 50%; color: var(--green-soft); background: #04150e; font-size: .78rem; box-shadow: 0 0 35px rgba(0,230,107,.06), inset 0 0 28px rgba(0,230,107,.04); }
.flow-node strong { font: 600 1.05rem Manrope, sans-serif; letter-spacing: -.02em; }
.flow-node i { position: absolute; width: 7px; height: 7px; top: 40px; border-radius: 50%; background: var(--green); box-shadow: 0 0 13px var(--green); animation: nodePulse 2.4s ease-in-out infinite; }

.ecosystem-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 7vw; align-items: center; }
.eco-map { position: relative; min-height: 550px; display: grid; place-items: center; }
.eco-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(0,230,107,.15); }
.eco-ring--one { width: 380px; height: 380px; animation: slowSpin 25s linear infinite; }
.eco-ring--one::before, .eco-ring--two::before { content: ""; position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 16px var(--gold); top: 15%; left: 15%; }
.eco-ring--two { width: 255px; height: 255px; border-style: dashed; border-color: rgba(217,191,105,.18); animation: slowSpin 18s linear infinite reverse; }
.eco-core { width: 150px; height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 11px; border-radius: 50%; border: 1px solid rgba(0,230,107,.35); background: radial-gradient(circle, #0a3420, #03130c 70%); box-shadow: 0 0 80px rgba(0,230,107,.13), inset 0 0 40px rgba(0,230,107,.05); font-family: Manrope, sans-serif; font-size: .9rem; }
.eco-item { position: absolute; min-width: 120px; padding: 13px 16px; border: 1px solid var(--line); border-radius: 12px; color: #c7d8cf; background: rgba(4,20,13,.88); backdrop-filter: blur(13px); font-size: .84rem; }
.eco-item span { margin-right: 8px; color: var(--green); font-size: .68rem; }
.eco-item--assets { top: 9%; left: 12%; }
.eco-item--liquidity { top: 22%; right: 2%; }
.eco-item--settlement { bottom: 17%; left: 2%; }
.eco-item--apps { bottom: 9%; right: 12%; }
.eco-copy > p { color: #9eb3a8; font-size: 1.05rem; line-height: 1.75; }
.eco-copy ul { list-style: none; margin: 35px 0 0; padding: 0; border-top: 1px solid var(--line); }
.eco-copy li { display: grid; grid-template-columns: 35px 1fr auto; align-items: center; gap: 12px; min-height: 66px; border-bottom: 1px solid var(--line); }
.eco-copy li span { color: var(--green); font-size: .68rem; }
.eco-copy li strong { font-weight: 500; }
.eco-copy li em { color: #758b80; font-size: .8rem; }

.community-card { position: relative; min-height: 570px; display: grid; grid-template-columns: 1fr .8fr; align-items: center; padding: 72px; border: 1px solid rgba(0,230,107,.17); border-radius: 30px; overflow: hidden; background: radial-gradient(circle at 85% 50%, rgba(0,230,107,.12), transparent 38%), linear-gradient(130deg, rgba(7,41,25,.84), rgba(2,15,10,.9)); }
.community-card::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(0,230,107,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(0,230,107,.035) 1px, transparent 1px); background-size: 40px 40px; mask-image: linear-gradient(90deg, transparent, black); }
.community-copy { position: relative; z-index: 2; }
.community-copy h2 { margin: 42px 0 23px; font: 500 clamp(3rem, 6.5vw, 6.4rem)/.97 Manrope, sans-serif; letter-spacing: -.07em; }
.community-copy > p { max-width: 490px; color: #9db2a7; font-size: 1.04rem; line-height: 1.7; }
.community-art { position: relative; height: 100%; display: grid; place-items: center; }
.community-art img { position: relative; z-index: 2; width: min(92%, 390px); border-radius: 50%; mask-image: radial-gradient(circle, #000 54%, transparent 72%); }
.community-orbit { position: absolute; width: 90%; aspect-ratio: 1; border: 1px solid rgba(220,195,109,.28); border-radius: 50%; transform: rotate(63deg) scaleY(.52); animation: orbitPulse 4s ease-in-out infinite; }

.access { padding-top: 40px; }
.access-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.access-link { min-height: 150px; display: grid; grid-template-columns: 1fr auto; align-content: space-between; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.018); transition: border-color .3s ease, transform .3s var(--ease), background .3s ease; }
.access-link:hover { transform: translateY(-5px); border-color: rgba(0,230,107,.35); background: rgba(0,230,107,.04); }
.access-link span { font: 600 1.05rem Manrope, sans-serif; }
.access-link em { grid-row: 2; color: #6e8579; font-size: .77rem; }
.access-link b { grid-row: 1 / span 2; color: var(--green); font-weight: 400; }
.contract-panel { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 10px; padding: 22px 24px; border: 1px solid rgba(214,190,108,.2); border-radius: 18px; background: linear-gradient(90deg, rgba(210,186,105,.055), rgba(0,230,107,.025)); }
.contract-panel > div { min-width: 0; display: flex; align-items: center; gap: 22px; }
.contract-panel span { flex: none; color: #85998f; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.contract-panel code { overflow-wrap: anywhere; color: #d9e6df; font: .83rem/1.5 "DM Sans", sans-serif; }
.copy-button { flex: none; min-width: 88px; height: 40px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid rgba(0,230,107,.25); border-radius: 10px; color: var(--green-soft); background: rgba(0,230,107,.055); cursor: pointer; }
.copy-button i { width: 11px; height: 13px; border: 1px solid currentColor; border-radius: 2px; position: relative; }
.copy-button i::before { content: ""; position: absolute; width: 9px; height: 11px; border: 1px solid currentColor; border-radius: 2px; left: -4px; top: 3px; }
.placeholder-note { min-height: 20px; margin: 14px 4px 0; color: #60756a; font-size: .76rem; }

.site-footer { padding-top: 40px; padding-bottom: 35px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; padding: 38px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.footer-top p { color: #92a69b; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 28px; color: #60756a; font-size: .75rem; }
.footer-bottom nav { display: flex; gap: 23px; }

.particle { position: fixed; z-index: -1; width: 9px; height: 16px; border-radius: 100% 0 100% 0; background: linear-gradient(140deg, rgba(0,230,107,.7), rgba(0,110,52,.1)); opacity: 0; pointer-events: none; animation: particleDrift var(--duration) linear var(--delay) infinite; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .85s var(--ease), transform .85s var(--ease); transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes orbitPulse { 0%,100% { opacity: .45; filter: drop-shadow(0 0 3px rgba(218,189,99,.2)); } 50% { opacity: 1; filter: drop-shadow(0 0 10px rgba(218,189,99,.45)); } }
@keyframes lineMove { from { transform: translateX(-120%); } to { transform: translateX(380%); } }
@keyframes flowLine { from { transform: translateX(-100%); } to { transform: translateX(430%); } }
@keyframes nodePulse { 0%,100% { transform: scale(.7); opacity: .4; } 50% { transform: scale(1.2); opacity: 1; } }
@keyframes slowSpin { to { transform: rotate(360deg); } }
@keyframes particleDrift { 0% { transform: translate3d(0,110vh,0) rotate(0); opacity: 0; } 10%,80% { opacity: .32; } 100% { transform: translate3d(var(--drift),-20vh,0) rotate(360deg); opacity: 0; } }

@media (max-width: 1000px) {
  .desktop-nav { display: none; }
  .menu-button { width: 40px; height: 40px; display: grid; place-content: center; gap: 6px; border: 0; border-radius: 10px; background: rgba(255,255,255,.04); cursor: pointer; }
  .menu-button span { width: 18px; height: 1px; background: #dceae2; transition: transform .25s ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-nav { position: absolute; top: 70px; left: 0; right: 0; display: flex; flex-direction: column; padding: 13px; border: 1px solid var(--line); border-radius: 15px; background: rgba(2,14,9,.96); backdrop-filter: blur(20px); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .25s ease; }
  .mobile-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .mobile-nav a { padding: 13px; color: #b4c7bd; }
  .hero { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .community-card { padding: 52px; }
  .access-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .section-pad { width: min(100% - 38px, var(--max)); }
  .site-header { top: 10px; width: calc(100% - 24px); height: 58px; padding-left: 16px; }
  .header-community { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 125px; padding-bottom: 85px; gap: 50px; }
  .hero::before { display: none; }
  .hero h1 { font-size: clamp(3.6rem, 18vw, 5.2rem); overflow-wrap: anywhere; }
  .hero h2 { font-size: clamp(2.15rem, 10vw, 3.3rem); }
  .hero-copy > p { font-size: 1rem; }
  .hero-visual { justify-self: center; width: 100%; max-width: 500px; }
  .hero-visual img { width: 82%; height: 82%; }
  .scroll-cue { display: none; }
  .intro, .core, .flow-section, .ecosystem, .community, .access { padding-top: 92px; padding-bottom: 92px; }
  .intro-grid, .ecosystem-grid { grid-template-columns: 1fr; gap: 42px; }
  .display-title { font-size: clamp(2.45rem, 12vw, 4rem); }
  .vision-panel { min-height: 560px; padding: 30px 24px; border-radius: 22px; background-position: 25% center; }
  .vision-panel > p { margin-top: 110px; font-size: clamp(2.05rem, 9vw, 3.2rem); }
  .section-heading { flex-direction: column; align-items: flex-start; gap: 30px; margin-bottom: 42px; }
  .section-heading .section-number { align-self: flex-start; }
  .section-heading--center { align-items: center; }
  .section-heading--center .section-number { align-self: center; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 310px; }
  .flow-wrap { grid-template-columns: 1fr; gap: 18px; margin-top: 55px; }
  .flow-track { top: 9%; bottom: 9%; left: 42px; right: auto; width: 1px; height: auto; }
  .flow-track i { width: 100%; height: 30%; background: linear-gradient(180deg, transparent, var(--green), var(--gold), transparent); animation: flowLineVertical 4s linear infinite; }
  .flow-node { min-height: 86px; flex-direction: row; text-align: left; gap: 22px; }
  .flow-node > span { flex: none; }
  .flow-node i { left: 39px; top: 39px; }
  .eco-map { min-height: 440px; transform: scale(.9); margin-inline: -15px; }
  .eco-ring--one { width: 320px; height: 320px; }
  .eco-ring--two { width: 220px; height: 220px; }
  .eco-item { min-width: 105px; padding: 11px; font-size: .75rem; }
  .eco-item--assets { left: 0; }
  .eco-item--liquidity { right: 0; }
  .eco-item--settlement { left: 0; }
  .eco-item--apps { right: 0; }
  .eco-copy li { grid-template-columns: 30px 1fr; }
  .eco-copy li em { display: none; }
  .community-card { min-height: 710px; grid-template-columns: 1fr; padding: 34px 24px; border-radius: 22px; }
  .community-art { min-height: 300px; }
  .community-copy h2 { margin-top: 32px; }
  .access-grid { grid-template-columns: 1fr 1fr; }
  .contract-panel, .contract-panel > div { align-items: flex-start; flex-direction: column; }
  .contract-panel { padding: 20px; }
  .contract-panel code { width: 100%; }
  .copy-button { width: 100%; }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom nav { flex-wrap: wrap; gap: 15px 20px; }
}

@media (max-width: 430px) {
  .hero-actions, .community-actions { flex-direction: column; }
  .button { width: 100%; }
  .visual-label { font-size: .62rem; }
  .visual-label--top { right: -2%; }
  .access-grid { grid-template-columns: 1fr; }
  .access-link { min-height: 120px; }
  .community-card { min-height: 760px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

@keyframes flowLineVertical { from { transform: translateY(-100%); } to { transform: translateY(430%); } }
