/* Spruvly RU — shared design system */

:root {
  --bg-base: #FAF9F5; --bg-elevated: #FFFFFF; --bg-soft: #F4F2EC;
  --text-primary: #1A1A1F; --text-secondary: #5C5C66; --text-muted: #8E8E96;
  --accent: #FF6B47; --accent-soft: #FFE9E0; --accent-hover: #FF7E5F;
  --aurora-peach: #FFD4C2; --aurora-mint: #C2F0DC; --aurora-lilac: #DCD0FF;
  --aurora-honey: #FFEBC2; --aurora-sky: #C2E5FF;
  --success: #5EBD8C;
  --border-subtle: rgba(26,26,31,0.06); --border-default: rgba(26,26,31,0.10);
  --shadow-soft: 0 1px 2px rgba(26,26,31,0.04), 0 8px 24px rgba(26,26,31,0.06);
  --shadow-float: 0 4px 12px rgba(26,26,31,0.04), 0 24px 64px rgba(26,26,31,0.08);
  --shadow-glow: 0 0 0 1px rgba(255,107,71,0.08), 0 8px 32px rgba(255,107,71,0.16);
  --font-display: 'General Sans','Geist',system-ui,sans-serif;
  --font-body: 'Geist',system-ui,sans-serif;
  --font-mono: 'Geist Mono','JetBrains Mono',monospace;
  --ease-out: cubic-bezier(0.22,1,0.36,1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg-base); color: var(--text-primary); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; position: relative; }
body::before { content: ''; position: fixed; inset: 0; opacity: 0.025; pointer-events: none; z-index: 1; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E"); }

.pearl-cursor { position: fixed; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(255,229,224,0.55), rgba(220,208,255,0.25) 40%, transparent 70%); filter: blur(50px); pointer-events: none; z-index: 2; transform: translate(-50%,-50%); transition: opacity 0.5s; opacity: 0; }

.aurora { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100vw; height: 100%; overflow: hidden; pointer-events: none; z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 70%, rgba(0,0,0,0.5) 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 70%, rgba(0,0,0,0.5) 90%, transparent 100%); }
.aurora__blob { position: absolute; border-radius: 50%; filter: blur(140px); opacity: 0.6; will-change: transform; }
.aurora__blob--1 { width: 800px; height: 800px; background: var(--aurora-peach); top: -250px; left: -180px; animation: drift1 90s ease-in-out infinite; }
.aurora__blob--2 { width: 700px; height: 700px; background: var(--aurora-lilac); top: 0; right: -200px; animation: drift2 80s ease-in-out infinite; }
.aurora__blob--3 { width: 600px; height: 600px; background: var(--aurora-mint); bottom: -150px; left: 25%; animation: drift3 100s ease-in-out infinite; }
.aurora__blob--4 { width: 500px; height: 500px; background: var(--aurora-honey); top: 35%; left: 38%; animation: drift1 110s ease-in-out infinite reverse; }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(100px,50px) scale(1.1); } 66% { transform: translate(-60px,90px) scale(0.95); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-80px,120px) scale(1.05); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(120px,-70px) scale(1.1); } }
@keyframes pulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(94,189,140,0.4); } 50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(94,189,140,0); } }
@keyframes shimmer { to { transform: rotate(360deg); } }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: rgba(250,249,245,0.35); backdrop-filter: blur(16px) saturate(180%); -webkit-backdrop-filter: blur(16px) saturate(180%); padding: 18px 0; transition: background 0.3s ease; }
nav.scrolled { background: rgba(250,249,245,0.85); border-bottom: 1px solid var(--border-subtle); }
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--font-display); font-weight: 600; font-size: 22px; letter-spacing: -0.02em; color: var(--text-primary); text-decoration: none; display: flex; align-items: baseline; }
.logo-dot { display: inline-block; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; margin-left: 2px; box-shadow: 0 0 12px rgba(255,107,71,0.4); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 14px; color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.lang-switch { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.05em; color: var(--text-muted); padding: 4px 10px; border-radius: 100px; border: 1px solid var(--border-subtle); }
.lang-switch:hover { background: var(--bg-soft); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 26px; border-radius: 14px; font-family: var(--font-body); font-size: 16px; font-weight: 500; letter-spacing: -0.01em; cursor: pointer; border: none; text-decoration: none; transition: all 0.25s var(--ease-out); will-change: transform; }
.btn-primary { background: var(--accent); color: white; box-shadow: 0 1px 2px rgba(255,107,71,0.1), 0 4px 12px rgba(255,107,71,0.15); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.btn-secondary { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
.btn-secondary:hover { background: rgba(255,255,255,0.5); transform: translateY(-1px); }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* HERO */
.hero { position: relative; min-height: 100vh; padding: 160px 0 120px; display: flex; align-items: center; z-index: 3; }
.hero-zone { min-height: auto; padding: 160px 0 80px; }
.hero-inner { position: relative; max-width: 1180px; margin: 0 auto; padding: 0 32px; z-index: 3; width: 100%; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); background: rgba(255,255,255,0.6); backdrop-filter: blur(10px); padding: 10px 16px; border-radius: 100px; border: 1px solid var(--border-subtle); margin-bottom: 32px; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(94,189,140,0.2); }
.hero h1.display { font-family: var(--font-display); font-weight: 600; font-size: clamp(54px, 9vw, 124px); line-height: 0.95; letter-spacing: -0.045em; color: var(--text-primary); margin-bottom: 36px; max-width: 1100px; }
.hero-zone h1.display { font-size: clamp(44px, 7vw, 92px); }
.hero h1 .word { display: inline-block; }
.hero h1 .accent-word, .hero h1 .accent-text { color: var(--accent); font-style: italic; font-weight: 500; }
.hero p.lead { font-size: clamp(18px, 1.6vw, 22px); color: var(--text-secondary); max-width: 700px; line-height: 1.5; margin-bottom: 44px; }
.hero-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 56px; }
.live-counter { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.7); backdrop-filter: blur(10px); border: 1px solid var(--border-subtle); padding: 10px 16px; border-radius: 100px; font-family: var(--font-mono); font-size: 13px; color: var(--text-secondary); }
.live-counter strong { color: var(--accent); font-variant-numeric: tabular-nums; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); animation: pulse 2s ease-in-out infinite; display: inline-block; }
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid var(--border-subtle); }
.hero-stat strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 28px; letter-spacing: -0.02em; color: var(--text-primary); font-variant-numeric: tabular-nums; }
.hero-stat span { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-top: 4px; display: block; }

