/* ============================================================
   Florian Sln — Premium Portfolio CSS
   Dark silver/purple palette — no red
   ============================================================ */

/* @property declarations for animated borders */
@property --btn-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  --bg-primary: #05060f;
  --bg-secondary: #080916;
  --bg-tertiary: #0c0d1d;
  --bg-card: #0f1025;

  --glass-bg: rgba(186,214,247,0.04);
  --glass-border: rgba(186,214,247,0.10);

  --text-primary: #d0dff4;
  --text-secondary: rgba(200, 215, 238, 0.60);
  --text-muted: rgba(195, 210, 235, 0.35);

  --shimmer: rgba(186,214,247,0.10);
  --shimmer-bright: rgba(186,214,247,0.22);
  --accent: rgba(186,214,247,0.18);
  --border: rgba(186,214,247,0.07);
  --border-bright: rgba(186,214,247,0.14);

  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;

  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  cursor: none;
  overflow-x: hidden;
  position: relative;
}

/* Dot grid background — subtle, fixed */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(186,214,247,0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  cursor: none;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================================
   Page Loader — Minimal premium
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: #04050d;
  z-index: 99998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible;
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-loader::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(160, 185, 220, 0.08) 0%,
    rgba(120, 155, 200, 0.03) 50%,
    transparent 70%
  );
  animation: loader-orb-pulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes loader-orb-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%       { transform: scale(1.12); opacity: 1; }
}

.page-loader.hidden {
  opacity: 0;
  transform: scale(1.03);
  pointer-events: none;
}

.loader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  overflow: visible;
  animation: loader-content-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes loader-content-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.loader-logo {
  font-family: var(--font-head);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(205, 222, 248, 0.88);
  white-space: nowrap;
  overflow: visible;
  padding: 0.15em 0.4em;
  animation: loader-breathe 2.8s ease-in-out infinite;
}

.loader-sln {
  font-style: italic;
  color: #dce8fc;
  display: inline;
  animation: loader-sln-glow 3s ease-in-out infinite;
}

@keyframes loader-sln-glow {
  0%, 100% { text-shadow: 0 0 18px rgba(186,214,247,0.38), 0 0 36px rgba(150,190,240,0.14); opacity: 0.88; }
  50%       { text-shadow: 0 0 32px rgba(186,214,247,0.68), 0 0 64px rgba(150,190,240,0.26); opacity: 1; }
}

@keyframes loader-breathe {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}

.loader-bar {
  width: 100px;
  height: 1px;
  background: rgba(186,214,247,0.07);
  border-radius: 1px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(210,230,255,0.85), rgba(255,255,255,0.9), rgba(210,230,255,0.85), transparent);
  background-size: 200% 100%;
  animation: loader-sweep 1.3s ease-in-out infinite;
}

@keyframes loader-sweep {
  0%   { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}

/* ============================================================
   Custom Cursor
   ============================================================ */
.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  mix-blend-mode: difference;
  will-change: left, top;
}

.cursor-ring {
  position: fixed;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  will-change: left, top;
}

.cursor-ring.hovering {
  width: 52px;
  height: 52px;
  border-color: rgba(160,160,230,0.55);
}

/* ============================================================
   Glass Utility
   ============================================================ */
.glass {
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  box-shadow:
    0 4px 24px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.03);
}

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.35rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition-base), border-color var(--transition-base), padding var(--transition-base), backdrop-filter var(--transition-base);
}

.navbar.scrolled {
  background: rgba(5,6,15,0.82);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(186,214,247,0.07);
  padding: 0.9rem 2.5rem;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: visible;
}

/* Fix shimmer-text in nav/footer — no background-clip rectangle */
.nav-logo .shimmer-text,
.footer-logo .shimmer-text {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: #dce8fc !important;
  color: #dce8fc !important;
  font-style: italic;
  filter: none !important;
  animation: nav-sln-glow 3.5s ease-in-out infinite !important;
}

