/* Palette seed: АЙТІ ТЕРРА → hue 356 */
:root {
  --bg-hue: 228;
  --accent-hue: 356;
  --accent-two-hue: 162;

  --bg: hsl(228, 38%, 4%);
  --bg-elevated: hsl(228, 28%, 9%);
  --text: hsl(228, 18%, 95%);
  --accent: hsl(356, 88%, 62%);
  --accent-two: hsl(162, 72%, 52%);
  --accent-three: hsl(262, 80%, 65%);
  --panel: hsla(228, 24%, 12%, 0.72);
  --muted: hsla(228, 12%, 72%, 0.85);
  --line: hsla(228, 18%, 100%, 0.08);

  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --header-h: 76px;
  --max-w: 1240px;
  --font-display: "Syne", system-ui, sans-serif;
  --font: "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);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

/* ── Background canvas ── */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: orbFloat 18s ease-in-out infinite;
}

.orb-1 {
  width: 55vw;
  height: 55vw;
  max-width: 600px;
  max-height: 600px;
  top: -10%;
  left: -8%;
  background: radial-gradient(circle, hsla(356, 88%, 55%, 0.45), transparent 70%);
  animation-delay: 0s;
}

.orb-2 {
  width: 45vw;
  height: 45vw;
  max-width: 500px;
  max-height: 500px;
  top: 30%;
  right: -12%;
  background: radial-gradient(circle, hsla(162, 72%, 45%, 0.35), transparent 70%);
  animation-delay: -6s;
}

.orb-3 {
  width: 35vw;
  height: 35vw;
  max-width: 400px;
  max-height: 400px;
  bottom: 5%;
  left: 25%;
  background: radial-gradient(circle, hsla(262, 80%, 55%, 0.3), transparent 70%);
  animation-delay: -12s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 25px) scale(0.95); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(hsla(228, 18%, 100%, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, hsla(228, 18%, 100%, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
}

.noise {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(356, 88%, 55%, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

body.has-cursor .cursor-glow {
  opacity: 1;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: calc(100% - 2rem);
  max-width: var(--max-w);
  padding: 0.6rem 0.6rem 0.6rem 1.1rem;
  background: hsla(228, 24%, 10%, 0.55);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  transition: background 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}

.header.is-scrolled {
  background: hsla(228, 24%, 8%, 0.88);
  border-color: hsla(356, 88%, 62%, 0.15);
  box-shadow: 0 8px 40px hsla(228, 38%, 2%, 0.6);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.logo-ring {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-two));
  padding: 2px;
  animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 0 0 hsla(356, 88%, 62%, 0.3); }
  50% { box-shadow: 0 0 0 8px hsla(356, 88%, 62%, 0); }
}

.logo-letter {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lang-toggle,
.menu-toggle {
  border: 1px solid var(--line);
  background: hsla(228, 18%, 100%, 0.04);
  color: var(--text);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.78rem;
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease-spring);
}

.lang-toggle {
  padding: 0.42rem 0.8rem;
}

.lang-toggle:hover,
.menu-toggle:hover {
  border-color: hsla(356, 88%, 62%, 0.4);
  background: hsla(356, 88%, 62%, 0.1);
  transform: scale(1.04);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 38px;
  height: 38px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav a {
  position: relative;
  padding: 0.42rem 0.75rem;
  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: linear-gradient(90deg, var(--accent), var(--accent-two));
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s var(--ease-out);
}

.nav a:hover,
.nav a.is-active {
  color: var(--text);
}

.nav a.is-active::after {
  width: 50%;
}

/* ── Main ── */
main {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--header-h) + 2rem) 1.25rem 5rem;
}

section {
  padding: 5rem 0;
}

.section-label {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.section-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.section-label h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-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; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), hsl(330, 80%, 55%));
  color: #fff;
  box-shadow: 0 4px 24px hsla(356, 88%, 50%, 0.35);
}

.btn.primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-two), var(--accent));
  opacity: 0;
  transition: opacity 0.3s;
}

.btn.primary:hover::before {
  opacity: 1;
}

.btn.primary span,
.btn.primary {
  position: relative;
  z-index: 1;
}

