/* Megdesk — Premium Luxury */

:root {
  --white: #ffffff;
  --cream: #fffbf7;
  --warm: #fff4e8;
  --yellow: #f5c842;
  --yellow-soft: #fde68a;
  --orange: #e8751a;
  --orange-deep: #c45f0a;
  --plum: #1a0a2e;
  --plum-soft: #2a1545;
  --ink: #1a0a2e;
  --ink-soft: #3d2a55;
  --ink-muted: #5c4a6e;
  --line: rgba(26, 10, 46, 0.08);
  --line-gold: rgba(245, 200, 66, 0.4);
  --shadow-warm: 0 24px 64px rgba(232, 117, 26, 0.12);
  --shadow-card: 0 8px 40px rgba(26, 10, 46, 0.06);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --ease: 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  --header: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
}

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .particle-canvas, .cursor-glow { display: none !important; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s; }
address { font-style: normal; }

.wrap {
  width: min(1200px, 90vw);
  margin-inline: auto;
}

/* ── Header ── */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--header);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 30px rgba(26, 10, 46, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(1200px, 90vw);
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  width: auto;
  height: 46px;
  border-radius: 0;
  object-fit: contain;
}

.logo span {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: linear-gradient(120deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  list-style: none;
}

.nav-menu a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.nav-menu a:hover { color: var(--orange); }

.nav-cta {
  padding: 0.65rem 1.6rem;
  background: linear-gradient(120deg, var(--yellow), var(--orange));
  color: var(--white) !important;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(232, 117, 26, 0.3);
}

.nav-cta:hover { opacity: 0.92; }

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--ease);
}

.btn-primary {
  background: linear-gradient(120deg, var(--yellow), var(--orange));
  color: var(--white);
  box-shadow: 0 8px 28px rgba(232, 117, 26, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(232, 117, 26, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-gold);
}

.btn-secondary:hover {
  background: var(--warm);
  border-color: var(--orange);
  color: var(--orange);
}

.btn-light {
  background: var(--white);
  color: var(--plum);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.btn-light:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn-wide { width: 100%; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header) + 3rem) 0 5rem;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(245, 200, 66, 0.08) 0%, transparent 50%),
    linear-gradient(225deg, rgba(232, 117, 26, 0.06) 0%, transparent 45%);
}

