/* ============================================================
   GOD SOFTWARE — Divine Engineering
   style.css
   ============================================================ */

:root {
  --void: #000;
  --bg: #050507;
  --surface: #0a0a0e;
  --card: #0f0f15;
  --elevated: #14141c;
  --border: rgba(255,255,255,.05);
  --white: #f5f5f7;
  --text: #86868b;
  --dim: #48484a;
  --blue: #2997ff;
  --purple: #bf5af2;
  --pink: #ff375f;
  --gold: #ffd60a;
  --teal: #64d2ff;
  --green: #30d158;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--void);
  color: var(--text);
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
::selection { background: var(--blue); color: white; }
::-webkit-scrollbar { width: 0; }

/* ============================================================ ANIMATIONS */
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: .5; }
  50% { transform: scale(1.15); opacity: .85; }
}
@keyframes orbit { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes shimmer-text {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ray-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulse-opacity { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }
@keyframes scroll-wheel {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}
@keyframes loader-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ============================================================ LOADER */
.loader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity .7s ease .1s, visibility .7s ease .1s;
}
body.loaded .loader { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-mark {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--blue), var(--purple), var(--pink), var(--gold), var(--teal), var(--blue));
  animation: loader-spin .9s linear infinite;
  position: relative;
}
.loader-mark::after {
  content: '';
  position: absolute;
  inset: 9px;
  background: #000;
  border-radius: 50%;
}
.loader-text {
  font-size: 11px;
  font-weight: 600;
  color: rgba(245,245,247,.35);
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: pulse-opacity 1.4s ease infinite;
}

/* ============================================================ PROGRESS BAR */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--pink));
  z-index: 200;
  transition: width .05s linear;
  pointer-events: none;
}

/* ============================================================ CURSOR */
.cursor {
  position: fixed;
  width: 20px; height: 20px;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition: transform .15s ease, border-color .3s, width .3s, height .3s;
  transform: translate(-50%,-50%);
  mix-blend-mode: difference;
}
.cursor.hover { width: 48px; height: 48px; border-color: rgba(41,151,255,.5); }
.cursor-dot {
  position: fixed;
  width: 4px; height: 4px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%,-50%);
  transition: opacity .3s;
}
@media(max-width:768px) { .cursor, .cursor-dot { display: none; } body { cursor: auto; } }

/* ============================================================ CANVAS */
#particles { position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: .55; }

/* ============================================================ NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,0,0,.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.n-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 22px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.n-logo {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -.2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-mark {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--blue), var(--purple), var(--pink), var(--gold), var(--teal), var(--blue));
  animation: orbit 4s linear infinite;
  position: relative;
  flex-shrink: 0;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--void);
  border-radius: 50%;
}
.n-links { display: flex; gap: 28px; align-items: center; }
.n-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 12px;
  transition: color .2s;
  position: relative;
}
.n-links a:hover, .n-links a.active { color: var(--white); }
.n-links a.active::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--blue);
  border-radius: 2px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
body.nav-open .hamburger span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
body.nav-open .hamburger span:nth-child(2) { opacity: 0; }
body.nav-open .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 8px 22px 16px;
  background: rgba(0,0,0,.95);
  border-top: 1px solid var(--border);
}
body.nav-open .mobile-menu { display: flex; }
.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s, padding-left .2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--white); padding-left: 6px; }

@media(max-width:768px) {
  .hamburger { display: flex; }
  .n-links { display: none; }
}

/* ============================================================ HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 100px;
}

/* Enhanced Divine Orb */
.divine-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  width: 620px; height: 620px;
  pointer-events: none;
}
.orb-halo {
  position: absolute;
  inset: -80px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
    rgba(41,151,255,.06) 0%,
    rgba(191,90,242,.04) 35%,
    transparent 68%
  );
  animation: breathe 9s ease-in-out infinite;
  filter: blur(70px);
}
.orb-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%,
    rgba(41,151,255,.18) 0%,
    rgba(191,90,242,.10) 30%,
    rgba(255,55,95,.05) 50%,
    transparent 70%
  );
  animation: breathe 6s ease-in-out infinite;
  filter: blur(32px);
}
.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04);
}
.orb-ring::before {
  content: '';
  position: absolute;
  border-radius: 50%;
}
.orb-ring--1 {
  inset: 60px;
  animation: orbit 22s linear infinite;
}
.orb-ring--1::before {
  top: -4px; left: 50%;
  width: 7px; height: 7px;
  background: var(--blue);
  box-shadow: 0 0 14px var(--blue), 0 0 28px rgba(41,151,255,.4);
  transform: translateX(-50%);
}
.orb-ring--2 {
  inset: 110px;
  animation: orbit 38s linear reverse infinite;
  border-style: dashed;
  border-color: rgba(255,255,255,.025);
}
.orb-ring--2::before {
  bottom: -3px; left: 50%;
  width: 5px; height: 5px;
  background: var(--purple);
  box-shadow: 0 0 12px var(--purple), 0 0 20px rgba(191,90,242,.3);
  transform: translateX(-50%);
}
.orb-ring--3 {
  inset: 170px;
  animation: orbit 60s linear infinite;
  border-color: rgba(255,214,10,.035);
}
.orb-ring--3::before {
  top: 50%; right: -3px;
  width: 4px; height: 4px;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  transform: translateY(-50%);
}

