/* ============================================================
   KIDSCORP CREATIVE STUDIO — Landing page
   Built on the Kidscorp Design System 2.0 tokens.
   Mirrors the visual language of U18 DSP.
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Roboto+Mono:wght@400;500&display=swap");

:root {
  --kc-violet-100: #E8DEFF;
  --kc-violet-200: #D3BBFE;
  --kc-violet-300: #C098FD;
  --kc-violet-400: #AF72FC;
  --kc-violet-500: #9F44FB;
  --kc-violet-600: #8812E3;
  --kc-violet-700: #680CAF;
  --kc-violet-800: #4A057D;
  --kc-violet-900: #2F0544;
  --kc-fuchsia-100: #CC95F7;
  --kc-fuchsia-500: #B33AF0;
  --kc-fuchsia-900: #6E1A98;
  --kc-cyan-100: #D1ECFF;
  --kc-cyan-300: #4CCBFF;
  --kc-cyan-900: #008EB8;
  --kc-success-500: #08A045;
  --kc-alert-500: #F35B04;
  --kc-error-500: #D90429;

  --kc-base-0: #FAFAFC;
  --kc-base-100: #DFDFDF;
  --kc-base-200: #C4C4C4;
  --kc-base-300: #A6A6A6;
  --kc-base-400: #8B8B8B;
  --kc-base-500: #6F6F6F;
  --kc-base-600: #575757;
  --kc-base-700: #3E3E3E;
  --kc-base-800: #282828;
  --kc-base-900: #121212;

  --kc-font-display: "Montserrat", ui-sans-serif, system-ui, sans-serif;
  --kc-font-body: "Montserrat", ui-sans-serif, system-ui, sans-serif;
  --kc-font-mono: "Roboto Mono", ui-monospace, monospace;

  --kc-gradient-ribbon: linear-gradient(135deg, #8D14FA 0%, #9414FA 8%, #C71BFA 70%, #DB1EFA 100%);
  --font-display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Roboto Mono", monospace;

  --display-mega: clamp(56px, 9.5vw, 156px);
  --display-xxl: clamp(48px, 7.5vw, 124px);
  --display-xl: clamp(40px, 5.4vw, 88px);
  --display-l: clamp(32px, 4.2vw, 68px);
  --display-m: clamp(28px, 3.4vw, 52px);

  --space-section: clamp(80px, 9vw, 160px);
  --space-section-tight: clamp(60px, 6vw, 110px);
  --wrap-max: 1400px;
  --wrap-pad: clamp(20px, 4vw, 64px);

  --r-card: 18px;
  --r-card-lg: 28px;
  --r-pill: 999px;
  --r-notch: 105px;

  --bg: var(--kc-base-0);
  --bg-alt: #F2F2F4;
  --fg: var(--kc-base-900);
  --fg-dim: var(--kc-base-500);
  --fg-faint: var(--kc-base-400);
  --hairline: rgba(18,18,18,0.10);
  --hairline-strong: rgba(18,18,18,0.18);
  --card: #FFFFFF;
  --card-2: #F6F4FA;

  --accent: var(--kc-fuchsia-500);
  --accent-2: var(--kc-cyan-300);
  --accent-3: var(--kc-violet-500);
}

[data-palette="violet"] { --accent: var(--kc-violet-500); --accent-3: var(--kc-fuchsia-500); }
[data-palette="cyan"]   { --accent: var(--kc-cyan-300);   --accent-3: var(--kc-violet-500); }
[data-palette="fuchsia"]{ --accent: var(--kc-fuchsia-500);--accent-3: var(--kc-violet-500); }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--kc-font-body);
  background: var(--bg);
  color: var(--fg);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---------- Layout ---------- */
.wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding-left: var(--wrap-pad);
  padding-right: var(--wrap-pad);
}
.wrap-wide {
  max-width: 1640px;
  margin: 0 auto;
  padding-left: var(--wrap-pad);
  padding-right: var(--wrap-pad);
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--kc-font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9414FA;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: #9414FA;
  display: inline-block;
  flex-shrink: 0;
}