@keyframes nav-sln-glow {
  0%, 100% { text-shadow: 0 0 12px rgba(186,214,247,0.30); opacity: 0.90; }
  50%       { text-shadow: 0 0 22px rgba(186,214,247,0.55); opacity: 1; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  transition: color var(--transition-base);
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(200,200,240,0.45);
  transition: width var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger — mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: none;
  padding: 4px;
  background: none;
  border: none;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 1px;
  background: var(--text-primary);
  transition: transform var(--transition-base), opacity var(--transition-base), width var(--transition-base);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(7,7,13,0.97);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  transition: opacity var(--transition-base);
}

.mobile-menu a:hover {
  opacity: 0.55;
}

.mobile-menu .mobile-cta {
  margin-top: 1rem;
  font-size: 1rem;
}

/* ===== SILVER METALLIC SHIMMER ===== */
.shimmer-text {
  background: linear-gradient(
    105deg,
    #c0d4f0 0%,
    #e8f4ff 15%,
    #ffffff 28%,
    #f2f8ff 38%,
    #d8eeff 50%,
    #ffffff 62%,
    #eef6ff 72%,
    #ffffff 82%,
    #d4e8fc 92%,
    #b8ccec 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: silver-sweep 3.5s linear infinite;
  filter: drop-shadow(0 0 28px rgba(200,220,255,0.65)) drop-shadow(0 0 10px rgba(255,255,255,0.35));
  font-style: italic;
}

@keyframes silver-sweep {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ============================================================
   Buttons
   ============================================================ */

/* --- Shiny button with animated conic-gradient border --- */
@keyframes spin-angle {
  to { --btn-angle: 360deg; }
}

.btn-shiny {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: none;
  text-decoration: none;
  white-space: nowrap;
  outline: none;
  background:
    linear-gradient(var(--bg-primary), var(--bg-primary)) padding-box,
    conic-gradient(
      from var(--btn-angle),
      rgba(186,214,247,0) 0deg,
      rgba(186,214,247,0.85) 60deg,
      rgba(216,236,248,0.95) 120deg,
      rgba(140,180,220,0.7) 180deg,
      rgba(186,214,247,0) 240deg
    ) border-box;
  border: 1.5px solid transparent;
  animation: spin-angle 3s linear infinite;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
  box-shadow:
    0 0 24px rgba(100,160,220,0.14),
    inset 0 1px 0 rgba(186,214,247,0.07);
}

.btn-shiny:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 36px rgba(120,180,240,0.28),
    0 10px 28px rgba(0,0,0,0.32),
    inset 0 1px 0 rgba(186,214,247,0.12);
}

.btn-shiny:active {
  transform: translateY(0px);
}

.btn-shiny:focus-visible {
  outline: 2px solid rgba(160,160,240,0.6);
  outline-offset: 3px;
}

/* Larger variant */
.btn-xl {
  padding: 0.95rem 2.2rem;
  font-size: 0.95rem;
}

/* --- Shimmer button (secondary sweep) --- */
.btn-shimmer {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: none;
  text-decoration: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s ease;
}

.btn-shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.09), transparent);
  transition: left 0.55s ease;
}

.btn-shimmer:hover::before {
  left: 100%;
}

.btn-shimmer:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.2);
}

.btn-shimmer:active { transform: translateY(0); }

.btn-shimmer:focus-visible {
  outline: 2px solid rgba(160,160,240,0.6);
  outline-offset: 3px;
}

/* --- Glass ghost button --- */
.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: none;
  text-decoration: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.btn-glass:hover {
  transform: translateY(-2px);
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}

.btn-glass:active { transform: translateY(0); }

.btn-glass:focus-visible {
  outline: 2px solid rgba(160,160,240,0.6);
  outline-offset: 3px;
}