/* Light Rays — 12 */
.light-rays {
  position: absolute;
  top: 50%; left: 50%;
  width: 900px; height: 900px;
  transform: translate(-50%, -55%);
  pointer-events: none;
  animation: ray-rotate 180s linear infinite;
}
.ray {
  position: absolute;
  top: 50%; left: 50%;
  transform-origin: 0 0;
}
.ray::after {
  content: '';
  display: block;
  width: 1px; height: 450px;
  background: linear-gradient(transparent, rgba(255,255,255,.013), transparent);
}
.ray:nth-child(1)  { transform: rotate(0deg); }
.ray:nth-child(2)  { transform: rotate(30deg); }
.ray:nth-child(3)  { transform: rotate(60deg); }
.ray:nth-child(4)  { transform: rotate(90deg); }
.ray:nth-child(5)  { transform: rotate(120deg); }
.ray:nth-child(6)  { transform: rotate(150deg); }
.ray:nth-child(7)  { transform: rotate(180deg); }
.ray:nth-child(8)  { transform: rotate(210deg); }
.ray:nth-child(9)  { transform: rotate(240deg); }
.ray:nth-child(10) { transform: rotate(270deg); }
.ray:nth-child(11) { transform: rotate(300deg); }
.ray:nth-child(12) { transform: rotate(330deg); }

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero .pre {
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--blue), var(--purple), var(--pink), var(--gold));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-text 4s ease infinite;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(50px, 9vw, 88px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -3px;
  color: var(--white);
  margin-bottom: 6px;
}
.hero h1 .line2 {
  display: block;
  font-weight: 200;
  background: linear-gradient(180deg, rgba(245,245,247,.65), rgba(134,134,139,.35));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .quote {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: var(--dim);
  margin: 22px 0 20px;
  line-height: 1.5;
}
.hero .sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.h-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.h-link {
  font-size: 20px;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .3s;
}
.h-link:hover { gap: 9px; }
.h-link .arr { font-size: 16px; }

/* Scroll Hint */
.scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fade-up 1s ease 2.2s forwards;
  z-index: 2;
}
.scroll-wheel {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 11px;
  position: relative;
}
.scroll-wheel::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 6px;
  background: rgba(255,255,255,.25);
  border-radius: 2px;
  animation: scroll-wheel 1.8s ease infinite;
}
.scroll-hint span {
  font-size: 9px;
  color: var(--dim);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================================ SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .85s cubic-bezier(.25,.46,.45,.94), transform .85s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================ STATEMENT */
.statement {
  padding: 120px 24px;
  text-align: center;
  position: relative;
}
.statement::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(41,151,255,.3), transparent);
}
.statement p {
  font-size: clamp(22px, 3.8vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  max-width: 900px;
  margin: 0 auto;
}
.statement .w { color: var(--white); }
.statement .g { color: var(--dim); }

/* ============================================================ BENTO GRID */
.bento-sec { padding: 20px 24px 100px; }
.bento {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media(max-width:734px) { .bento { grid-template-columns: 1fr; } }

.b-card {
  background: var(--card);
  border-radius: 20px;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .6s cubic-bezier(.16,1,.3,1);
}
.b-card:hover {
  border-color: rgba(255,255,255,.09);
  transform: scale(1.01);
}
.b-card::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  transition: opacity .6s;
  pointer-events: none;
}
.b-card:hover::before { opacity: 1; }
.b-wide { grid-column: 1 / -1; }
.bc1::before { top: -100px; left: -100px; background: rgba(41,151,255,.06); }
.bc2::before { top: -100px; right: -100px; background: rgba(191,90,242,.06); }
.bc3::before { bottom: -100px; left: -100px; background: rgba(255,214,10,.04); }
.bc4::before { bottom: -100px; right: -100px; background: rgba(100,210,255,.04); }

.b-label {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: .5px;
}
.lb { color: var(--blue); }
.lp { color: var(--purple); }
.lg { color: var(--gold); }
.lt { color: var(--teal); }

.b-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.8px;
  margin-bottom: 6px;
  line-height: 1.15;
}
.b-card h3 .thin { font-weight: 200; color: rgba(245,245,247,.45); }
.b-card .b-desc { font-size: 15px; color: var(--text); margin-bottom: 20px; line-height: 1.65; max-width: 400px; }
.b-card .b-list { list-style: none; }
.b-card .b-list li {
  font-size: 14px;
  color: var(--text);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.b-card .b-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.bc1 .b-list li::before { background: var(--blue); }
.bc2 .b-list li::before { background: var(--purple); }
.bc3 .b-list li::before { background: var(--gold); }
.bc4 .b-list li::before { background: var(--teal); }

.b-stats {
  display: flex;
  gap: 40px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.b-stat .b-n {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, var(--white), var(--text));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.b-stat .b-l {
  font-size: 11px;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

/* ============================================================ SECTION COMMON */
.sec-c { max-width: 980px; margin: 0 auto; }
.sec-h { text-align: center; margin-bottom: 56px; }
.sec-h .s-label {
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.sec-h h2 {
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1.5px;
}
.sec-h h2 .thin { font-weight: 200; color: rgba(245,245,247,.4); }

/* ============================================================ PRODUCTS */
.prod-sec {
  padding: 100px 24px;
  border-top: 1px solid var(--border);
  position: relative;
}
.prod-sec::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(191,90,242,.3), transparent);
}
.p-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media(max-width:900px) { .p-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:500px) { .p-grid { grid-template-columns: 1fr; } }

.p-card {
  background: var(--card);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all .5s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
}
.p-card::before {
  content: '';
  position: absolute;
  top: -60%; left: -60%;
  width: 220%; height: 220%;
  border-radius: 50%;
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}
.p-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.09); }
.p-card:hover::before { opacity: 1; }
.p-card:nth-child(1)::before { background: radial-gradient(circle, rgba(41,151,255,.04), transparent 50%); }
.p-card:nth-child(2)::before { background: radial-gradient(circle, rgba(191,90,242,.04), transparent 50%); }
.p-card:nth-child(3)::before { background: radial-gradient(circle, rgba(255,214,10,.03), transparent 50%); }
.p-card:nth-child(4)::before { background: radial-gradient(circle, rgba(100,210,255,.04), transparent 50%); }
.p-card:nth-child(5)::before { background: radial-gradient(circle, rgba(48,209,88,.03), transparent 50%); }
.p-card:nth-child(6)::before { background: radial-gradient(circle, rgba(255,55,95,.03), transparent 50%); }

