/* ==========================================================================
   Norvellos — Luxury Console Gaming
   Palette: deep black · graphite · emerald · electric teal · soft white
   Type: Syne (display) · Manrope (body)
   ========================================================================== */

:root {
  --black: #050706;
  --black-2: #080b0a;
  --graphite: #0f1513;
  --graphite-2: #161e1b;
  --graphite-3: #1e2825;
  --emerald: #10b981;
  --emerald-deep: #059669;
  --teal: #2ee6c8;
  --teal-glow: rgba(46, 230, 200, 0.4);
  --white: #f2f7f5;
  --mute: #9db0aa;
  --faint: #64756f;
  --line: rgba(160, 220, 200, 0.12);
  --glass: rgba(15, 21, 19, 0.5);
  --glass-2: rgba(8, 11, 10, 0.78);
  --shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.85);
  --glow: 0 0 40px rgba(16, 185, 129, 0.3);
  --r-s: 14px;
  --r: 22px;
  --r-l: 34px;
  --maxw: 1280px;
  --disp: "Syne", system-ui, sans-serif;
  --body: "Manrope", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* Ambient background */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(720px 520px at 85% -8%, rgba(46, 230, 200, 0.14), transparent 60%),
    radial-gradient(680px 600px at 8% 12%, rgba(16, 185, 129, 0.12), transparent 62%),
    radial-gradient(900px 700px at 50% 118%, rgba(5, 150, 105, 0.10), transparent 60%);
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(rgba(160, 220, 200, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 40%, #000 20%, transparent 80%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 { font-family: var(--disp); font-weight: 700; line-height: 1.02; letter-spacing: -0.02em; margin: 0 0 0.5em; }

.shell { width: min(100% - 2.8rem, var(--maxw)); margin-inline: auto; }
.block { padding: clamp(5rem, 10vw, 9rem) 0; position: relative; }

.kicker {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--disp); font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1.3rem;
}
.kicker::before { content: ""; width: 30px; height: 2px; background: var(--teal); border-radius: 2px; }

.tint { color: transparent; background: linear-gradient(100deg, var(--emerald), var(--teal)); -webkit-background-clip: text; background-clip: text; }
.dim { color: var(--mute); }

/* Buttons */
.act { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--disp); font-weight: 600; font-size: 0.92rem; padding: 0.95rem 1.7rem; border-radius: 100px; cursor: pointer; border: 1px solid transparent; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s, color 0.3s; }
.act svg { width: 18px; height: 18px; }
.act-fill { background: linear-gradient(100deg, var(--emerald), var(--teal)); color: #032018; box-shadow: var(--glow); }
.act-fill:hover { transform: translateY(-3px); box-shadow: 0 0 52px rgba(46,230,200,0.5); }
.act-line { border-color: var(--line); color: var(--white); background: rgba(255,255,255,0.02); }
.act-line:hover { border-color: var(--teal); transform: translateY(-3px); }

/* ===================== NAV — floating pill ===================== */
.topbar { position: fixed; top: 1.1rem; left: 0; right: 0; z-index: 100; transition: top 0.4s var(--ease); }
.nav-pill {
  width: min(100% - 2rem, 1120px); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.6rem 0.7rem 0.6rem 1.4rem;
  border-radius: 100px; border: 1px solid var(--line);
  background: var(--glass-2); backdrop-filter: blur(20px) saturate(150%);
  transition: box-shadow 0.4s, border-color 0.4s;
}
.topbar.scrolled .nav-pill { box-shadow: var(--shadow); border-color: rgba(46,230,200,0.2); }
.logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--disp); font-weight: 800; font-size: 1.15rem; letter-spacing: -0.03em; }
.logo .glyph { width: 30px; height: 30px; filter: drop-shadow(0 0 8px var(--teal-glow)); }
.menu { display: flex; align-items: center; gap: 0.1rem; }
.menu a { font-size: 0.88rem; color: var(--mute); padding: 0.5rem 0.8rem; border-radius: 100px; transition: color 0.25s, background 0.25s; font-weight: 500; }
.menu a:hover, .menu a.on { color: var(--white); background: rgba(46,230,200,0.08); }
.nav-right { display: flex; align-items: center; gap: 0.6rem; }
.hamb { display: none; background: none; border: 0; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; }
.hamb span { display: block; width: 20px; height: 2px; background: var(--white); margin: 4px auto; border-radius: 2px; transition: 0.3s; }
.hamb.x span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamb.x span:nth-child(2) { opacity: 0; }
.hamb.x span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.drawer { position: fixed; inset: 0 0 0 auto; width: min(82%, 360px); background: var(--glass-2); backdrop-filter: blur(24px); border-left: 1px solid var(--line); transform: translateX(105%); transition: transform 0.5s var(--ease); z-index: 99; padding: 6.5rem 2.2rem 2rem; display: flex; flex-direction: column; gap: 0.2rem; }
.drawer.open { transform: none; }
.drawer a { font-family: var(--disp); font-weight: 600; font-size: 1.3rem; padding: 0.75rem 0; border-bottom: 1px solid var(--line); color: var(--mute); }
.drawer a:hover { color: var(--teal); }
.veil { position: fixed; inset: 0; background: rgba(2,4,3,0.65); backdrop-filter: blur(3px); opacity: 0; pointer-events: none; transition: opacity 0.4s; z-index: 98; }
.veil.show { opacity: 1; pointer-events: auto; }