/* ============================================================
   Layout Utilities
   ============================================================ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.section {
  padding: 7rem 0;
  position: relative;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.85rem;
  display: block;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 500px;
}

/* ============================================================
   Scroll Reveal
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(6px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1), filter 0.75s cubic-bezier(0.4,0,0.2,1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10rem 2rem 7rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 40% at 50% 0%, rgba(160,190,225,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 70% 55% at 65% 50%, rgba(130,165,210,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 45% 50% at 20% 80%, rgba(110,150,200,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Gradient blending into next section */
.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, var(--bg-secondary));
  pointer-events: none;
  z-index: 2;
}

.hero-dots-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1.05rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  width: fit-content;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(100,210,130,0.82);
  box-shadow: 0 0 7px rgba(100,210,130,0.5);
  animation: pulse-dot 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.82); }
}

/* Headline */
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.8vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  gap: 0.05em;
  text-align: center;
}

/* Clip-path reveal line */
.reveal-line {
  display: block;
  overflow: hidden;
  opacity: 0;
  padding-bottom: 0.12em;
}

.reveal-line span {
  display: block;
  transform: translateY(110%);
  filter: blur(4px);
  transition: transform 0.95s cubic-bezier(0.16, 1, 0.3, 1), filter 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-line.revealed {
  opacity: 1;
}

.reveal-line.revealed span {
  transform: translateY(0);
  filter: blur(0px);
}

/* Sub */
.hero-sub {
  font-family: var(--font-body);
  font-size: 1.04rem;
  font-weight: 300;
  line-height: 1.78;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Actions */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Micro guarantees */
.hero-micro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  font-family: var(--font-body);
  font-size: 0.77rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Sphere wrapper */
.hero-sphere-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

#sphere-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---- Display Cards (stacked floaters) ---- */
.display-cards-wrap {
  display: grid;
  grid-template-areas: 'stack';
  place-items: center;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.display-card {
  grid-area: stack;
  width: 220px;
  height: 90px;
  border-radius: var(--radius-md);
  background: rgba(14,14,24,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.8rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: skewY(-6deg);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s ease, filter 0.5s ease, opacity 0.5s ease;
}

.display-card-1 { z-index: 3; }
.display-card-2 {
  z-index: 2;
  transform: translateX(20px) translateY(13px) skewY(-6deg);
  opacity: 0.75;
  filter: grayscale(38%);
}
.display-card-3 {
  z-index: 1;
  transform: translateX(40px) translateY(26px) skewY(-6deg);
  opacity: 0.45;
  filter: grayscale(68%);
}

.display-cards-wrap:hover .display-card-2 {
  transform: translateX(20px) translateY(5px) skewY(-6deg);
  filter: grayscale(0%);
  opacity: 0.9;
}

.display-cards-wrap:hover .display-card-3 {
  transform: translateX(40px) translateY(14px) skewY(-6deg);
  filter: grayscale(0%);
  opacity: 0.68;
}

.dc-top {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.dc-icon { font-size: 0.82rem; }

.dc-title {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.dc-body {
  font-family: var(--font-body);
  font-size: 0.63rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.dc-foot {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 300;
  color: var(--text-muted);
}

/* Scroll indicator — mouse icon */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  z-index: 3;
  opacity: 0;
  animation: fade-in 0.8s ease 3s forwards;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(186,214,247,0.35);
  border-radius: 11px;
  position: relative;
  box-shadow: 0 0 12px rgba(186,214,247,0.08);
}

.scroll-mouse-dot {
  width: 4px;
  height: 4px;
  background: rgba(186,214,247,0.85);
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouse-scroll 2.2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(186,214,247,0.5);
}

@keyframes mouse-scroll {
  0%   { opacity: 1;   transform: translateX(-50%) translateY(0);    }
  65%  { opacity: 0;   transform: translateX(-50%) translateY(14px);  }
  100% { opacity: 0;   transform: translateX(-50%) translateY(14px);  }
}

@keyframes fade-in {
  to { opacity: 1; }
}

/* ============================================================
   Elegant Floating Shapes
   ============================================================ */
.elegant-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.eshape {
  position: absolute;
  opacity: 0;
  transform: rotate(var(--er, 0deg));
}

.eshape-drop {
  width: 100%;
  height: 100%;
  transform: translateY(-100px);
  animation:
    es-drop var(--ed, 2.4s) cubic-bezier(0.23, 0.86, 0.39, 0.96) var(--edly, 0s) both,
    es-fade var(--ef, 1.2s) ease var(--edly, 0s) both;
}

.eshape-float {
  width: 100%;
  height: 100%;
  animation: es-float var(--eflt, 12s) ease-in-out var(--efltd, 2.5s) infinite;
}

.eshape-pill {
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  border: 1px solid rgba(220, 235, 252, 0.14);
  background: linear-gradient(to right, var(--ebc, rgba(210,228,250,0.06)), transparent);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: 0 8px 32px rgba(186,214,247,0.05), inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
}

.eshape-pill::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: radial-gradient(circle at 35% 50%, rgba(220,238,255,0.14), transparent 70%);
}

@keyframes es-drop {
  from { transform: translateY(-100px); }
  to   { transform: translateY(0); }
}

@keyframes es-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes es-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(15px); }
}

/* Individual shape sizes/positions */
.es-1 { width: 640px; height: 155px; left: -8%; top: 16%;  --er: 12deg;  --edly: 0.3s; --efltd: 2.8s; --eflt: 14s; --ebc: rgba(210,228,250,0.08); }
.es-2 { width: 520px; height: 130px; right: -6%; top: 63%; --er: -15deg; --edly: 0.5s; --efltd: 3.0s; --eflt: 16s; --ebc: rgba(200,220,248,0.06); }
.es-3 { width: 340px; height: 90px;  left: 6%;  bottom: 8%;--er: -8deg;  --edly: 0.4s; --efltd: 2.9s; --eflt: 12s; --ebc: rgba(215,232,252,0.07); }
.es-4 { width: 230px; height: 68px;  right: 18%; top: 9%;  --er: 20deg;  --edly: 0.6s; --efltd: 3.1s; --eflt: 11s; --ebc: rgba(205,225,250,0.06); }
.es-5 { width: 175px; height: 50px;  left: 22%; top: 6%;   --er: -25deg; --edly: 0.7s; --efltd: 3.3s; --eflt: 17s; --ebc: rgba(210,230,252,0.06); }

/* ============================================================
   Pain Points Section
   ============================================================ */
.pain-section {
  position: relative;
  padding: 7rem 0;
  background: linear-gradient(to bottom, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  z-index: 1;
}

.pain-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 40%, rgba(60,60,125,0.07), transparent);
  pointer-events: none;
}

.pain-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pain-list {
  display: flex;
  flex-direction: column;
  max-width: 660px;
  margin: 0 auto;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: padding-left 0.3s ease;
}

.pain-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.pain-item:hover {
  padding-left: 0.35rem;
}

.pain-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-secondary);
  font-size: 0.72rem;
  margin-top: 0.1rem;
  background: rgba(255,255,255,0.02);
}

