:root {
  --bg: #07070d;
  --bg-elevated: #0f0f18;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.07);
  --text: #f2f0ff;
  --muted: rgba(242, 240, 255, 0.58);
  --line: rgba(242, 240, 255, 0.1);
  --lime: #c8f542;
  --cyan: #5eead4;
  --pink: #f472b6;
  --violet: #a78bfa;
  --gradient: linear-gradient(135deg, var(--lime), var(--cyan));
  --gradient-warm: linear-gradient(135deg, var(--pink), var(--violet));
  --radius: 20px;
  --radius-sm: 12px;
  --header-h: 80px;
  --max-w: 1240px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Ambient background */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: float-orb 18s ease-in-out infinite;
}

.orb-1 {
  width: 520px;
  height: 520px;
  top: -120px;
  left: -80px;
  background: color-mix(in srgb, var(--lime) 35%, transparent);
}

.orb-2 {
  width: 420px;
  height: 420px;
  top: 30%;
  right: -100px;
  background: color-mix(in srgb, var(--pink) 28%, transparent);
  animation-delay: -6s;
}

.orb-3 {
  width: 360px;
  height: 360px;
  bottom: 10%;
  left: 25%;
  background: color-mix(in srgb, var(--cyan) 25%, transparent);
  animation-delay: -12s;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
  opacity: 0.35;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 20px) scale(0.95); }
}

/* Header */
.header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 32px), var(--max-w));
  padding: 10px 12px 10px 20px;
  background: rgba(7, 7, 13, 0.65);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  border-color: color-mix(in srgb, var(--lime) 25%, var(--line));
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--gradient);
  box-shadow: 0 0 24px color-mix(in srgb, var(--lime) 40%, transparent);
  transition: transform 0.4s var(--ease-spring);
}

.logo:hover .logo-mark {
  transform: rotate(-8deg) scale(1.05);
}

.logo-letter {
  color: var(--bg);
  font-weight: 900;
  font-size: 1.1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  position: relative;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: 999px;
  transition: color 0.25s;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s var(--ease-out);
}

.nav a:hover {
  color: var(--text);
}

.nav a:hover::after {
  width: 20px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-toggle {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease-spring);
}

.lang-toggle:hover {
  background: var(--surface-hover);
  border-color: color-mix(in srgb, var(--lime) 30%, var(--line));
  transform: scale(1.04);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Main */
main {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 16px 100px;
}

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 40px) 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface);
  animation: fade-slide-down 0.8s var(--ease-out) both;
}

.tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

@keyframes fade-slide-down {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  background: linear-gradient(180deg, var(--text) 30%, color-mix(in srgb, var(--text) 55%, var(--cyan)));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: box-shadow 0.3s, background 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.btn.primary {
  background: var(--gradient);
  color: var(--bg);
  box-shadow: 0 4px 28px color-mix(in srgb, var(--lime) 35%, transparent);
}

.btn.primary:hover {
  box-shadow: 0 8px 40px color-mix(in srgb, var(--cyan) 45%, transparent);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn.ghost:hover {
  border-color: color-mix(in srgb, var(--lime) 40%, var(--line));
  background: var(--surface);
}

/* Hero stage */
.hero-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.hero-orbit {
  position: relative;
  width: min(360px, 80vw);
  height: min(360px, 80vw);
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.ring-1 {
  inset: 0;
  animation: spin 24s linear infinite;
  border-color: color-mix(in srgb, var(--lime) 30%, var(--line));
}

.ring-2 {
  inset: 28px;
  animation: spin 18s linear infinite reverse;
  border-style: dashed;
  border-color: color-mix(in srgb, var(--cyan) 25%, var(--line));
}

.ring-3 {
  inset: 56px;
  animation: spin 12s linear infinite;
  border-color: color-mix(in srgb, var(--pink) 20%, var(--line));
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero-glyph {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 800;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glyph-pulse 4s ease-in-out infinite;
  filter: drop-shadow(0 0 40px color-mix(in srgb, var(--lime) 30%, transparent));
}

@keyframes glyph-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.hero-float-card {
  position: absolute;
  bottom: 0;
  right: -10px;
  padding: 20px 24px;
  min-width: 200px;
  background: rgba(15, 15, 24, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  animation: float-card 5s ease-in-out infinite;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.float-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.float-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 48px;
}

.float-bars span {
  flex: 1;
  height: var(--h);
  border-radius: 4px;
  background: var(--gradient);
  animation: bar-bounce 2s ease-in-out infinite;
}

.float-bars span:nth-child(2) { animation-delay: 0.15s; }
.float-bars span:nth-child(3) { animation-delay: 0.3s; }
.float-bars span:nth-child(4) { animation-delay: 0.45s; }
.float-bars span:nth-child(5) { animation-delay: 0.6s; }

@keyframes bar-bounce {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.7); }
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--lime), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Marquee */
.marquee-section {
  margin: 0 -16px 60px;
  padding: 20px 0;
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-elevated) 80%, transparent);
  overflow: hidden;
}

.marquee {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px color-mix(in srgb, var(--text) 25%, transparent);
  transition: -webkit-text-stroke-color 0.3s, color 0.3s;
}

.marquee-track span:hover {
  -webkit-text-stroke-color: var(--lime);
  color: color-mix(in srgb, var(--lime) 20%, transparent);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Stats */
.stats {
  margin-bottom: 100px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease-spring), border-color 0.3s, background 0.3s;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--lime) 35%, var(--line));
  background: var(--surface-hover);
}