.p-card .p-emoji { font-size: 36px; margin-bottom: 14px; display: block; }
.p-card h4 { font-size: 17px; font-weight: 700; color: var(--white); letter-spacing: -.2px; margin-bottom: 2px; }
.p-card .p-tag { font-size: 11px; color: var(--blue); font-weight: 500; margin-bottom: 8px; }
.p-card .p-desc { font-size: 13px; color: var(--text); line-height: 1.6; }
.p-card .p-badge {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 9px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: .3px;
}
.bg-live { background: rgba(48,209,88,.1); color: var(--green); }
.bg-build { background: rgba(41,151,255,.1); color: var(--blue); }

/* ============================================================ PROCESS */
.process-sec {
  padding: 100px 24px;
  border-top: 1px solid var(--border);
  position: relative;
}
.process-sec::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(48,209,88,.3), transparent);
}
.process-grid {
  display: flex;
  align-items: stretch;
  max-width: 920px;
  margin: 0 auto;
}
.proc-card {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all .5s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
}
.proc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}
.proc-card:nth-child(1)::before { background: radial-gradient(circle at 50% 0%, rgba(41,151,255,.04), transparent 60%); }
.proc-card:nth-child(3)::before { background: radial-gradient(circle at 50% 0%, rgba(191,90,242,.04), transparent 60%); }
.proc-card:nth-child(5)::before { background: radial-gradient(circle at 50% 0%, rgba(100,210,255,.04), transparent 60%); }
.proc-card:hover { border-color: rgba(255,255,255,.09); transform: translateY(-5px); }
.proc-card:hover::before { opacity: 1; }

.proc-num {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -4px;
  background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  display: block;
}
.proc-icon { font-size: 30px; margin-bottom: 14px; display: block; }
.proc-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.3px;
  margin-bottom: 10px;
}
.proc-card p { font-size: 14px; color: var(--text); line-height: 1.65; }

.proc-connector {
  display: flex;
  align-items: center;
  min-width: 40px;
  padding: 0 2px;
  flex-shrink: 0;
}
.proc-connector::after {
  content: '';
  display: block;
  width: 100%;
  border-top: 1px dashed rgba(255,255,255,.07);
}
@media(max-width:768px) {
  .process-grid { flex-direction: column; gap: 10px; }
  .proc-connector {
    min-width: auto; width: 1px; height: 24px;
    padding: 0;
    margin: -2px auto;
  }
  .proc-connector::after {
    width: auto; border-top: none;
    border-left: 1px dashed rgba(255,255,255,.07);
    height: 100%;
    display: block;
  }
}