.pain-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.pain-text p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================================
   Services — Bento Grid
   ============================================================ */
.services-section {
  position: relative;
  padding: 7rem 0;
  background: linear-gradient(to bottom, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
  z-index: 1;
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 65% at 80% 50%, rgba(70,70,155,0.07), transparent);
  pointer-events: none;
}

.services-header {
  margin-bottom: 3.5rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.bento-cell {
  background: var(--bg-card);
  padding: 2rem;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bento-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 15% 15%, rgba(255,255,255,0.02), transparent 60%);
  pointer-events: none;
}

.bento-cell:hover {
  background: rgba(18,18,34,0.98);
}

.bento-cell.col-2 { grid-column: span 2; }
.bento-cell.row-2 { grid-row: span 2; }

.bento-stat {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.05em;
}

.bento-stat-unit {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-left: 0.05em;
}

.bento-stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.bento-cell-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
}

.bento-cell-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.65;
}

.bento-cell-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.66rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.07em;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
}

/* CSS mockup visual inside bento */
.bento-mockup {
  margin-top: 1.5rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.mock-nav {
  height: 7px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  width: 55%;
}

.mock-hero {
  height: 36px;
  background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border-radius: 4px;
}

.mock-row {
  display: flex;
  gap: 0.4rem;
}

.mock-card {
  height: 24px;
  flex: 1;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
}

/* ============================================================
   Process — Scroll Perspective (ContainerScroll)
   ============================================================ */
.scroll-persp-section {
  position: relative;
  padding: 8rem 0 14rem;
  background: linear-gradient(to bottom, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  overflow: visible;
  z-index: 1;
}

.scroll-persp-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 32% 50%, rgba(60,60,145,0.08), transparent);
  pointer-events: none;
}