/* Manifesto */
.manifesto { position: relative; padding: 120px 32px; max-width: 1180px; margin: 0 auto; z-index: 3; }
.manifesto-quote { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 3.5vw, 44px); line-height: 1.25; letter-spacing: -0.02em; max-width: 920px; color: var(--text-primary); }
.manifesto-quote .accent-text { color: var(--accent); font-style: italic; font-weight: 500; }
.manifesto-byline { display: inline-flex; align-items: center; gap: 10px; margin-top: 32px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.manifesto-byline::before { content: ''; width: 32px; height: 1px; background: var(--text-muted); }

/* Section */
.section { position: relative; max-width: 1180px; margin: 0 auto; padding: 96px 32px; z-index: 3; }
.section-head { margin-bottom: 56px; }
.section-label { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 14px; }
.section h2 { font-family: var(--font-display); font-size: clamp(34px, 4.5vw, 52px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.1; color: var(--text-primary); max-width: 820px; margin-bottom: 18px; }
.section h2 .accent-text { color: var(--accent); font-style: italic; font-weight: 500; }
.section h3 { font-family: var(--font-display); font-size: 24px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 10px; }
.section h3 .accent-text { color: var(--accent); font-style: italic; font-weight: 500; }
.section .lead { font-size: 18px; color: var(--text-secondary); max-width: 720px; line-height: 1.6; }

/* Zone cards */
.zones-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.zone-link { text-decoration: none; color: inherit; display: block; }
.zone-card { position: relative; background: var(--bg-elevated); border-radius: 28px; padding: 40px 36px; box-shadow: var(--shadow-soft); overflow: hidden; transition: all 0.5s var(--ease-out); height: 100%; display: flex; flex-direction: column; min-height: 480px; }
.zone-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-float); }
.zone-card__aurora { position: absolute; top: -100px; right: -100px; width: 320px; height: 320px; border-radius: 50%; opacity: 0.4; filter: blur(60px); pointer-events: none; transition: opacity 0.5s; }
.zone-card:hover .zone-card__aurora { opacity: 0.7; }
.zone-card--gigs .zone-card__aurora { background: radial-gradient(circle, var(--aurora-peach), var(--aurora-honey)); }
.zone-card--builders .zone-card__aurora { background: radial-gradient(circle, var(--aurora-mint), var(--aurora-sky)); }
.zone-card--grants .zone-card__aurora { background: radial-gradient(circle, var(--aurora-lilac), var(--aurora-peach)); }
.zone-card__num { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 16px; position: relative; z-index: 2; }
.zone-card__title { font-family: var(--font-display); font-weight: 600; font-size: 36px; letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 14px; position: relative; z-index: 2; }
.zone-card__title .accent-text { color: var(--accent); font-style: italic; font-weight: 500; }
.zone-card__desc { font-size: 15px; color: var(--text-secondary); line-height: 1.55; margin-bottom: 28px; position: relative; z-index: 2; }
.zone-card__preview { background: rgba(250,249,245,0.6); backdrop-filter: blur(8px); border: 1px solid var(--border-subtle); border-radius: 16px; padding: 18px 20px; margin-top: auto; position: relative; z-index: 2; transition: background 0.3s; }
.zone-card:hover .zone-card__preview { background: rgba(255,255,255,0.85); }
.zone-card__preview-label { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 10px; }
.zone-card__preview-content { font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--text-primary); }
.zone-card__arrow { position: absolute; top: 36px; right: 36px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.7); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--text-secondary); transition: all 0.3s; z-index: 3; border: 1px solid var(--border-subtle); }
.zone-card:hover .zone-card__arrow { background: var(--accent); color: white; transform: rotate(-45deg); }