/* ============================================================ DIVISIONS */
.div-sec {
  padding: 100px 24px;
  border-top: 1px solid var(--border);
  position: relative;
}
.div-sec::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,214,10,.3), transparent);
}
.div-list { max-width: 700px; margin: 0 auto; }
.d-item {
  display: grid;
  grid-template-columns: 32px 28px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: all .3s;
}
.d-item:hover { padding-left: 8px; }
.d-item:hover .d-name { color: var(--white); }
.d-num { font-size: 11px; color: var(--dim); font-weight: 500; font-variant-numeric: tabular-nums; }
.d-icon { font-size: 18px; text-align: center; }
.d-name { font-size: 16px; font-weight: 600; color: var(--text); transition: color .3s; letter-spacing: -.2px; }
.d-tag { font-size: 12px; color: var(--dim); text-align: right; }

/* ============================================================ CTA */
.cta {
  padding: 140px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 35% at 50% 55%, rgba(41,151,255,.04), transparent),
    radial-gradient(circle 200px at 30% 60%, rgba(191,90,242,.03), transparent),
    radial-gradient(circle 200px at 70% 40%, rgba(255,214,10,.02), transparent);
  pointer-events: none;
}
.cta-content { max-width: 520px; margin: 0 auto; position: relative; z-index: 2; }
.cta h2 {
  font-size: clamp(34px, 6vw, 54px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 6px;
}
.cta h2 .thin { font-weight: 200; color: rgba(245,245,247,.4); }
.cta-quote {
  font-family: 'Newsreader', serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--dim);
  margin-bottom: 36px;
}

/* Contact form */
.cta-form {
  max-width: 480px;
  margin: 0 auto 14px;
  text-align: left;
}
.form-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.cta-form input,
.cta-form select {
  flex: 1;
  padding: 13px 15px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  min-width: 0;
  -webkit-appearance: none;
}
.cta-form input::placeholder { color: var(--dim); }
.cta-form select { color: var(--dim); cursor: pointer; }
.cta-form select option { background: #14141c; color: var(--white); }
.cta-form input:focus,
.cta-form select:focus {
  border-color: rgba(41,151,255,.3);
  box-shadow: 0 0 0 3px rgba(41,151,255,.06);
}
.cta-form button {
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: white;
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: filter .3s, transform .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.cta-form button:hover { filter: brightness(1.15); transform: translateY(-1px); }
.cta-form button:disabled { opacity: .6; cursor: not-allowed; transform: none; filter: none; }
.btn-arr { font-size: 18px; transition: transform .3s; }
.cta-form button:not(:disabled):hover .btn-arr { transform: translateX(3px); }

.form-success {
  display: none;
  margin-top: 14px;
  padding: 16px;
  background: rgba(48,209,88,.06);
  border: 1px solid rgba(48,209,88,.15);
  border-radius: 10px;
  font-size: 14px;
  color: var(--green);
  text-align: left;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}
.form-success.show { display: flex; }
.success-icon { font-size: 20px; flex-shrink: 0; }

@media(max-width:500px) { .form-row { flex-direction: column; } }

.cta-note { font-size: 12px; color: var(--dim); text-align: center; }
.cta-note em { color: var(--gold); font-style: normal; }

.cta-row {
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.cr { text-align: center; }
.cr .cr-n { font-size: 24px; font-weight: 700; color: var(--white); letter-spacing: -.5px; }
.cr .cr-l { font-size: 11px; color: var(--dim); margin-top: 2px; }

/* ============================================================ STICKY CTA */
.sticky-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 90;
  box-shadow: 0 8px 32px rgba(41,151,255,.2);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s, transform .4s, filter .3s;
  pointer-events: none;
}
.sticky-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-cta:hover { filter: brightness(1.15); }
.sticky-cta span { font-size: 16px; transition: transform .25s; }
.sticky-cta:hover span { transform: translateX(2px); }
@media(max-width:500px) { .sticky-cta { bottom: 16px; right: 16px; padding: 11px 16px; font-size: 12px; } }

/* ============================================================ FOOTER */
footer {
  padding: 40px 24px 16px;
  border-top: 1px solid var(--border);
}
.f-inner { max-width: 980px; margin: 0 auto; }
.f-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.f-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding-bottom: 28px;
}
@media(max-width:768px) { .f-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width:500px) { .f-grid { grid-template-columns: 1fr 1fr; } }

.f-col h5 {
  font-size: 11px;
  font-weight: 600;
  color: rgba(245,245,247,.55);
  margin-bottom: 10px;
  letter-spacing: .3px;
}
.f-col a {
  display: block;
  font-size: 12px;
  color: var(--text);
  text-decoration: none;
  padding: 2.5px 0;
  transition: color .2s;
}
.f-col a:hover { color: var(--white); }
.f-bot {
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--dim);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