.scroll-persp-header {
  text-align: center;
  margin-bottom: 4rem;
}

.scroll-persp-wrap {
  perspective: 1200px;
  overflow: visible;
}

.persp-card {
  transform: perspective(1200px) rotateX(20deg) scale(0.95);
  transform-origin: center top;
  will-change: transform;
  background: rgba(13,13,21,0.94);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.035),
    0 50px 100px rgba(0,0,0,0.65),
    0 0 70px rgba(60,60,130,0.1);
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 3.5rem;
  position: relative;
}

.persp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 2.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  border-right: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s ease;
}

.step-item:hover {
  background: rgba(255,255,255,0.015);
}

.step-item:nth-child(2n) {
  border-right: none;
}

.step-item:nth-child(n+3) {
  border-bottom: none;
}

.step-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(180,180,250,0.25));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.step-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================================
   Why Section
   ============================================================ */
.why-section {
  position: relative;
  padding: 7rem 0;
  background: linear-gradient(to bottom, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  z-index: 1;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 75% at 60% 50%, rgba(80,80,165,0.07), transparent);
  pointer-events: none;
}

.why-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.why-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.055);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.15);
  box-shadow:
    0 12px 36px rgba(0,0,0,0.38),
    0 0 28px rgba(80,80,165,0.09),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.why-icon {
  font-size: 1.45rem;
  margin-bottom: 1rem;
  display: block;
}

.why-title {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}

.why-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================================
   FAQ Section
   ============================================================ */
.faq-section {
  position: relative;
  padding: 7rem 0;
  background: linear-gradient(to bottom, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
  z-index: 1;
}

.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 70%, rgba(50,50,115,0.065), transparent);
  pointer-events: none;
}

.faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  font-family: var(--font-head);
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  cursor: none;
  transition: color var(--transition-base);
  letter-spacing: -0.01em;
  background: none;
  border: none;
}

.faq-trigger:hover {
  color: rgba(220,220,255,0.9);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-secondary);
  transition: transform var(--transition-base), color var(--transition-base);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--text-primary);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
}

.faq-body p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.78;
  padding-bottom: 1.5rem;
}

/* ============================================================
   CTA Section
   ============================================================ */
.cta-section {
  position: relative;
  padding: 9rem 0;
  z-index: 1;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 70% at 50% 60%, rgba(70,70,155,0.2) 0%, transparent 55%),
    radial-gradient(ellipse 45% 45% at 18% 28%, rgba(50,50,125,0.11) 0%, transparent 50%),
    var(--bg-primary);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.cta-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 2.75rem;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.cta-micro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.77rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

/* ============================================================
   About Section
   ============================================================ */
.about-section {
  position: relative;
  padding: 7rem 0;
  background: linear-gradient(to bottom, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  z-index: 1;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 18% 50%, rgba(60,60,135,0.07), transparent);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: center;
}

.about-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  display: block;
}

.about-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.75rem;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-body p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.78;
}

.about-avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.about-avatar {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(80,80,165,0.32), rgba(38,38,105,0.52));
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(220,220,255,0.68);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  box-shadow:
    0 0 50px rgba(80,80,165,0.18),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.about-name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}

.about-role {
  font-size: 0.73rem;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  position: relative;
  padding: 4.5rem 0 2.25rem;
  background: var(--bg-primary);
  border-top: 1px solid rgba(255,255,255,0.05);
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 3.25rem;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.7rem;
  display: block;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 210px;
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  display: block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition-base);
}