.btn.ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn.ghost:hover {
  border-color: hsla(162, 72%, 52%, 0.4);
  background: hsla(162, 72%, 52%, 0.06);
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - var(--header-h) - 4rem);
  padding-bottom: 2rem;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem 0.4rem 0.65rem;
  background: hsla(356, 88%, 62%, 0.08);
  border: 1px solid hsla(356, 88%, 62%, 0.2);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: tagBlink 2s ease-in-out infinite;
}

@keyframes tagBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.hero-title .line {
  display: block;
  background: linear-gradient(135deg, var(--text) 40%, hsla(228, 18%, 95%, 0.6));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 50ch;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3rem;
}

.scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.scroll-line {
  width: 48px;
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Hero orbit */
.hero-orbit {
  position: relative;
  width: min(420px, 90vw);
  height: min(420px, 90vw);
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.orbit-ring-1 {
  inset: 0;
  animation: spinSlow 30s linear infinite;
  border-color: hsla(356, 88%, 62%, 0.15);
}

.orbit-ring-2 {
  inset: 12%;
  animation: spinSlow 22s linear infinite reverse;
  border-style: dashed;
  border-color: hsla(162, 72%, 52%, 0.12);
}

.orbit-ring-3 {
  inset: 24%;
  animation: spinSlow 18s linear infinite;
  border-color: hsla(262, 80%, 65%, 0.1);
}

@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

.hero-core {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsla(356, 88%, 62%, 0.2), hsla(162, 72%, 52%, 0.15));
  border: 1px solid hsla(356, 88%, 62%, 0.3);
  display: grid;
  place-items: center;
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 60px hsla(356, 88%, 55%, 0.2),
    inset 0 0 40px hsla(356, 88%, 55%, 0.05);
  animation: corePulse 5s ease-in-out infinite;
}

@keyframes corePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 60px hsla(356, 88%, 55%, 0.2), inset 0 0 40px hsla(356, 88%, 55%, 0.05); }
  50% { transform: scale(1.04); box-shadow: 0 0 80px hsla(356, 88%, 55%, 0.3), inset 0 0 50px hsla(356, 88%, 55%, 0.08); }
}

.hero-core-letter {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-two));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.orbit-chip {
  position: absolute;
  padding: 0.45rem 0.9rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  animation: chipFloat 6s ease-in-out infinite;
}

.chip-1 { top: 8%; right: 5%; animation-delay: 0s; }
.chip-2 { bottom: 15%; left: 0; animation-delay: -2s; }
.chip-3 { bottom: 8%; right: 10%; animation-delay: -4s; }

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Stats ── */
.stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 2rem 0;
  margin: 1rem 0 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
}

.stat-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem 1.5rem;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--accent), var(--accent-two));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-num.stat-text {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--line);
  flex-shrink: 0;
}

/* ── Marquee ── */
.marquee-wrap {
  overflow: hidden;
  margin: 3rem -1.25rem;
  padding: 1.25rem 0;
  border-block: 1px solid var(--line);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee span {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px hsla(228, 18%, 100%, 0.15);
  white-space: nowrap;
  transition: -webkit-text-stroke-color 0.3s;
}

.marquee span:hover {
  -webkit-text-stroke-color: hsla(356, 88%, 62%, 0.5);
}

@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}

/* ── Profile bento ── */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.bento-main {
  grid-column: 1 / -1;
  padding: 2rem 2.25rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.bento-main p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 72ch;
  line-height: 1.75;
}

.bento-card {
  padding: 1.75rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, transform 0.4s var(--ease-out);
}

.bento-card:hover {
  border-color: hsla(356, 88%, 62%, 0.25);
}

.bento-accent {
  background: linear-gradient(135deg, hsla(356, 88%, 62%, 0.1), hsla(162, 72%, 52%, 0.06));
  border-color: hsla(356, 88%, 62%, 0.15);
}

.bento-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  color: var(--accent);
}

.bento-icon svg {
  width: 100%;
  height: 100%;
}

.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.bento-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Areas mosaic ── */
.areas-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.area-tile {
  position: relative;
  padding: 1.75rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.35s, transform 0.4s var(--ease-out);
}