.hero .eyebrow,
.section-dark .eyebrow {
  color: #ffffff;
}
.hero .eyebrow::before,
.section-dark .eyebrow::before {
  background: #ffffff;
}

h1, h2, h3, h4 { font-family: var(--kc-font-display); margin: 0; letter-spacing: -0.025em; }
.display-mega { font-size: var(--display-mega); font-weight: 800; line-height: 0.95; letter-spacing: -0.035em; }
.display-xxl  { font-size: var(--display-xxl);  font-weight: 800; line-height: 0.95; letter-spacing: -0.035em; }
.display-xl   { font-size: var(--display-xl);   font-weight: 700; line-height: 1.02; letter-spacing: -0.03em; }
.display-l    { font-size: clamp(28px, 3vw, 46px); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; margin: 16px 0 20px; }
.display-m    { font-size: clamp(22px, 2.2vw, 34px); font-weight: 700; line-height: 1.1; letter-spacing: -0.018em; margin: 0 0 16px; }

em.brand-em,
.hero h1 em,
h2 em:not([style]) {
  font-style: normal;
  font-weight: 800;
  color: #9414FA;
}

.lead {
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.5;
  color: var(--fg-dim);
  max-width: 60ch;
  margin-bottom: 28px;
}

.section-lead {
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.6;
  color: var(--fg-dim);
  max-width: 60ch;
  margin-bottom: 28px;
}

.mono { font-family: var(--kc-font-mono); }

.material-symbols-rounded {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 220ms cubic-bezier(0.2,0.8,0.2,1), background 200ms, color 200ms, box-shadow 200ms;
  white-space: nowrap;
}
.btn .material-symbols-rounded { font-size: 20px; transition: transform 220ms; }
.btn-primary {
  background: linear-gradient(135deg, var(--kc-fuchsia-900) 0%, var(--kc-fuchsia-500) 50%, var(--kc-violet-500) 100%);
  background-size: 200% 100%;
  color: #fff;
  box-shadow: 0 8px 28px -8px rgba(179,58,240,0.55);
}
.btn-primary:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -8px rgba(179,58,240,0.7);
}
.btn-primary:hover .material-symbols-rounded { transform: translateX(3px); }
.btn-ghost {
  background: transparent;
  color: currentColor;
  border: 1px solid var(--hairline-strong);
}
.btn-ghost:hover { background: rgba(179,58,240,0.06); border-color: var(--accent); color: var(--accent); }
.btn-ghost-dark { color: #fff; border-color: rgba(255,255,255,0.20); }
.btn-ghost-dark:hover { background: rgba(255,255,255,0.06); border-color: var(--accent-2); color: var(--accent-2); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 700ms cubic-bezier(0.2,0.8,0.2,1), transform 700ms cubic-bezier(0.2,0.8,0.2,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }
.reveal-delay-5 { transition-delay: 400ms; }
[data-anim="0"] .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
  overflow: hidden;
}
.section-tight { padding-top: var(--space-section-tight); padding-bottom: var(--space-section-tight); }
.section-dark {
  background: var(--kc-base-900);
  color: #F5F2FA;
  --fg: #F5F2FA;
  --fg-dim: rgba(245,242,250,0.62);
  --fg-faint: rgba(245,242,250,0.42);
  --hairline: rgba(255,255,255,0.10);
  --hairline-strong: rgba(255,255,255,0.20);
  --card: rgba(255,255,255,0.04);
  --card-2: rgba(255,255,255,0.06);
  --bg: var(--kc-base-900);
}
.section-light {
  background: var(--kc-base-0);
  color: var(--kc-base-900);
}

/* Blobs */
.blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  z-index: 0;
}
.blob-violet  { background: radial-gradient(circle, var(--kc-violet-500)  0%, transparent 60%); }
.blob-fuchsia { background: radial-gradient(circle, var(--kc-fuchsia-500) 0%, transparent 60%); }
.blob-cyan    { background: radial-gradient(circle, var(--kc-cyan-300)    0%, transparent 60%); }