.footer-links a:hover { color: var(--text-primary); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.77rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.77rem;
  color: var(--text-muted);
  transition: color var(--transition-base);
}

.footer-legal a:hover { color: var(--text-secondary); }

/* ============================================================
   Contact Page
   ============================================================ */
.contact-hero {
  position: relative;
  padding: 13rem 0 6rem;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 38%, rgba(82,82,165,0.13), transparent 58%);
  pointer-events: none;
}

.contact-hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--bg-secondary));
  pointer-events: none;
}

.contact-hero-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-hero-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.contact-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.07;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.contact-hero-sub {
  font-size: 1.02rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Contact main */
.contact-main {
  position: relative;
  padding: 4rem 0 9rem;
  background: linear-gradient(to bottom, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.75rem;
  align-items: start;
}

/* Calendly embed */
.calendly-wrap {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 6px 48px rgba(0,0,0,0.38),
    inset 0 1px 0 rgba(255,255,255,0.055);
  position: relative;
}

.calendly-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.13), transparent);
  z-index: 1;
  pointer-events: none;
}

.calendly-wrap iframe {
  display: block;
  width: 100%;
  min-height: 680px;
  border: none;
}

/* Contact sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.055);
  position: relative;
  overflow: hidden;
}

.sidebar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.sidebar-card-title {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.sidebar-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(100,210,135,0.1);
  border: 1px solid rgba(100,210,135,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.6rem;
  color: rgba(100,215,140,0.85);
  margin-top: 0.08rem;
}

.sidebar-avatar-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.25rem 0;
}

.sidebar-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(80,80,165,0.32), rgba(38,38,105,0.52));
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(220,220,255,0.68);
  flex-shrink: 0;
}

.sidebar-avatar-name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.sidebar-avatar-role {
  font-size: 0.73rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* Contact guarantees */
.contact-guarantees {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.guarantee-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.05rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  font-size: 0.77rem;
  color: var(--text-secondary);
}

.guarantee-check {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(100,210,135,0.1);
  border: 1px solid rgba(100,210,135,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: rgba(100,215,140,0.85);
  flex-shrink: 0;
}

/* Contact fallback */
.contact-fallback {
  margin-top: 3rem;
  text-align: center;
}

.contact-fallback p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-fallback a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-decoration-color: rgba(90,90,122,0.4);
  transition: color var(--transition-base);
}

