:root {
  --bg: #06080f;
  --bg-elevated: #0c1019;
  --surface: #111827;
  --surface-hover: #161f30;
  --text: #f0f4fc;
  --muted: #8b9ab8;
  --accent: #00e5b8;
  --accent-2: #ff5c38;
  --accent-3: #5b7fff;
  --line: rgba(255, 255, 255, 0.08);
  --glow: rgba(0, 229, 184, 0.35);
  --radius: 20px;
  --radius-sm: 12px;
  --header-h: 76px;
  --max-w: 1240px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 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);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  cursor: default;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 184, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

body.cursor-ready .cursor-glow {
  opacity: 1;
}

@media (hover: none) {
  .cursor-glow {
    display: none;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
  max-width: calc(var(--max-w) + 48px);
  margin: 0 auto;
  padding: 0 24px;
  background: rgba(6, 8, 15, 0.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color 0.3s, background 0.3s;
}

body.scrolled .header {
  border-bottom-color: var(--line);
  background: rgba(6, 8, 15, 0.92);
}

.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.1s linear;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  flex-shrink: 0;
  z-index: 1;
}

.logo-sm {
  font-size: 1rem;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  position: relative;
  overflow: hidden;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.25));
}

.logo-letter {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--bg);
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: 999px;
  transition: color 0.25s, background 0.25s;
  position: relative;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
}

.lang-toggle,
.menu-toggle {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.2s var(--ease-spring);
}

.lang-toggle {
  padding: 9px 16px;
  border-radius: 999px;
}

.lang-toggle:hover {
  border-color: rgba(0, 229, 184, 0.4);
  background: rgba(0, 229, 184, 0.08);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 14px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Main */
main {
  position: relative;
  z-index: 1;
}

section {
  padding: 100px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-head {
  margin-bottom: 48px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.section-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent);
  padding-top: 8px;
  flex-shrink: 0;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-sub {
  margin-top: 10px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 50ch;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 229, 184, 0.06);
  animation: tagPulse 3s ease-in-out infinite;
}

@keyframes tagPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 229, 184, 0); }
  50% { box-shadow: 0 0 20px rgba(0, 229, 184, 0.15); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::before {
  opacity: 1;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), #00c4a0);
  color: var(--bg);
  box-shadow: 0 4px 24px var(--glow);
}

.btn.primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px var(--glow);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn.ghost:hover {
  border-color: rgba(0, 229, 184, 0.4);
  background: rgba(0, 229, 184, 0.06);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  max-width: none;
  padding: calc(var(--header-h) + 48px) 24px 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 12s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  top: -10%;
  right: -5%;
  background: rgba(0, 229, 184, 0.18);
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  bottom: 10%;
  left: -8%;
  background: rgba(255, 92, 56, 0.14);
  animation-delay: -4s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 40%;
  background: rgba(91, 127, 255, 0.12);
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  flex: 1;
  padding-bottom: 48px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-title-main {
  display: block;
  background: linear-gradient(135deg, var(--text) 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleShimmer 6s ease-in-out infinite;
  background-size: 200% auto;
}

@keyframes titleShimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-text {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 48ch;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.scroll-hint {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: bounceHint 2s ease-in-out infinite;
}

.scroll-hint::after {
  content: "↓";
  font-size: 1rem;
  color: var(--accent);
}

@keyframes bounceHint {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orbit {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-3)) border-box;
  animation: orbitSpin 20s linear infinite;
}

.orbit-ring::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  animation: orbitSpin 30s linear infinite reverse;
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

.hero-orbit-letter {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.hero-orbit-words {
  margin-top: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.float-card {
  position: absolute;
  padding: 12px 18px;
  background: rgba(17, 24, 39, 0.85);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: floatCard 5s ease-in-out infinite;
}

.float-icon {
  font-size: 1rem;
}

.float-card-1 {
  top: 8%;
  left: 0;
  animation-delay: 0s;
}

.float-card-2 {
  top: 5%;
  right: 0;
  animation-delay: -1.5s;
}

.float-card-3 {
  bottom: 12%;
  left: 10%;
  animation-delay: -3s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

/* Marquee */
.marquee-wrap {
  position: relative;
  width: 100%;
  padding: 20px 0 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(12, 16, 25, 0.6);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 48px;
}

.marquee span::after {
  content: "◆";
  font-size: 0.5rem;
  color: var(--accent);
}

@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}

/* Metrics */
.metrics {
  max-width: none;
  padding: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 229, 184, 0.03), transparent);
}

.metrics-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
}

.metrics-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 40px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.metric-card {
  text-align: center;
  padding: 36px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease-spring), border-color 0.3s;
}