/* Grain */
.grain::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.45'/></svg>");
  opacity: 0.08;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 180px 0 120px;
  background: var(--kc-base-900);
  color: #fff;
  --fg: #F5F2FA;
  --fg-dim: rgba(245,242,250,0.62);
  --hairline: rgba(255,255,255,0.10);
  --card: rgba(255,255,255,0.04);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(179,58,240,0.55) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(159,68,251,0.20) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 0% 50%, rgba(76,203,255,0.12) 0%, transparent 60%),
    var(--kc-base-900);
  z-index: 0;
}
.hero .iso-watermark {
  position: absolute;
  bottom: -180px; right: -120px;
  width: 720px;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}
.hero .blob-1 {
  width: 520px; height: 520px;
  left: -120px; top: 30%;
  z-index: 0; opacity: 0.30;
  will-change: transform;
}
.hero .blob-2 {
  width: 460px; height: 460px;
  right: -100px; bottom: -80px;
  z-index: 0; opacity: 0.40;
  will-change: transform;
}
.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 100px);
  align-items: center;
}
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; justify-items: center; text-align: center; }
}

.hero-content { max-width: 560px; align-self: start; }

.hero h1 {
  font-size: clamp(34px, 4.2vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
}
.hero h1 em {
  font-style: normal;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #9414FA;
  font-weight: 800;
}
.hero .lead { color: rgba(245,242,250,0.75); max-width: 34ch; margin-bottom: 36px; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 1100px) {
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero .cta-row { justify-content: center; }
}

/* ---------- Hero image carousel (3D rotating) ---------- */
.hero-ui {
  perspective: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: start;
  width: 100%;
  margin-top: 72px;
}
@media (max-width: 1100px) {
  .hero-ui { justify-self: center; margin-top: 0; }
}
.scene {
  margin: 0 auto 20px;
  width: 240px;
  height: 400px;
  perspective: 2000px;
  position: relative;
  z-index: 2;
}
.mockup-phone {
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 32px;
  width: 240px;
  height: 400px;
  position: absolute;
  z-index: 100;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
.mockup-phone::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  width: 60px;
  height: 10px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 0 0 5px 5px;
  transform: translateX(-50%);
}
.carousel {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transition: transform 1s;
}
.carousel__cell {
  position: absolute;
  width: 224px;
  height: 344px;
  left: 8px;
  top: 8px;
  border-radius: 22px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.65);
  transition: transform 1s, opacity 1s;
}
.carousel__cell-1, .carousel__cell-8  { background-image: url("assets/carousel-1.jpg"); }
.carousel__cell-2, .carousel__cell-9  { background-image: url("assets/carousel-2.jpg"); }
.carousel__cell-3, .carousel__cell-10 { background-image: url("assets/carousel-3.jpg"); }
.carousel__cell-4, .carousel__cell-11 { background-image: url("assets/carousel-4.jpg"); }
.carousel__cell-5, .carousel__cell-12 { background-image: url("assets/carousel-5.jpg"); }
.carousel__cell-6, .carousel__cell-13 { background-image: url("assets/carousel-6.jpg"); }
.carousel__cell-7, .carousel__cell-14 { background-image: url("assets/carousel-center.jpg"); }

.dots { display: flex; justify-content: center; gap: 8px; position: relative; z-index: 3; }
.dot {
  width: 9px; height: 9px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.3s, transform 0.3s;
  appearance: none;
  position: relative;
}
.dot.active { border-color: #fff; transform: scale(1.15); }
.dot.active::after {
  content: "";
  position: absolute;
  top: 1.5px; left: 1.5px;
  width: 4px; height: 4px;
  background: #fff;
  border-radius: 50%;
}
@media (max-width: 400px) {
  .scene, .mockup-phone { width: 210px; height: 350px; }
  .carousel__cell { width: 194px; height: 300px; }
}

/* ============================================================
   PILLARS
   ============================================================ */
.section-intro {
  text-align: center;
  max-width: 72ch;
  margin: 0 auto 72px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 880px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

.pillar-card {
  background: #ffffff;
  border: 1px solid #8B8B8B;
  border-radius: var(--r-card-lg);
  padding: 32px 28px;
  transition: transform 300ms cubic-bezier(0.2,0.8,0.2,1), box-shadow 300ms, border-color 300ms;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px -12px rgba(179,58,240,0.18);
  border-color: rgba(179,58,240,0.30);
}
.pillar-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--kc-fuchsia-900) 0%, var(--kc-violet-800) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.pillar-icon .material-symbols-rounded { color: var(--kc-fuchsia-100); font-size: 24px; }
.pillar-card h3 {
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.pillar-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--kc-base-500);
  margin: 0;
}