.contact-fallback a:hover { color: var(--text-primary); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .es-1, .es-2, .es-3 { display: none; }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-avatar-wrap {
    flex-direction: row;
    justify-content: flex-start;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.25rem;
  }

  .navbar.scrolled {
    padding: 0.75rem 1.25rem;
  }

  .nav-links {
    display: none;
  }

  .nav-right .btn-shiny {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 8rem 1.25rem 5rem;
    min-height: auto;
  }

  .hero-inner {
    gap: 1.5rem;
  }

  .es-4, .es-5 { display: none; }

  .hero-micro {
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-cell.col-2 {
    grid-column: span 1;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-item {
    border-right: none !important;
  }

  .step-item:nth-child(n+3) {
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .step-item:last-child {
    border-bottom: none;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .persp-card {
    padding: 2rem 1.25rem;
  }

  .container {
    padding: 0 1.25rem;
  }

  .section {
    padding: 5rem 0;
  }

  .pain-section,
  .services-section,
  .scroll-persp-section,
  .why-section,
  .faq-section,
  .cta-section,
  .about-section {
    padding: 5rem 0;
  }

  .scroll-persp-section {
    padding-bottom: 7rem;
  }

  .contact-guarantees {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .cta-micro {
    flex-direction: column;
    gap: 0.4rem;
  }

  .cta-actions {
    flex-direction: column;
  }
}

/* ============================================================
   Mobile Hero Float Animation (replaces mouse-driven 3D tilt)
   ============================================================ */
@keyframes hero-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}

@media (hover: none) {
  .hero-inner {
    animation: hero-float 6s ease-in-out infinite;
  }
  .hero-fade {
    display: none;
  }
  .hero::before {
    display: none;
  }
  .aurora-wrap {
    display: none;
  }
}

/* ============================================================
   Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .shimmer-text {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: rgba(220,220,255,0.9);
    background-clip: initial;
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .reveal-line {
    opacity: 1;
  }

  .reveal-line span {
    transform: none;
    transition: none;
  }

  .page-loader {
    display: none;
  }

  .hero-badge,
  .hero-sub,
  .hero-actions,
  .hero-micro {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-scroll-hint,
  .eshape { opacity: 0; animation: none; }

  .scroll-mouse-dot {
    animation: none;
    opacity: 0.6;
  }
}

/* ============================================================
   AURORA HERO BACKGROUND — 21st.dev premium style
   ============================================================ */
.aurora-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: aurora-fade-in 2s ease forwards;
}

.aurora-orb-1 {
  width: 650px;
  height: 650px;
  background: radial-gradient(ellipse at center, rgba(170, 195, 225, 0.09) 0%, rgba(130, 165, 210, 0.04) 45%, transparent 70%);
  top: -220px;
  left: -120px;
  animation: aurora-fade-in 2s ease 0.2s forwards, aurora-drift-1 22s ease-in-out 2s infinite;
}

.aurora-orb-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(ellipse at center, rgba(150, 180, 220, 0.07) 0%, rgba(110, 150, 200, 0.03) 45%, transparent 70%);
  top: -100px;
  right: -80px;
  animation: aurora-fade-in 2s ease 0.5s forwards, aurora-drift-2 26s ease-in-out 2s infinite;
}

.aurora-orb-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(ellipse at center, rgba(160, 190, 225, 0.06) 0%, rgba(120, 160, 210, 0.025) 45%, transparent 70%);
  bottom: 0;
  left: 38%;
  animation: aurora-fade-in 2s ease 0.8s forwards, aurora-drift-3 30s ease-in-out 2s infinite;
}

.aurora-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(186,214,247,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(186,214,247,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 100%);
}

@keyframes aurora-fade-in {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes aurora-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(60px, 40px) scale(1.08); }
  66%       { transform: translate(-30px, 70px) scale(0.95); }
}

@keyframes aurora-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(-80px, 60px) scale(1.1); }
  70%       { transform: translate(40px, -30px) scale(0.92); }
}

@keyframes aurora-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  30%       { transform: translate(-60px, -50px) scale(1.05); }
  60%       { transform: translate(80px, 20px) scale(0.97); }
}

/* ============================================================
   HERO TILT 3D — magnetic interactive effect
   ============================================================ */
.hero-inner {
  transform-style: preserve-3d;
  transition: transform 0.1s linear;
}

/* ============================================================
   METALLIC HEADLINE — pour les h1 hero
   ============================================================ */
/* OVERRIDE — empêche le rectangle visible derrière "la médiocrité" */
.hero-headline em.shimmer-text {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: #dce8fc !important;
  color: #dce8fc !important;
  font-style: italic;
  filter: none !important;
  animation: hero-em-glow 3.5s ease-in-out infinite !important;
}

@keyframes hero-em-glow {
  0%, 100% { text-shadow: 0 0 30px rgba(186,214,247,0.35), 0 0 60px rgba(150,190,240,0.15); opacity: 0.92; }
  50%       { text-shadow: 0 0 55px rgba(186,214,247,0.65), 0 0 100px rgba(150,190,240,0.30); opacity: 1; }
}

/* ============================================================
   HERO BADGE — update pour look premium
   ============================================================ */