.stat-card.accent {
  background: linear-gradient(135deg, color-mix(in srgb, var(--lime) 12%, var(--bg-elevated)), var(--surface));
  border-color: color-mix(in srgb, var(--lime) 25%, var(--line));
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-value.glow {
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 8px color-mix(in srgb, var(--lime) 40%, transparent)); }
  50% { filter: drop-shadow(0 0 20px color-mix(in srgb, var(--cyan) 60%, transparent)); }
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

/* Section head */
.section-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 40px;
}

.section-head.compact {
  margin-bottom: 20px;
}

.section-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.1em;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* Profile bento */
.profile {
  margin-bottom: 100px;
}

.profile-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.bento-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.4s var(--ease-spring);
}

.bento-card:hover {
  border-color: color-mix(in srgb, var(--cyan) 30%, var(--line));
  transform: translateY(-4px);
}

.bento-main {
  grid-row: span 2;
  font-size: 1.05rem;
  color: var(--muted);
  display: flex;
  align-items: center;
}

.bento-accent {
  background: linear-gradient(145deg, color-mix(in srgb, var(--violet) 15%, var(--bg-elevated)), var(--surface));
}

.bento-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--cyan);
}

.bento-quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
}

.bento-map {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}

.map-pin {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 16px var(--pink);
  animation: pulse-dot 2s ease-in-out infinite;
}

.map-city {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

.map-addr {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Areas mosaic */
.areas {
  margin-bottom: 100px;
}

.areas-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.area-tile {
  position: relative;
  padding: 28px 24px 48px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), border-color 0.3s, background 0.3s;
}

.area-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), color-mix(in srgb, var(--lime) 12%, transparent), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.area-tile:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: color-mix(in srgb, var(--lime) 30%, var(--line));
  background: var(--surface-hover);
}

.area-tile:hover::before {
  opacity: 1;
}

.area-tile.wide {
  grid-column: span 2;
}

.area-tile.tall {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.area-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--lime) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--lime) 25%, var(--line));
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--lime);
}

.area-tile h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
}

.area-tile p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

.area-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 1.2rem;
  color: var(--muted);
  transition: transform 0.3s var(--ease-spring), color 0.3s;
}

.area-tile:hover .area-arrow {
  transform: translate(4px, -4px);
  color: var(--lime);
}

/* Values */
.values {
  margin-bottom: 100px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.value-card {
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease-spring), border-color 0.3s;
}

.value-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  border-color: color-mix(in srgb, var(--pink) 35%, var(--line));
}