/* ============================================================
   FORMAT SECTIONS
   ============================================================ */
.format-section { isolation: isolate; }
.format-section .wrap { position: relative; z-index: 2; }

.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.format-grid-reverse { direction: rtl; }
.format-grid-reverse > * { direction: ltr; }
@media (max-width: 880px) {
  .format-grid,
  .format-grid-reverse { grid-template-columns: 1fr; direction: ltr; }
  .format-grid-reverse > * { direction: ltr; }
  .format-grid .format-visual { order: -1; }
}

.format-text { display: flex; flex-direction: column; }

.format-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
  padding: 24px;
  background: #222222;
  border: 1px solid #434343;
  border-radius: var(--r-card);
}
.format-features-light {
  background: #ffffff;
  border-color: #8B8B8B;
}
.feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feat .material-symbols-rounded {
  color: var(--accent);
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.feat div { display: flex; flex-direction: column; gap: 3px; }
.feat strong { font-weight: 600; font-size: 15px; }
.feat span { font-size: 14px; color: var(--fg-dim); line-height: 1.5; }

/* Format creative images */
.format-visual { position: relative; }
.format-image {
  width: 100%;
  display: block;
}

/* ============================================================
   PRIVACY
   ============================================================ */
.privacy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
@media (max-width: 880px) {
  .privacy-layout { grid-template-columns: 1fr; }
}

.privacy-text .display-l { margin-bottom: 20px; }

.privacy-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
@media (max-width: 600px) {
  .privacy-badges { grid-template-columns: repeat(2, 1fr); }
}
.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.badge-icon {
  height: 64px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}
.badge-item span {
  font-family: var(--kc-font-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(245,242,250,0.45);
  text-align: center;
}

.privacy-card {
  background: #222222;
  border: 1px solid #434343;
  border-radius: var(--r-card-lg);
  padding: 32px;
}
.privacy-layers {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.privacy-layer {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.privacy-layer:last-child { border-bottom: 0; padding-bottom: 0; }
.privacy-layer .material-symbols-rounded {
  color: var(--accent);
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.privacy-layer div { display: flex; flex-direction: column; gap: 4px; }
.privacy-layer strong { font-weight: 600; font-size: 15px; }
.privacy-layer span { font-size: 14px; color: var(--fg-dim); line-height: 1.5; }

/* ============================================================
   TWEAKS PANEL
   ============================================================ */
.tweaks-panel {
  position: fixed;
  bottom: 28px; right: 28px;
  background: rgba(18,18,18,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-card);
  padding: 18px 20px;
  width: 240px;
  z-index: 1000;
  display: none;
  flex-direction: column;
  gap: 14px;
  font-size: 13px;
  color: rgba(245,242,250,0.80);
}
.tweaks-panel.open { display: flex; }
.tw-header {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--kc-font-mono);
}
.tw-header button { color: rgba(245,242,250,0.50); font-size: 14px; padding: 0; }
.tw-row { display: flex; align-items: center; gap: 10px; }
.tw-row > span:first-child { min-width: 70px; color: rgba(245,242,250,0.50); font-size: 12px; }
.tw-row input[type="range"] { flex: 1; accent-color: var(--accent); }
.seg {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-pill);
  padding: 3px;
}
.seg button {
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-family: var(--kc-font-mono);
  letter-spacing: 0.08em;
  color: rgba(245,242,250,0.50);
  transition: background 200ms, color 200ms;
}
.seg button.on {
  background: var(--accent);
  color: #fff;
}
.palette-swatches {
  display: flex;
  gap: 8px;
}
.palette-swatches button {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 200ms, transform 200ms;
}
.palette-swatches button.on {
  border-color: #fff;
  transform: scale(1.15);
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 720px) {
  .hero { padding: 130px 0 80px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .blob { animation: none !important; }
}

/* ============================================================
   CTA FINAL + FORM (matches Home exactly)
   ============================================================ */
.cta-final {
  padding: 160px 0 180px;
  position: relative;
  overflow: hidden;
}
.cta-final__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(159,68,251,0.38), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(76,203,255,0.24), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(219,30,250,0.22), transparent 65%);
}
.cta-final__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: start;
}
.cta-final__left h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 3.5vw, 52px);
  line-height: 1.05; letter-spacing: -0.025em;
  margin: 18px 0 24px;
  color: #fff;
}
.cta-final__p {
  font-size: clamp(15px, 1.2vw, 19px); line-height: 1.5;
  opacity: 0.78; max-width: 520px;
  margin: 0 0 40px;
}
.cta-final__social { display: flex; gap: 14px; margin-top: 48px; }
.cta-final__social a {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: background .2s, border-color .2s, transform .2s;
  color: #fff;
}
.cta-final__social a:hover {
  background: rgba(76,203,255,0.1);
  border-color: rgba(76,203,255,0.6);
  transform: translateY(-2px);
}
.form {
  background: rgba(12,12,12,0.6);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.form::before {
  content: ""; position: absolute; top: -1px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, #4CCBFF, transparent);
  box-shadow: 0 0 24px #4CCBFF;
}
.form__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; margin: 0 0 28px;
  display: flex; align-items: center; gap: 10px;
  color: #fff;
}
.form__title .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4CCBFF; box-shadow: 0 0 10px #4CCBFF;
  animation: dotPulse 2s ease-out infinite;
  flex-shrink: 0;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(76,203,255,0.2), 0 0 14px #4CCBFF; }
  50%     { box-shadow: 0 0 0 10px rgba(76,203,255,0), 0 0 22px #4CCBFF; }
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form__row--single { grid-template-columns: 1fr; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.6; color: #fff;
}
.form__field input,
.form__field select,
.form__field textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: var(--font-body); font-size: 14px;
  color: #fff;
  transition: border-color .2s, background .2s;
}
.form__field textarea { min-height: 90px; resize: vertical; }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: #4CCBFF;
  background: rgba(76,203,255,0.04);
  box-shadow: 0 0 0 3px rgba(76,203,255,0.15);
}
.form__field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
  cursor: pointer;
}
.form__submit {
  width: 100%; margin-top: 12px;
  padding: 16px 20px; border-radius: 14px;
  background: var(--kc-gradient-ribbon);
  border: 0; color: #fff;
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.06em;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: box-shadow .2s, transform .2s;
  box-shadow: 0 12px 40px -10px rgba(219,30,250,0.7);
}
.form__submit:hover { box-shadow: 0 18px 52px -8px rgba(219,30,250,0.9); transform: translateY(-1px); }
.form__fine { font-size: 12px; opacity: 0.5; margin-top: 16px; text-align: center; color: #fff; }
@media (max-width: 960px) {
  .cta-final__inner { grid-template-columns: 1fr; }
  .form { padding: 28px; }
  .form__row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER (matches Home exactly)
   ============================================================ */
.footer-home {
  background: #0d0d0d;
  padding: 96px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: #fff;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand { max-width: 360px; }
.footer__tagline {
  font-family: var(--font-display); font-weight: 600;
  font-size: 18px; line-height: 1.35;
  margin: 0 0 20px; color: #fff;
}
.footer__col h5 {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0 0 22px; font-weight: 500;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.footer__col a {
  font-family: var(--font-display); font-weight: 600;
  font-size: 15px; opacity: 0.85; color: #fff;
  transition: color .15s, opacity .15s;
}
.footer__col a:hover { color: #4CCBFF; opacity: 1; }
.footer__bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px; opacity: 0.5; color: #fff;
}
.footer__bottom p { margin: 0; max-width: 720px; line-height: 1.5; }
@media (max-width: 960px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* Home section-kicker (used in CTA section — dark background) */
.section-kicker {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: #ffffff;
  display: inline-flex; align-items: center; gap: 10px;
}
.section-kicker::before {
  content: ""; width: 28px; height: 1px; background: #ffffff;
}