/* ===================== HERO ===================== */
.hero { padding: clamp(9rem, 18vh, 13rem) 0 clamp(4rem, 8vw, 7rem); position: relative; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { font-size: clamp(3rem, 8vw, 6.6rem); font-weight: 800; letter-spacing: -0.04em; }
.hero .sub { font-size: 1.2rem; color: var(--mute); max-width: 46ch; margin: 1.6rem 0 2.4rem; }
.hero-acts { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-orbit { position: relative; aspect-ratio: 1; display: grid; place-items: center; }
.hero-disc { position: relative; width: 100%; border-radius: 50%; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 1; }
.hero-disc img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
.hero-disc::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 120%, rgba(5,7,6,0.9), transparent 60%); }
.ring { position: absolute; border: 1px solid var(--line); border-radius: 50%; inset: -6%; animation: spin 26s linear infinite; }
.ring::before { content: ""; position: absolute; top: -6px; left: 50%; width: 12px; height: 12px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 16px var(--teal); }
.ring.two { inset: -14%; animation-duration: 40s; animation-direction: reverse; opacity: 0.5; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-chip { position: absolute; padding: 0.8rem 1.1rem; border-radius: var(--r); background: var(--glass-2); border: 1px solid var(--line); backdrop-filter: blur(14px); box-shadow: var(--shadow); font-size: 0.8rem; }
.hero-chip b { font-family: var(--disp); display: block; font-size: 0.95rem; }
.hero-chip.a { top: 4%; right: -4%; animation: bob 6s var(--ease) infinite; }
.hero-chip.b { bottom: 6%; left: -6%; animation: bob 7s var(--ease) infinite reverse; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.hero-metrics { display: flex; gap: 3rem; margin-top: 3.4rem; flex-wrap: wrap; }
.hero-metrics .m .n { font-family: var(--disp); font-weight: 800; font-size: 2.4rem; line-height: 1; }
.hero-metrics .m .t { color: var(--faint); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 0.5rem; }

/* ===================== SECTION HEADS ===================== */
.head { max-width: 640px; margin-bottom: 3.4rem; }
.head.center { margin-inline: auto; text-align: center; }
.head h2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.head p { color: var(--mute); margin: 0; font-size: 1.05rem; }
.index-tag { font-family: var(--disp); font-weight: 800; font-size: 0.9rem; color: var(--emerald); letter-spacing: 0.1em; }

/* ===================== PLATFORM ECOSYSTEM (numbered rows) ===================== */
.eco-row { display: grid; grid-template-columns: 90px 1fr auto; gap: 2rem; align-items: center; padding: 2.2rem 0; border-top: 1px solid var(--line); transition: padding 0.4s var(--ease); }
.eco-row:last-child { border-bottom: 1px solid var(--line); }
.eco-row:hover { padding-left: 1rem; }
.eco-row .no { font-family: var(--disp); font-weight: 800; font-size: 2.6rem; color: transparent; -webkit-text-stroke: 1px var(--faint); }
.eco-row:hover .no { -webkit-text-stroke: 1px var(--teal); }
.eco-row h3 { font-size: 1.7rem; margin: 0 0 0.3rem; }
.eco-row p { color: var(--mute); margin: 0; max-width: 60ch; }
.eco-row .arrow { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: 0.3s; flex: 0 0 auto; }
.eco-row:hover .arrow { background: var(--teal); border-color: var(--teal); }
.eco-row:hover .arrow svg { stroke: #04211a; }
.eco-row .arrow svg { width: 20px; height: 20px; stroke: var(--teal); }

/* ===================== CONSOLE GENERATIONS (cards) ===================== */
.gen-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.gen-card { position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: var(--graphite); transition: transform 0.5s var(--ease), border-color 0.4s; min-height: 400px; display: flex; flex-direction: column; justify-content: flex-end; }
.gen-card:hover { transform: translateY(-10px); border-color: rgba(46,230,200,0.4); }
.gen-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.8s var(--ease); }
.gen-card:hover img { transform: scale(1.08); }
.gen-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(5,7,6,0.1) 30%, rgba(5,7,6,0.94)); }
.gen-card .in { position: relative; z-index: 2; padding: 1.8rem; }
.gen-card .badge { display: inline-block; font-family: var(--disp); font-weight: 600; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); border: 1px solid var(--line); padding: 0.3rem 0.7rem; border-radius: 100px; margin-bottom: 0.9rem; }
.gen-card h3 { font-size: 1.5rem; margin: 0 0 0.4rem; }
.gen-card p { color: var(--mute); font-size: 0.92rem; margin: 0 0 1rem; }
.gen-card .spec { display: flex; gap: 1.4rem; font-size: 0.82rem; color: var(--faint); }
.gen-card .spec b { color: var(--white); font-family: var(--disp); display: block; }