.hero-badge {
  background: linear-gradient(135deg, rgba(186,214,247,0.08) 0%, rgba(140,160,220,0.06) 100%);
  border: 1px solid rgba(186,214,247,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(186,214,247,0.04),
    0 4px 24px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

/* ============================================================
   GLOWING CTA BUTTON — enhanced
   ============================================================ */
.btn-shiny {
  position: relative;
  overflow: hidden;
}

.btn-shiny::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(var(--btn-angle),
    transparent 0%,
    rgba(186,214,247,0.3) 20%,
    rgba(255,255,255,0.4) 50%,
    rgba(186,214,247,0.3) 80%,
    transparent 100%
  );
  border-radius: inherit;
  z-index: -1;
  animation: btn-rotate 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-shiny:hover::after {
  opacity: 1;
}

@keyframes btn-rotate {
  from { --btn-angle: 0deg; }
  to   { --btn-angle: 360deg; }
}

/* ============================================================
   CONTACT PAGE — Animated Background
   ============================================================ */
.contact-bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

.contact-bg-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.contact-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0;
  animation: c-orb-in 2s ease forwards;
}

.c-orb-1 {
  width: 550px; height: 550px;
  background: radial-gradient(ellipse at center, rgba(140, 175, 215, 0.10) 0%, rgba(100, 145, 200, 0.04) 50%, transparent 70%);
  top: -180px; left: -80px;
  animation: c-orb-in 2s ease 0.3s forwards, c-drift-1 20s ease-in-out 2s infinite;
}

.c-orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(ellipse at center, rgba(120, 160, 210, 0.09) 0%, rgba(90, 135, 195, 0.03) 50%, transparent 70%);
  top: -60px; right: -60px;
  animation: c-orb-in 2s ease 0.6s forwards, c-drift-2 25s ease-in-out 2s infinite;
}

.c-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(ellipse at center, rgba(130, 170, 215, 0.08) 0%, rgba(100, 150, 205, 0.03) 50%, transparent 70%);
  bottom: -80px; left: 35%;
  animation: c-orb-in 2s ease 0.9s forwards, c-drift-3 18s ease-in-out 2s infinite;
}

.c-orb-4 {
  width: 200px; height: 200px;
  background: radial-gradient(ellipse at center, rgba(110, 155, 210, 0.07) 0%, transparent 70%);
  top: 40%; left: 20%;
  animation: c-orb-in 2s ease 1.2s forwards, c-drift-4 22s ease-in-out 2s infinite;
}

@keyframes c-orb-in {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes c-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(50px, 35px) scale(1.07); }
  66%       { transform: translate(-25px, 60px) scale(0.95); }
}

@keyframes c-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(-70px, 50px) scale(1.08); }
  70%       { transform: translate(35px, -25px) scale(0.93); }
}

@keyframes c-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-40px, -35px) scale(1.1); }
}

@keyframes c-drift-4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  35%       { transform: translate(60px, -40px) scale(1.12); }
  70%       { transform: translate(-30px, 25px) scale(0.9); }
}

/* Particle grid overlay for contact */
.contact-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(186,214,247,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(186,214,247,0.03) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* Floating animated line accents */
.contact-line-1 {
  position: absolute;
  width: 280px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(186,214,247,0.25), transparent);
  top: 35%;
  left: -50px;
  animation: c-line-drift 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.contact-line-2 {
  position: absolute;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(186,214,247,0.18), transparent);
  top: 60%;
  right: -30px;
  animation: c-line-drift 11s ease-in-out 2s infinite reverse;
  pointer-events: none;
  z-index: 0;
}

@keyframes c-line-drift {
  0%, 100% { transform: translateX(0) scaleX(1); opacity: 0.5; }
  50%       { transform: translateX(60px) scaleX(1.3); opacity: 1; }
}

/* Contact hero title shimmer fix — same as hero fix */
.contact-hero-title em.shimmer-text {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: #dce8fc !important;
  color: #dce8fc !important;
  font-style: italic;
  filter: none !important;
  animation: hero-em-glow 3.5s ease-in-out infinite !important;
}

/* Contact wave canvas */
.contact-wave-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Remove leftover grid/line classes from CSS */
.contact-hero-grid,
.contact-line-1,
.contact-line-2 {
  display: none !important;
}