.area-tile:hover {
  border-color: hsla(162, 72%, 52%, 0.3);
}

.area-tile:hover .area-glow {
  opacity: 1;
}

.area-tile-lg {
  grid-column: span 2;
  grid-row: span 1;
}

.area-tile-wide {
  grid-column: span 2;
}

.area-index {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-two);
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

.area-tile h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.6rem;
}

.area-tile p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

.area-glow {
  position: absolute;
  bottom: -40%;
  right: -20%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(162, 72%, 52%, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

/* ── Timeline process ── */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.timeline-line {
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}

.timeline-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-two));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s var(--ease-out);
}

.timeline-line.is-filled::after {
  transform: scaleX(1);
}

.timeline-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.timeline-node {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  transition: border-color 0.4s, color 0.4s, box-shadow 0.4s, transform 0.4s var(--ease-spring);
}

.timeline-step.is-active .timeline-node {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 24px hsla(356, 88%, 55%, 0.25);
  transform: scale(1.08);
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.timeline-content p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 22ch;
  margin: 0 auto;
}

/* ── Why us ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.why-card {
  padding: 2rem 1.5rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-two));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  border-color: hsla(356, 88%, 62%, 0.2);
}

.why-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: hsla(228, 18%, 100%, 0.04);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── CTA banner ── */
.cta-banner {
  position: relative;
  margin: 2rem 0;
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, hsla(356, 88%, 55%, 0.15), hsla(162, 72%, 45%, 0.1));
  border: 1px solid hsla(356, 88%, 62%, 0.2);
  overflow: hidden;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-text-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.cta-text-block p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 42ch;
}

.btn.cta-btn {
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
  padding: 1rem 2rem;
  flex-shrink: 0;
}

.btn.cta-btn:hover {
  box-shadow: 0 8px 32px hsla(228, 18%, 95%, 0.2);
}

.cta-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, hsla(356, 88%, 62%, 0.08), transparent 30%);
  animation: ctaShine 8s linear infinite;
  pointer-events: none;
}

@keyframes ctaShine {
  to { transform: rotate(360deg); }
}

/* ── Contact ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-lead {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1.75rem;
  max-width: 40ch;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s, background 0.3s;
}

.contact-card:hover {
  border-color: hsla(356, 88%, 62%, 0.25);
  background: hsla(356, 88%, 62%, 0.04);
}

.contact-card-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: hsla(356, 88%, 62%, 0.1);
  color: var(--accent);
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
}

.contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.contact-value {
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 2rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.form-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(162, 72%, 52%, 0.12), transparent 70%);
  pointer-events: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: hsla(228, 38%, 4%, 0.5);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: hsla(356, 88%, 62%, 0.4);
  box-shadow: 0 0 0 3px hsla(356, 88%, 62%, 0.08);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  align-self: flex-start;
  margin-top: 0.25rem;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1.25rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

.footer-logo .logo-letter {
  width: 28px;
  height: 28px;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-two));
  color: var(--bg);
}

.footer p {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── Tilt effect ── */
[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }

  .hero-text {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .scroll-hint {
    justify-content: center;
  }

  .hero-right {
    order: -1;
  }

  .hero-orbit {
    width: min(320px, 80vw);
    height: min(320px, 80vw);
  }

  .bento {
    grid-template-columns: 1fr 1fr;
  }

  .bento-main {
    grid-column: 1 / -1;
  }

  .areas-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .area-tile-lg,
  .area-tile-wide {
    grid-column: span 1;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .timeline-line {
    display: none;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: calc(var(--header-h) + 12px);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: hsla(228, 24%, 8%, 0.95);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    backdrop-filter: blur(24px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(0.98);
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .nav a {
    padding: 0.8rem 1rem;
  }

  .nav a::after {
    display: none;
  }

  .stats {
    flex-direction: column;
    gap: 0.5rem;
  }

  .stat-divider {
    width: 48px;
    height: 1px;
  }

  .bento,
  .areas-mosaic,
  .why-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-text-block p {
    margin-inline: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@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;
  }

  .cursor-glow {
    display: none;
  }
}