/* ===================== GAME UNIVERSE (marquee-ish grid) ===================== */
.uni-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.uni-tile { position: relative; border-radius: var(--r-s); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 3/4; display: flex; align-items: flex-end; }
.uni-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.7s var(--ease); }
.uni-tile:hover img { transform: scale(1.1); }
.uni-tile::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 40%, rgba(5,7,6,0.92)); }
.uni-tile .lbl { position: relative; z-index: 2; padding: 1.1rem; }
.uni-tile .lbl small { color: var(--teal); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--disp); }
.uni-tile .lbl h4 { font-size: 1.05rem; margin: 0.2rem 0 0; }
.uni-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.8rem; margin-top: 1.4rem; }
.uni-list span { padding: 0.7rem 1.1rem; border: 1px solid var(--line); border-radius: 100px; font-size: 0.88rem; color: var(--mute); transition: 0.3s; }
.uni-list span:hover { border-color: var(--teal); color: var(--white); }

/* ===================== COMPARISON ===================== */
.cmp { border-radius: var(--r-l); border: 1px solid var(--line); background: var(--glass); overflow: hidden; }
.cmp-scroll { overflow-x: auto; }
table.spec-table { width: 100%; border-collapse: collapse; min-width: 720px; }
table.spec-table th, table.spec-table td { padding: 1.2rem 1.5rem; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.94rem; }
table.spec-table thead th { font-family: var(--disp); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); background: rgba(255,255,255,0.02); }
table.spec-table tbody th { color: var(--white); font-family: var(--disp); font-weight: 600; }
table.spec-table td { color: var(--mute); }
table.spec-table .go { color: var(--teal); }
table.spec-table tr:last-child th, table.spec-table tr:last-child td { border-bottom: 0; }

/* ===================== TIMELINE (horizontal) ===================== */
.tl { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(240px, 1fr); gap: 1.4rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory; }
.tl-node { scroll-snap-align: start; padding: 1.8rem; border-radius: var(--r); border: 1px solid var(--line); background: var(--glass); position: relative; }
.tl-node::before { content: ""; position: absolute; top: 1.8rem; left: 1.8rem; width: 12px; height: 12px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 14px var(--teal); }
.tl-node .yr { font-family: var(--disp); font-weight: 800; font-size: 1.1rem; color: var(--teal); margin: 2rem 0 0.6rem; }
.tl-node h4 { font-size: 1.2rem; margin: 0 0 0.4rem; }
.tl-node p { color: var(--mute); font-size: 0.9rem; margin: 0; }