/* Audience pills */
.audience-pills { display: flex; gap: 12px; flex-wrap: wrap; }
.audience-pill { padding: 12px 20px; background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: 100px; font-size: 15px; color: var(--text-primary); display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; }
.audience-pill:hover { background: var(--accent-soft); border-color: rgba(255,107,71,0.2); }
.audience-pill__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { position: relative; padding: 28px 0; }
.step__num { font-family: var(--font-mono); font-size: 13px; color: var(--accent); letter-spacing: 0.08em; margin-bottom: 18px; }

/* Feature cards (used in sub-pages) */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.feature-card { background: var(--bg-elevated); border-radius: 20px; padding: 32px; box-shadow: var(--shadow-soft); transition: all 0.3s var(--ease-out); }
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-float); }
.feature-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); font-family: var(--font-display); font-weight: 600; font-size: 20px; margin-bottom: 18px; }
.feature-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: -0.02em; margin-bottom: 8px; }
.feature-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }

/* Demo frame (product mockups) */
.demo-frame { position: relative; background: linear-gradient(180deg, var(--bg-soft) 0%, transparent 100%); border-radius: 28px; padding: 56px 32px 40px; margin: 24px 0 48px; text-align: center; border: 1px solid var(--border-subtle); }
.demo-label { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); background: var(--bg-base); padding: 4px 14px; border-radius: 100px; border: 1px solid var(--border-subtle); }