.value-card.featured {
  background: linear-gradient(160deg, color-mix(in srgb, var(--pink) 12%, var(--bg-elevated)), var(--surface));
  border-color: color-mix(in srgb, var(--pink) 30%, var(--line));
}

.value-card.featured:hover {
  transform: translateY(-8px) rotate(1deg);
}

.value-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--text) 12%, transparent);
  transition: color 0.3s;
}

.value-card:hover .value-num {
  color: var(--pink);
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Timeline process */
.process {
  margin-bottom: 100px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.timeline-line {
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 2px;
  background: var(--line);
  z-index: 0;
}

.timeline-progress {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--gradient);
  border-radius: 2px;
  transition: width 1.2s var(--ease-out);
}

.timeline-step {
  position: relative;
  z-index: 1;
}

.step-marker {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--line);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--muted);
  transition: border-color 0.4s, color 0.4s, box-shadow 0.4s, transform 0.4s var(--ease-spring);
}

.timeline-step.active .step-marker {
  border-color: var(--lime);
  color: var(--lime);
  box-shadow: 0 0 24px color-mix(in srgb, var(--lime) 35%, transparent);
  transform: scale(1.08);
}

.step-body {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s, transform 0.4s var(--ease-spring);
}

.timeline-step:hover .step-body {
  border-color: color-mix(in srgb, var(--cyan) 30%, var(--line));
  transform: translateY(-4px);
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-body p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

/* CTA banner */
.cta-banner {
  position: relative;
  margin-bottom: 100px;
  padding: 56px 48px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid color-mix(in srgb, var(--lime) 25%, var(--line));
  background: linear-gradient(135deg, color-mix(in srgb, var(--lime) 8%, var(--bg-elevated)), color-mix(in srgb, var(--violet) 10%, var(--bg-elevated)));
  overflow: hidden;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.cta-copy p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 480px;
}

.btn.cta-btn {
  flex-shrink: 0;
  background: var(--text);
  color: var(--bg);
  padding: 18px 36px;
  font-size: 0.95rem;
}

.btn.cta-btn:hover {
  box-shadow: 0 8px 40px rgba(255, 255, 255, 0.15);
}

.cta-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, color-mix(in srgb, var(--lime) 8%, transparent), transparent 30%);
  animation: cta-shine 8s linear infinite;
  pointer-events: none;
}

@keyframes cta-shine {
  to { transform: rotate(360deg); }
}

/* Contact */
.contact {
  margin-bottom: 40px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-lead {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 380px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s, transform 0.3s var(--ease-spring);
}

.contact-list li:hover {
  border-color: color-mix(in srgb, var(--cyan) 30%, var(--line));
  transform: translateX(6px);
}

.contact-icon {
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0.7;
}

.contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-list a {
  font-weight: 600;
  transition: color 0.25s;
}

.contact-list a:hover {
  color: var(--cyan);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 18px;
  background: rgba(7, 7, 13, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--lime) 50%, var(--line));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--lime) 12%, transparent);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  align-self: flex-start;
  margin-top: 4px;
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 32px 16px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  transition: opacity 0.25s;
}

.footer-logo:hover {
  opacity: 0.7;
}

.footer p {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-stage {
    min-height: 340px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-bento {
    grid-template-columns: 1fr;
  }

  .bento-main {
    grid-row: span 1;
  }

  .areas-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .area-tile.wide,
  .area-tile.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }

  .timeline-line {
    display: none;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: rgba(7, 7, 13, 0.97);
    backdrop-filter: blur(24px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s, visibility 0.35s;
    z-index: 150;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav a {
    font-size: 1.4rem;
    font-family: var(--font-display);
    font-weight: 700;
    padding: 12px 24px;
  }

  .nav a::after {
    display: none;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 201;
  }

  .header {
    top: 12px;
    padding: 8px 10px 8px 16px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 20px);
  }

  .hero-scroll {
    display: none;
  }

  .hero-float-card {
    right: 0;
    bottom: -20px;
  }

  .stats-grid,
  .values-grid,
  .areas-mosaic,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .cta-banner {
    padding: 40px 28px;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