/* ===================== PLAYER EXPERIENCE (split) ===================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.flip .split-img { order: 2; }
.split-img { border-radius: var(--r-l); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.split-img img { width: 100%; aspect-ratio: 5/4; object-fit: cover; transition: transform 0.9s var(--ease); }
.split-img:hover img { transform: scale(1.06); }
.feat-list { display: grid; gap: 1.2rem; margin-top: 1.8rem; }
.feat-list li { display: flex; gap: 1rem; }
.feat-list .ic { width: 44px; height: 44px; border-radius: 12px; flex: 0 0 auto; display: grid; place-items: center; background: rgba(46,230,200,0.1); }
.feat-list .ic svg { width: 22px; height: 22px; stroke: var(--teal); }
.feat-list h4 { margin: 0 0 0.2rem; font-size: 1.05rem; }
.feat-list p { margin: 0; color: var(--mute); font-size: 0.92rem; }

/* ===================== COMMUNITY ===================== */
.community { position: relative; border-radius: var(--r-l); overflow: hidden; border: 1px solid var(--line); }
.community img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.community::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(5,7,6,0.95) 42%, rgba(5,7,6,0.5)); }
.community .in { position: relative; z-index: 2; padding: clamp(2.6rem, 6vw, 5rem); max-width: 58ch; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.4rem; }
.stat-row .s .n { font-family: var(--disp); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.stat-row .s .n .u { color: var(--teal); }
.stat-row .s .t { color: var(--mute); font-size: 0.85rem; }

/* ===================== FAQ ===================== */
.faq { display: grid; gap: 1rem; max-width: 840px; margin-inline: auto; }
.qa { border: 1px solid var(--line); border-radius: var(--r-s); background: var(--glass); overflow: hidden; }
.qa button { width: 100%; text-align: left; background: none; border: 0; color: var(--white); font-family: var(--disp); font-weight: 600; font-size: 1.08rem; padding: 1.3rem 1.5rem; cursor: pointer; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.qa .pm { color: var(--teal); font-size: 1.5rem; line-height: 1; transition: transform 0.4s var(--ease); }
.qa.open .pm { transform: rotate(45deg); }
.qa .ans { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.qa .ans p { padding: 0 1.5rem 1.4rem; margin: 0; color: var(--mute); }

/* ===================== CTA ===================== */
.cta-wrap { position: relative; border-radius: var(--r-l); overflow: hidden; border: 1px solid var(--line); text-align: center; }
.cta-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta-wrap::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(5,7,6,0.82), rgba(5,7,6,0.94)); }
.cta-wrap .in { position: relative; z-index: 2; padding: clamp(3.4rem, 8vw, 6rem) 1.5rem; }
.cta-wrap h2 { font-size: clamp(2.2rem, 5.5vw, 4.2rem); max-width: 18ch; margin-inline: auto; }
.cta-wrap p { color: var(--mute); max-width: 48ch; margin: 1.2rem auto 2rem; }
.newsletter-line { display: flex; gap: 0.7rem; max-width: 460px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.newsletter-line input { flex: 1 1 220px; padding: 0.95rem 1.3rem; border-radius: 100px; border: 1px solid var(--line); background: rgba(0,0,0,0.4); color: var(--white); font-size: 0.95rem; }
.newsletter-line input:focus { outline: none; border-color: var(--teal); }
.note { font-size: 0.8rem; color: var(--faint); margin-top: 0.9rem; }

/* ===================== FOOTER ===================== */
.foot { border-top: 1px solid var(--line); padding: 5rem 0 2rem; }
.foot-top { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 2.5rem; margin-bottom: 3.4rem; }
.foot-brand p { color: var(--mute); max-width: 34ch; margin: 1rem 0; font-size: 0.92rem; }
.foot-col h5 { font-family: var(--disp); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin: 0 0 1.1rem; }
.foot-col a { display: block; color: var(--mute); font-size: 0.92rem; padding: 0.32rem 0; transition: 0.25s; }
.foot-col a:hover { color: var(--teal); transform: translateX(4px); }
.foot-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.6rem; border-top: 1px solid var(--line); color: var(--faint); font-size: 0.85rem; }
.dots { display: flex; gap: 0.6rem; }
.dots a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: 0.3s; }
.dots a:hover { border-color: var(--teal); background: rgba(46,230,200,0.1); }
.dots svg { width: 17px; height: 17px; }

/* ===================== INNER PAGE HERO ===================== */
.page-top { padding: clamp(9rem, 16vh, 13rem) 0 clamp(3rem, 6vw, 5rem); text-align: center; }
.page-top h1 { font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 800; }
.page-top .sub { color: var(--mute); max-width: 60ch; margin: 1.3rem auto 0; font-size: 1.1rem; }
.crumb { font-size: 0.82rem; color: var(--faint); margin-bottom: 1.4rem; letter-spacing: 0.04em; }
.crumb a:hover { color: var(--teal); }