.metric-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 184, 0.3);
}

.metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 8px;
}

.metric-card p {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

/* Bento profile */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 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: transform 0.4s var(--ease-spring), border-color 0.3s;
}

.bento-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.bento-main {
  grid-column: 1 / 3;
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.75;
}

.bento-accent h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 12px 0 8px;
}

.bento-accent p {
  font-size: 0.9rem;
  color: var(--muted);
}

.bento-icon {
  font-size: 1.5rem;
}

.bento-visual {
  grid-row: 1 / 3;
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--surface), rgba(0, 229, 184, 0.08));
  min-height: 280px;
}

.bento-pattern {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(0, 229, 184, 0.04) 10px,
      rgba(0, 229, 184, 0.04) 11px
    );
  animation: patternShift 20s linear infinite;
}

@keyframes patternShift {
  to { transform: translate(20px, 20px); }
}

.bento-big-letter {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.5;
  animation: letterPulse 4s ease-in-out infinite;
}

@keyframes letterPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 0.7; }
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.value-card {
  position: relative;
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.3s;
  transform-style: preserve-3d;
}

.value-card:hover {
  border-color: rgba(0, 229, 184, 0.25);
}

.value-card:hover .value-glow {
  opacity: 1;
}

.value-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  margin-bottom: 20px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.value-glow {
  position: absolute;
  bottom: -40%;
  right: -40%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

/* Areas horizontal scroll */
.areas {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.areas .section-head {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.areas-track-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 24px 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

.areas-track-wrap::-webkit-scrollbar {
  height: 6px;
}

.areas-track-wrap::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

.areas-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding-right: 24px;
}

.area-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease-spring), border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.area-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.area-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0, 229, 184, 0.3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.area-card:hover::before {
  transform: scaleX(1);
}

.area-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

.area-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
}

.area-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Timeline process */
.timeline {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 48px;
}

.timeline-line {
  position: absolute;
  left: 19px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}

.timeline-progress {
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  transition: height 0.1s linear;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 28px 0;
  position: relative;
}

.step-marker {
  position: absolute;
  left: -48px;
  top: 32px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--line);
  display: grid;
  place-items: center;
  transition: border-color 0.3s, box-shadow 0.3s;
  z-index: 1;
}

.step-card.visible .step-marker {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--glow);
}

.step-marker span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent);
}

.step-body {
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease-spring), border-color 0.3s;
}

.step-card:hover .step-body {
  transform: translateX(8px);
  border-color: rgba(0, 229, 184, 0.2);
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-body p {
  font-size: 0.92rem;
  color: var(--muted);
}

/* CTA banner */
.cta-banner {
  position: relative;
  max-width: none;
  padding: 0 24px;
  overflow: hidden;
}

.cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 48px;
  background: linear-gradient(135deg, rgba(0, 229, 184, 0.12), rgba(91, 127, 255, 0.1));
  border: 1px solid rgba(0, 229, 184, 0.2);
  border-radius: calc(var(--radius) + 8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-content p {
  color: var(--muted);
  font-size: 1rem;
}

.cta-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(0, 229, 184, 0.08), transparent 30%);
  animation: ctaRotate 8s linear infinite;
  pointer-events: none;
}

@keyframes ctaRotate {
  to { transform: rotate(360deg); }
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 2px 16px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: transform 0.3s var(--ease-spring), border-color 0.3s;
}

a.contact-card:hover {
  transform: translateX(6px);
  border-color: rgba(0, 229, 184, 0.3);
}

.contact-icon {
  grid-row: 1 / 3;
  font-size: 1.4rem;
  align-self: center;
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-value {
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label.full {
  grid-column: 1 / -1;
}

.contact-form label span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(0, 229, 184, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 229, 184, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form .btn {
  grid-column: 1 / -1;
  justify-self: start;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 32px 24px 48px;
  margin-top: 40px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer p {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .scroll-hint {
    justify-content: center;
  }

  .hero-visual {
    height: 360px;
    max-width: 400px;
    margin: 0 auto;
  }

  .metrics-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento-main {
    grid-column: 1 / -1;
  }

  .bento-visual {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 200px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    background: rgba(6, 8, 15, 0.97);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  }

  body.menu-open .nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav a {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
  }

  section {
    padding: 72px 20px;
  }

  .metrics-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .float-card-2 {
    right: -10px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .timeline {
    padding-left: 40px;
  }

  .step-marker {
    left: -40px;
    width: 32px;
    height: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .marquee {
    animation: none;
  }
}