.hero-grid-lines {
  position: absolute;
  inset: -50%;
  background-image:
    linear-gradient(rgba(232, 117, 26, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 200, 66, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridDrift 40s linear infinite;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

@keyframes gridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(80px, 80px); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  transition: opacity 0.2s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 2rem;
}

.badge-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  animation: lineGrow 1.2s var(--ease) 0.3s forwards;
}

@keyframes lineGrow {
  to { width: 48px; }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.hero-title .title-line {
  display: inline-block;
  overflow: hidden;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.hero-title.loaded .word {
  opacity: 1;
  transform: translateY(0);
}

.hero-title em.word--accent {
  font-style: italic;
  background: linear-gradient(120deg, var(--yellow), var(--orange), var(--yellow));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s ease infinite;
}

@keyframes shimmerText {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

.hero-text {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 2.75rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Showcase panel */
.hero-showcase {
  display: flex;
  justify-content: center;
}

.showcase-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  padding: 3.5rem 2.5rem;
  background: var(--white);
  box-shadow: var(--shadow-warm);
  border: 1px solid rgba(245, 200, 66, 0.2);
}

.float-card {
  animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.frame-corner {
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: var(--orange);
  border-style: solid;
}

.frame-corner--tl {
  top: 12px;
  left: 12px;
  border-width: 2px 0 0 2px;
}

.frame-corner--br {
  bottom: 12px;
  right: 12px;
  border-width: 0 2px 2px 0;
}

.showcase-logo {
  width: 140px;
  margin: 0 auto 2.5rem;
  border-radius: 10px;
}

.showcase-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.mini-stat {
  text-align: center;
}

.mini-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

.mini-stat span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 0.4rem;
  display: block;
}

/* ── Stats strip ── */
.stats-strip {
  background: var(--plum);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child { border-right: none; }

.stat-value {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}

.stat-value span { color: var(--yellow); }

.stat-caption {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Sections ── */
.section {
  padding: 8rem 0;
}

.section--dark {
  background: var(--plum);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-head {
  max-width: 520px;
  margin-bottom: 5rem;
}

.section-head--light .overline { color: var(--yellow); }
.section-head--light h2 { color: var(--white); }
.section-head--light p { color: rgba(255, 255, 255, 0.65); }

.overline {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.section-head h2,
.about-copy h2,
.contact-copy h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.accent-italic {
  font-style: italic;
  color: var(--orange);
  -webkit-text-fill-color: var(--orange);
}

.section-head--light .accent-italic {
  background: linear-gradient(120deg, var(--yellow), var(--yellow-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-head p {
  font-weight: 400;
  color: #3d2a55;
  font-size: 1.05rem;
}

/* ── Pillars ── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar {
  padding: 2.5rem 2rem 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease);
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.pillar-index {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--yellow);
  opacity: 0.7;
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
}

.pillar h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.pillar p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.85;
}

.pillar-line {
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.pillar:hover .pillar-line { transform: scaleX(1); }

/* ── Solution cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lux-card {
  padding: 2.25rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}

.lux-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  transform: scaleX(0);
  transition: transform var(--ease);
}

.lux-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 200, 66, 0.3);
  transform: translateY(-4px);
}

.lux-card:hover::before { transform: scaleX(1); }

.card-num {
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--yellow);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  display: block;
}

.lux-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.lux-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

/* ── Tech marquee ── */
.tech-band {
  padding: 4rem 0;
  background: var(--warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.tech-title {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 2rem;
}

.marquee {
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.marquee-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.marquee-track span {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink-muted);
  white-space: nowrap;
  transition: color 0.3s;
}

.marquee-track span:hover { color: var(--orange); }

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── About ── */
.about-split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-copy .lead {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.about-copy p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.about-panel {
  position: relative;
}

.panel-inner {
  padding: 3.5rem 2.5rem;
  background: linear-gradient(145deg, var(--warm), var(--white));
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-warm);
  text-align: center;
}

.panel-inner img {
  width: 110px;
  margin: 0 auto 2rem;
  border-radius: 10px;
}

.panel-inner blockquote {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  background: linear-gradient(120deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Leadership ── */
.leadership {
  background: var(--cream);
}

.exec-grid {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.exec {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 4rem;
  align-items: center;
}

.exec-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.exec-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-gold);
  margin: 12px;
  z-index: 1;
  pointer-events: none;
}

.exec-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s var(--ease);
}

.exec:hover .exec-photo img { transform: scale(1.04); }

.exec-role {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.exec-detail h3 {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.exec-detail p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  max-width: 500px;
  line-height: 1.9;
}

/* ── CTA banner ── */
.cta-banner {
  padding: 7rem 0;
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-soft) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--yellow));
  background-size: 200% 100%;
  animation: barFlow 3s linear infinite;
}

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

.cta-content {
  text-align: center;
  max-width: 640px;
}

.cta-content h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

/* ── Contact ── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-copy p {
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 3rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.row-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.35rem;
}

.contact-row p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0;
}

.contact-row a:hover { color: var(--orange); }

.form-panel {
  padding: 2.5rem;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.form-field {
  margin-bottom: 1.75rem;
}

.form-field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.6rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 400;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 117, 26, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--ink-muted);
}

/* ── Footer ── */
.footer {
  padding: 2.5rem 0;
  background: var(--plum);
  color: rgba(255, 255, 255, 0.5);
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: auto;
  height: 64px;
  border-radius: 0;
  object-fit: contain;
}

.footer-brand span {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  background: linear-gradient(120deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-bar > p {
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

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

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(6px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-scale {
  transform: translateY(36px) scale(0.96);
}

.reveal-scale.visible {
  transform: translateY(0) scale(1);
}

/* ── Global ambient animations ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  z-index: 999;
  transition: width 0.1s linear;
}

.particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.65;
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 200, 66, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
  opacity: 0;
}

body:hover .cursor-glow { opacity: 1; }

main { position: relative; z-index: 1; }
.header { z-index: 500; }

/* Aurora blobs */
.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  will-change: transform;
}

.aurora--1 {
  width: 55vw;
  height: 55vw;
  max-width: 600px;
  max-height: 600px;
  background: rgba(245, 200, 66, 0.18);
  top: -15%;
  right: -10%;
  animation: aurora1 18s ease-in-out infinite;
}

.aurora--2 {
  width: 45vw;
  height: 45vw;
  max-width: 500px;
  max-height: 500px;
  background: rgba(232, 117, 26, 0.14);
  bottom: -10%;
  left: -8%;
  animation: aurora2 22s ease-in-out infinite;
}

.aurora--3 {
  width: 30vw;
  height: 30vw;
  max-width: 350px;
  max-height: 350px;
  background: rgba(245, 200, 66, 0.1);
  top: 40%;
  left: 35%;
  animation: aurora3 15s ease-in-out infinite;
}

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

@keyframes aurora2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(50px, -40px) scale(1.1); }
}

@keyframes aurora3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 25px); }
}

.dark-aurora,
.cta-aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.aurora--d1 {
  width: 50%;
  height: 60%;
  background: rgba(245, 200, 66, 0.08);
  top: -20%;
  right: -15%;
  animation: aurora1 20s ease-in-out infinite;
}

.aurora--d2 {
  width: 40%;
  height: 50%;
  background: rgba(232, 117, 26, 0.06);
  bottom: -15%;
  left: -10%;
  animation: aurora2 24s ease-in-out infinite;
}

.cta-aurora::before,
.cta-aurora::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.cta-aurora::before {
  width: 400px;
  height: 400px;
  background: rgba(245, 200, 66, 0.1);
  top: 50%;
  left: 20%;
  animation: aurora3 12s ease-in-out infinite;
}

.cta-aurora::after {
  width: 300px;
  height: 300px;
  background: rgba(232, 117, 26, 0.08);
  top: 30%;
  right: 15%;
  animation: aurora1 16s ease-in-out infinite reverse;
}

.section-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(245, 200, 66, 0.04) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: shimmerSweep 8s ease-in-out infinite;
  pointer-events: none;
}

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

.stats-row,
.section--dark .wrap,
.cta-content {
  position: relative;
  z-index: 1;
}

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.lux-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(245, 200, 66, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.lux-card:hover::after { opacity: 1; }

.panel-inner {
  animation: floatY 8s ease-in-out infinite;
}

.marquee-track span {
  transition: color 0.3s, transform 0.3s;
}

.marquee-track span:hover {
  transform: scale(1.08);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid,
  .about-split,
  .contact-split,
  .exec {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-showcase { order: -1; }
  .showcase-frame { max-width: 320px; margin: 0 auto; }

  .pillar-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item {
    border-right: none;
    padding: 1rem 0;
  }

  .exec-photo { max-width: 340px; }
}

@media (max-width: 640px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }

  .stats-row { grid-template-columns: 1fr; }

  .section { padding: 5rem 0; }

  .footer-bar {
    flex-direction: column;
    text-align: center;
  }
}