/* Generic game cards */
.grid-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.6rem; }
.tile { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: var(--glass); transition: transform 0.5s var(--ease), border-color 0.4s; display: flex; flex-direction: column; }
.tile:hover { transform: translateY(-8px); border-color: rgba(46,230,200,0.4); }
.tile .ph { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.tile .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.tile:hover .ph img { transform: scale(1.09); }
.tile .ph .tag { position: absolute; top: 0.9rem; left: 0.9rem; background: var(--glass-2); border: 1px solid var(--line); padding: 0.3rem 0.7rem; border-radius: 100px; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); font-family: var(--disp); }
.tile .bd { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.tile h3 { font-size: 1.25rem; margin: 0 0 0.4rem; }
.tile p { font-size: 0.92rem; color: var(--mute); margin: 0 0 1rem; }
.tile .end { margin-top: auto; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--faint); }
.tile .rate { font-family: var(--disp); font-weight: 700; color: var(--teal); font-size: 1.05rem; }

/* Prose */
.prose { max-width: 780px; margin-inline: auto; }
.prose h2 { font-size: 1.6rem; margin-top: 2.6rem; }
.prose h3 { font-size: 1.2rem; margin-top: 1.8rem; }
.prose p, .prose li { color: var(--mute); }
.prose ul { list-style: disc; padding-left: 1.3rem; display: grid; gap: 0.5rem; margin: 1rem 0; }
.prose a { color: var(--teal); }
.prose .stamp { color: var(--faint); font-size: 0.9rem; }

/* Contact */
.cgrid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.fld { margin-bottom: 1.2rem; }
.fld label { display: block; font-size: 0.85rem; color: var(--mute); margin-bottom: 0.5rem; font-family: var(--disp); font-weight: 600; }
.fld input, .fld textarea, .fld select { width: 100%; padding: 0.9rem 1.1rem; border-radius: var(--r-s); border: 1px solid var(--line); background: rgba(0,0,0,0.3); color: var(--white); font-family: inherit; font-size: 0.95rem; }
.fld input:focus, .fld textarea:focus, .fld select:focus { outline: none; border-color: var(--teal); }
.fld textarea { min-height: 150px; resize: vertical; }
.cinfo li { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.cinfo .ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(46,230,200,0.1); display: grid; place-items: center; flex: 0 0 auto; }
.cinfo .ic svg { width: 20px; height: 20px; stroke: var(--teal); }
.cinfo h4 { margin: 0 0 0.2rem; font-size: 1rem; }
.cinfo p { margin: 0; color: var(--mute); font-size: 0.9rem; }

/* Reveal */
[data-rise] { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-rise].up { opacity: 1; transform: none; }
[data-rise][data-lag="1"] { transition-delay: 0.1s; }
[data-rise][data-lag="2"] { transition-delay: 0.2s; }
[data-rise][data-lag="3"] { transition-delay: 0.3s; }

/* Back to top */
#top { position: fixed; right: 1.6rem; bottom: 1.6rem; width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line); background: var(--glass-2); backdrop-filter: blur(10px); color: var(--teal); cursor: pointer; display: grid; place-items: center; opacity: 0; pointer-events: none; transform: translateY(20px); transition: 0.4s var(--ease); z-index: 90; }
#top.show { opacity: 1; pointer-events: auto; transform: none; }
#top svg { width: 20px; height: 20px; }

/* progress */
#bar { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--emerald), var(--teal)); z-index: 200; }

/* cookie */
#cookie { position: fixed; left: 1.2rem; right: 1.2rem; bottom: 1.2rem; z-index: 150; max-width: 560px; margin-inline: auto; padding: 1.3rem 1.5rem; border-radius: var(--r); background: var(--glass-2); border: 1px solid var(--line); backdrop-filter: blur(16px); box-shadow: var(--shadow); display: none; }
#cookie.show { display: block; }
#cookie p { margin: 0 0 1rem; font-size: 0.9rem; color: var(--mute); }
#cookie .row { display: flex; gap: 0.7rem; flex-wrap: wrap; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .uni-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .menu, .nav-right .act { display: none; }
  .hamb { display: block; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-orbit { max-width: 420px; margin-inline: auto; }
  .split, .split.flip { grid-template-columns: 1fr; }
  .split.flip .split-img { order: 0; }
  .eco-row { grid-template-columns: 60px 1fr; }
  .eco-row .arrow { display: none; }
  .cgrid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .uni-grid { grid-template-columns: 1fr 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .hero-metrics { gap: 1.6rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-rise] { opacity: 1; transform: none; }
}