/* Gig tile */
.gig-tile { background: var(--bg-elevated); border-radius: 20px; padding: 28px; box-shadow: var(--shadow-soft); max-width: 540px; margin: 12px auto 0; text-align: left; transition: all 0.3s var(--ease-out); }
.gig-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-float); }
.gig-tile__head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.gig-tile__payment { font-family: var(--font-display); font-size: 30px; font-weight: 600; letter-spacing: -0.02em; color: var(--text-primary); font-variant-numeric: tabular-nums; }
.gig-tile__period { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-left: 12px; }
.gig-tile__arrow { font-size: 22px; color: var(--text-muted); transition: color 0.3s; }
.gig-tile:hover .gig-tile__arrow { color: var(--accent); transform: translateX(4px); }
.gig-tile__title { font-family: var(--font-display); font-size: 18px; font-weight: 500; line-height: 1.4; color: var(--text-primary); margin-bottom: 14px; }
.gig-tile__company { font-size: 13px; color: var(--text-secondary); margin-bottom: 14px; }
.verified-text { color: var(--success); font-weight: 500; }
.gig-tile__chips { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.chip-sm { display: inline-flex; padding: 4px 10px; background: var(--bg-soft); border: 1px solid var(--border-subtle); border-radius: 100px; font-family: var(--font-mono); font-size: 11px; color: var(--text-secondary); }
.gig-tile__meta { display: flex; gap: 6px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }

/* Pearl mini (Builder) */
.cards-row { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 12px; }
.pearl-mini { background: var(--bg-elevated); border-radius: 22px; padding: 24px; box-shadow: var(--shadow-soft); width: 280px; text-align: left; position: relative; overflow: hidden; transition: all 0.4s var(--ease-out); }
.pearl-mini:hover { transform: translateY(-5px); box-shadow: var(--shadow-float); }
.pearl-mini__aurora { position: absolute; top: -50px; right: -50px; width: 180px; height: 180px; border-radius: 50%; opacity: 0.4; filter: blur(35px); pointer-events: none; }
.pearl-mini--1 .pearl-mini__aurora { background: radial-gradient(circle, var(--aurora-peach), var(--aurora-lilac)); }
.pearl-mini--2 .pearl-mini__aurora { background: radial-gradient(circle, var(--aurora-mint), var(--aurora-sky)); }
.pearl-mini--3 .pearl-mini__aurora { background: radial-gradient(circle, var(--aurora-honey), var(--aurora-peach)); }
.pearl-mini__handle { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); margin-bottom: 6px; position: relative; z-index: 2; display: flex; align-items: center; gap: 6px; }
.pearl-badge { display: inline-block; width: 12px; height: 12px; border-radius: 50%; background: conic-gradient(from 0deg, var(--aurora-peach), var(--aurora-lilac), var(--aurora-mint), var(--aurora-sky), var(--aurora-honey), var(--aurora-peach)); position: relative; box-shadow: 0 0 0 1px rgba(255,255,255,0.6) inset, 0 1px 4px rgba(0,0,0,0.06); animation: shimmer 6s linear infinite; }
.pearl-badge::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; background: var(--bg-elevated); }
.pearl-mini__name { font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: -0.02em; margin-bottom: 4px; position: relative; z-index: 2; }
.pearl-mini__role { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; position: relative; z-index: 2; }
.pearl-mini__chips { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 18px; position: relative; z-index: 2; }
.pearl-mini__stats { display: flex; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border-subtle); position: relative; z-index: 2; }
.pearl-mini__stats > div { display: flex; flex-direction: column; }
.pearl-mini__stats strong { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--text-primary); font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
.pearl-mini__stats span { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-top: 2px; }

/* Grant card */
.grant-card { background: var(--bg-elevated); border-radius: 24px; padding: 36px; box-shadow: var(--shadow-soft); max-width: 580px; margin: 12px auto 0; text-align: left; position: relative; overflow: hidden; }
.grant-card__aurora { position: absolute; top: -60px; right: -60px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, var(--aurora-honey), var(--aurora-peach)); opacity: 0.45; filter: blur(50px); pointer-events: none; }
.grant-card__brand { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 14px; position: relative; z-index: 2; }
.grant-card__title { font-family: var(--font-display); font-weight: 600; font-size: 30px; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 14px; position: relative; z-index: 2; }
.grant-card__title .accent-text { color: var(--accent); font-style: italic; font-weight: 500; }
.grant-card__desc { font-size: 14px; color: var(--text-secondary); line-height: 1.55; margin-bottom: 22px; position: relative; z-index: 2; }
.grant-card__perks { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; position: relative; z-index: 2; }
.perk { flex: 1; min-width: 130px; background: var(--bg-soft); border-radius: 12px; padding: 12px 14px; display: flex; flex-direction: column; gap: 4px; }
.perk__num { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--accent); letter-spacing: -0.01em; }
.perk span:last-child { font-size: 11px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.04em; }
.grant-card__foot { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); padding-top: 14px; border-top: 1px solid var(--border-subtle); position: relative; z-index: 2; }

/* Examples table */
.examples-list { display: flex; flex-direction: column; gap: 12px; }
.example-row { background: var(--bg-elevated); border-radius: 16px; padding: 20px 24px; box-shadow: var(--shadow-soft); display: flex; align-items: center; gap: 20px; transition: all 0.3s var(--ease-out); }
.example-row:hover { transform: translateX(4px); box-shadow: var(--shadow-float); }
.example-row__price { font-family: var(--font-display); font-weight: 600; font-size: 24px; color: var(--accent); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; min-width: 80px; }
.example-row__title { font-family: var(--font-display); font-weight: 500; font-size: 17px; flex: 1; }
.example-row__meta { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }

/* CTA */
.cta-block { position: relative; background: var(--bg-elevated); border-radius: 32px; padding: 72px 48px; margin: 0 auto 96px; text-align: center; overflow: hidden; box-shadow: var(--shadow-float); max-width: 980px; }
.cta-block::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 15% 25%, var(--aurora-peach), transparent 50%), radial-gradient(circle at 85% 75%, var(--aurora-lilac), transparent 50%), radial-gradient(circle at 50% 100%, var(--aurora-honey), transparent 60%); opacity: 0.45; z-index: 0; }
.cta-block > * { position: relative; z-index: 1; }
.cta-block h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 600; letter-spacing: -0.025em; margin-bottom: 16px; line-height: 1.1; }
.cta-block h2 .accent-text { color: var(--accent); font-style: italic; font-weight: 500; }
.cta-block p { font-size: 18px; color: var(--text-secondary); max-width: 580px; margin: 0 auto 32px; }
.cta-form { display: flex; gap: 8px; max-width: 480px; margin: 0 auto; }
.cta-form input { flex: 1; padding: 16px 20px; border: 1px solid var(--border-default); border-radius: 14px; font-family: var(--font-body); font-size: 16px; background: rgba(255,255,255,0.9); outline: none; transition: border-color 0.2s; }
.cta-form input:focus { border-color: var(--accent); }
.cta-form button { padding: 16px 24px; border-radius: 14px; background: var(--accent); color: white; border: none; font-family: var(--font-body); font-size: 16px; font-weight: 500; cursor: pointer; transition: background 0.2s; }
.cta-form button:hover { background: var(--accent-hover); }
.cta-block .note { margin-top: 20px; font-size: 13px; color: var(--text-muted); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; }
.faq-item { background: var(--bg-elevated); border-radius: 16px; padding: 22px 28px; box-shadow: var(--shadow-soft); }
.faq-item summary { font-family: var(--font-display); font-weight: 600; font-size: 17px; cursor: pointer; list-style: none; position: relative; padding-right: 32px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 0; top: -2px; font-size: 24px; color: var(--text-muted); font-weight: 400; transition: transform 0.3s; }
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--accent); }
.faq-item p { margin-top: 14px; font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

/* Cross-link panel (between zone pages) */
.cross-zones { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cross-zone { background: var(--bg-elevated); border-radius: 20px; padding: 28px; box-shadow: var(--shadow-soft); text-decoration: none; color: inherit; transition: all 0.3s var(--ease-out); position: relative; overflow: hidden; }
.cross-zone:hover { transform: translateY(-3px); box-shadow: var(--shadow-float); }
.cross-zone__num { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.cross-zone__title { font-family: var(--font-display); font-weight: 600; font-size: 22px; letter-spacing: -0.02em; margin-bottom: 6px; }
.cross-zone__desc { font-size: 14px; color: var(--text-secondary); line-height: 1.55; }
.cross-zone__arrow { position: absolute; top: 28px; right: 28px; color: var(--text-muted); transition: color 0.3s, transform 0.3s; }
.cross-zone:hover .cross-zone__arrow { color: var(--accent); transform: translateX(4px); }

/* Footer */
footer { position: relative; margin-top: 96px; padding: 64px 32px 40px; max-width: 1180px; margin-left: auto; margin-right: auto; border-top: 1px solid var(--border-subtle); z-index: 3; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.foot-tagline { font-family: var(--font-display); font-size: 22px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.3; margin-top: 20px; max-width: 400px; }
.foot-col h4 { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 14px; }
.foot-col a { display: block; color: var(--text-secondary); text-decoration: none; font-size: 14px; padding: 4px 0; transition: color 0.2s; }
.foot-col a:hover { color: var(--text-primary); }
.foot-bottom { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 920px) {
  .zones-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .cross-zones { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links a:not(.lang-switch):not(.btn) { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 120px 0 64px; min-height: 90vh; }
  .hero-zone { padding: 120px 0 48px; min-height: auto; }
  .section { padding: 64px 24px; }
  .manifesto { padding: 64px 24px; }
  .hero-stats { gap: 24px; }
  .zone-card { padding: 32px 28px; min-height: 420px; }
  .zone-card__title { font-size: 28px; }
}
