/* ==========================================================================
   Tech Promotions - dark, modern, bento design system
   ========================================================================== */

:root {
  --bg: #08080f;
  --bg-2: #0d0d18;
  --surface: #12121f;
  --surface-2: #181828;
  --surface-3: #1f1f32;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --violet: #7c5cfc;
  --violet-bright: #9d7bff;
  --cyan: #22d3ee;
  --pink: #f65a9c;
  --lime: #a3e635;

  --text: #f4f5fb;
  --muted: #9a9ab4;
  --muted-dim: #6a6a82;

  --grad: linear-gradient(120deg, #7c5cfc 0%, #22d3ee 100%);
  --grad-soft: linear-gradient(120deg, rgba(124, 92, 252, 0.18), rgba(34, 211, 238, 0.12));

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

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-pill: 999px;

  --shadow-glow: 0 30px 80px -30px rgba(124, 92, 252, 0.55);
  --shadow-card: 0 24px 60px -30px rgba(0, 0, 0, 0.8);

  --container: 1200px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient background glow */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(600px circle at 12% 0%, rgba(124, 92, 252, 0.16), transparent 45%),
    radial-gradient(700px circle at 90% 8%, rgba(34, 211, 238, 0.10), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--text);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 26px;
}

section { position: relative; padding: 100px 0; z-index: 1; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 7px 16px;
  border-radius: var(--r-pill);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.2);
  margin-bottom: 22px;
}

.section-head {
  max-width: 680px;
  margin-bottom: 60px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad);
  color: #08080f;
  font-weight: 600;
  box-shadow: 0 16px 40px -16px rgba(124, 92, 252, 0.7);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px -16px rgba(124, 92, 252, 0.85);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: var(--violet-bright);
  background: rgba(124, 92, 252, 0.1);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(8, 8, 15, 0.75);
  backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.24rem;
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: nowrap;
  flex: none;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #08080f;
  box-shadow: 0 8px 22px -8px rgba(124, 92, 252, 0.8);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.main-nav ul {
  display: flex;
  gap: 36px;
}

.main-nav ul a {
  position: relative;
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 0;
  transition: color 0.2s ease;
}

.main-nav ul a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--grad);
  transition: width 0.25s ease;
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.7rem;
  cursor: pointer;
}

.mobile-nav-cta { display: none; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: calc(84px + 110px) 0 300px;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 55% at 30% 12%, #000 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 30% 12%, #000 10%, transparent 70%);
  opacity: 0.45;
  z-index: 0;
}

/* Diagonal light beam from the top right */
.hero-beam {
  position: absolute;
  top: -25%;
  right: -10%;
  width: 65%;
  height: 130%;
  background: linear-gradient(202deg, rgba(120, 170, 255, 0.20) 0%, rgba(124, 92, 252, 0.10) 35%, transparent 62%);
  transform: rotate(-6deg);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.hero .container { max-width: 980px; z-index: 3; }

/* Spotlit headline: bright in the middle, falling off to grey at the edges */
.hero h1 {
  font-size: clamp(2.7rem, 7.8vw, 5.6rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin: 0 auto 26px;
  background: radial-gradient(ellipse 68% 130% at 50% 38%,
      #ffffff 0%,
      #eef2fb 28%,
      #aab3c7 58%,
      #6c7488 82%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 38px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Glowing planet horizon: a blurred atmosphere ring behind an opaque body */
.hero-glow,
.hero-planet {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 87%);
  width: 155vw;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

/* True gaussian bloom hugging the curve, no hard stroke */
.hero-glow {
  background: radial-gradient(closest-side,
      transparent 85%,
      rgba(70, 165, 255, 0.35) 94%,
      rgba(165, 225, 255, 0.92) 98.5%,
      rgba(140, 110, 255, 0.55) 100%);
  filter: blur(30px);
  z-index: 0;
}

/* Wider, softer halo layered on top of the first for depth */
.hero-glow::after {
  content: '';
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  background: radial-gradient(closest-side,
      transparent 88%,
      rgba(90, 140, 255, 0.28) 97%,
      rgba(124, 92, 252, 0.20) 100%);
  filter: blur(45px);
}

/* Opaque body masks the inner half of the bloom, leaving only the horizon light */
.hero-planet {
  background: var(--bg);
  box-shadow:
    0 -20px 130px 30px rgba(96, 140, 255, 0.20),
    0 -50px 270px 90px rgba(124, 92, 252, 0.15);
  z-index: 1;
}

/* Floating particles above the horizon */
.hero-particles {
  position: absolute;
  inset: auto 0 0 0;
  height: 420px;
  pointer-events: none;
  z-index: 2;
}

.hero-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #b9d9ff;
  box-shadow: 0 0 8px 2px rgba(140, 190, 255, 0.75);
  opacity: 0.75;
  animation: drift 9s ease-in-out infinite;
}

.hero-particles span:nth-child(1)  { left: 12%; bottom: 26%; animation-delay: 0s;    }
.hero-particles span:nth-child(2)  { left: 22%; bottom: 42%; animation-delay: 1.2s;  }
.hero-particles span:nth-child(3)  { left: 31%; bottom: 18%; animation-delay: 2.4s;  }
.hero-particles span:nth-child(4)  { left: 39%; bottom: 52%; animation-delay: 0.6s;  }
.hero-particles span:nth-child(5)  { left: 46%; bottom: 30%; animation-delay: 3.1s;  }
.hero-particles span:nth-child(6)  { left: 54%; bottom: 46%; animation-delay: 1.8s;  }
.hero-particles span:nth-child(7)  { left: 61%; bottom: 22%; animation-delay: 4.2s;  }
.hero-particles span:nth-child(8)  { left: 68%; bottom: 38%; animation-delay: 2.9s;  }
.hero-particles span:nth-child(9)  { left: 76%; bottom: 55%; animation-delay: 0.3s;  }
.hero-particles span:nth-child(10) { left: 83%; bottom: 28%; animation-delay: 3.6s;  }
.hero-particles span:nth-child(11) { left: 89%; bottom: 44%; animation-delay: 1.5s;  }
.hero-particles span:nth-child(12) { left: 6%;  bottom: 48%; animation-delay: 5s;    }

@keyframes drift {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50%      { transform: translateY(-26px); opacity: 0.9; }
}

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

/* ==========================================================================
   Marquee (tech stack)
   ========================================================================== */

.marquee-wrap {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scroll-x 32s linear infinite;
}

.marquee span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--muted-dim);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.2s ease;
}

.marquee span i { color: var(--violet); font-size: 1.1rem; }

.marquee-wrap:hover .marquee { animation-play-state: paused; }

@keyframes scroll-x {
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Services - bento grid
   ========================================================================== */

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(230px, auto);
  gap: 20px;
}

.bento-card {
  position: relative;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
}

.bento-card:hover::before { opacity: 1; }

.bento-card > * { position: relative; z-index: 1; }

/* size variants */
.bento-lg { grid-column: span 4; }
.bento-sm { grid-column: span 2; }
.bento-half { grid-column: span 3; }

.bento-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 24px;
  background: rgba(124, 92, 252, 0.14);
  color: var(--violet-bright);
  border: 1px solid rgba(124, 92, 252, 0.2);
}

.bento-card:nth-child(2) .bento-icon { background: rgba(34, 211, 238, 0.14); color: var(--cyan); border-color: rgba(34, 211, 238, 0.2); }
.bento-card:nth-child(3) .bento-icon { background: rgba(246, 90, 156, 0.14); color: var(--pink); border-color: rgba(246, 90, 156, 0.2); }
.bento-card:nth-child(4) .bento-icon { background: rgba(163, 230, 53, 0.14); color: var(--lime); border-color: rgba(163, 230, 53, 0.2); }

.bento-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.bento-card p {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 20px;
}

.bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bento-tags span {
  font-size: 0.78rem;
  color: var(--muted);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
  margin-top: 20px;
}

.bento-link i { transition: transform 0.2s ease; }
.bento-card:hover .bento-link i { transform: translateX(5px); }

/* ==========================================================================
   Stats band
   ========================================================================== */

.stats-band {
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 50px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.stats-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(500px circle at 50% 120%, rgba(124, 92, 252, 0.16), transparent 60%);
  pointer-events: none;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item .num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .label {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ==========================================================================
   Why choose us
   ========================================================================== */

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

.why-card {
  padding: 30px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
}

.why-card .why-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.1);
}

.why-card h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ==========================================================================
   Process
   ========================================================================== */

.process { background: var(--bg-2); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 30px 22px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  border-color: var(--violet);
}

.process-step .step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--grad);
  color: #08080f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.process-step h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  padding: 32px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testi-stars {
  display: flex;
  gap: 3px;
  color: var(--lime);
  font-size: 1rem;
}

.testi-card blockquote {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.65;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #08080f;
  flex: none;
}

.testi-author .name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testi-author .role {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ==========================================================================
   CTA
   ========================================================================== */

.cta-band {
  position: relative;
  border-radius: var(--r-lg);
  padding: 70px 50px;
  text-align: center;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-strong);
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px circle at 20% 20%, rgba(124, 92, 252, 0.3), transparent 55%),
    radial-gradient(500px circle at 80% 90%, rgba(34, 211, 238, 0.22), transparent 55%);
}

.cta-band > * { position: relative; z-index: 1; }

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.cta-band p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 34px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
  background: var(--bg-2);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo { margin-bottom: 18px; }

.footer-brand p {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 300px;
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  gap: 11px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1.05rem;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  color: var(--text);
  border-color: var(--violet);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-dim);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 13px; }

.footer-col a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--cyan); }

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 13px;
}

.footer-contact i { color: var(--violet-bright); margin-top: 3px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: 0.85rem;
  color: var(--muted-dim);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}

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

/* ==========================================================================
   Page header (interior)
   ========================================================================== */

.page-header {
  padding: calc(84px + 70px) 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header .hero-grid { opacity: 0.4; }

.breadcrumb {
  font-size: 0.88rem;
  color: var(--muted-dim);
  margin-top: 12px;
}

.breadcrumb a { color: var(--cyan); }

/* ==========================================================================
   Feature rows (services / about)
   ========================================================================== */

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px 0;
}

.feature-row + .feature-row { border-top: 1px solid var(--border); }

.feature-row.reverse .feature-showcase { order: 2; }
.feature-row.reverse .feature-copy { order: 1; }

.feature-showcase {
  position: relative;
  aspect-ratio: 4 / 3.4;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  overflow: hidden;
}

.feature-showcase img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Brand wash so photos sit inside the dark theme instead of on top of it */
.feature-showcase::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(124, 92, 252, 0.38) 0%, rgba(34, 211, 238, 0.14) 45%, rgba(8, 8, 15, 0.42) 100%),
    linear-gradient(0deg, rgba(8, 8, 15, 0.48), rgba(8, 8, 15, 0.06));
  pointer-events: none;
}

.showcase-badge {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: #08080f;
  box-shadow: var(--shadow-glow);
}

.showcase-chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: var(--r-pill);
  background: rgba(13, 13, 24, 0.8);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(8px);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-display);
}

.showcase-chip i { color: var(--cyan); }
.chip-a { top: 24px; left: 24px; animation: floaty 5s ease-in-out infinite; }
.chip-b { bottom: 24px; right: 24px; animation: floaty 6s ease-in-out infinite reverse; }

.feature-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.feature-copy h2 { margin-bottom: 16px; }
.feature-copy p { color: var(--muted); margin-bottom: 14px; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 30px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--text);
  font-size: 0.96rem;
}

.feature-list i { color: var(--cyan); font-size: 1.25rem; flex: none; margin-top: 1px; }

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  align-items: start;
}

.contact-info-card,
.contact-form-card {
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 40px;
}

.contact-info-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(400px circle at 20% 0%, rgba(124, 92, 252, 0.22), transparent 60%),
    var(--surface);
}

.contact-info-card h3 { margin-bottom: 8px; }
.contact-info-card > p { color: var(--muted); font-size: 0.94rem; margin-bottom: 32px; }

.info-list { display: flex; flex-direction: column; gap: 22px; }
.info-list li { display: flex; gap: 15px; align-items: flex-start; }
.info-list strong { display: block; font-family: var(--font-display); font-size: 0.92rem; margin-bottom: 3px; color: var(--text); }
.info-list span { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
.info-list a { color: var(--muted); }
.info-list a:hover { color: var(--cyan); }

.info-icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: rgba(124, 92, 252, 0.14);
  border: 1px solid rgba(124, 92, 252, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--violet-bright);
}

.info-social {
  display: flex;
  gap: 11px;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.info-social a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1.05rem;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.info-social a:hover { color: var(--text); border-color: var(--cyan); transform: translateY(-3px); }

.contact-form-card { background: var(--surface); }
.contact-form-card h2 { margin-bottom: 8px; }
.contact-form-card > p { color: var(--muted); margin-bottom: 28px; }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }

label {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text);
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  resize: vertical;
  width: 100%;
}

input::placeholder, textarea::placeholder { color: var(--muted-dim); }

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--violet);
  background: rgba(124, 92, 252, 0.06);
}

.input-icon-wrap { position: relative; }

.input-icon-wrap > i:first-child {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-dim);
  font-size: 1.05rem;
  pointer-events: none;
}

.input-icon-wrap input,
.input-icon-wrap select { padding-left: 42px; }

.select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 38px; cursor: pointer; }
.select-wrap option { background: var(--surface-2); color: var(--text); }

.select-caret {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-dim);
  font-size: 0.9rem;
  pointer-events: none;
}

.radio-pills { display: flex; gap: 12px; flex-wrap: wrap; }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; width: 0; height: 0; }

.radio-pill span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.radio-pill input:checked + span {
  background: rgba(124, 92, 252, 0.16);
  border-color: var(--violet);
  color: var(--text);
}

.textarea-wrap { position: relative; }

.char-counter {
  position: absolute;
  right: 14px;
  bottom: 12px;
  font-size: 0.75rem;
  color: var(--muted-dim);
}

.field-error { font-size: 0.82rem; color: #ff6b81; min-height: 1em; }

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: #ff6b81; }

.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 14px; }
.form-note a { color: var(--cyan); }

.alert {
  padding: 15px 18px;
  border-radius: var(--r-sm);
  margin-bottom: 24px;
  font-size: 0.92rem;
}

.alert i { margin-right: 6px; }

.alert-success {
  background: rgba(163, 230, 53, 0.1);
  border: 1px solid rgba(163, 230, 53, 0.3);
  color: #cdee9a;
}

.alert-error {
  background: rgba(255, 107, 129, 0.1);
  border: 1px solid rgba(255, 107, 129, 0.3);
  color: #ffb3bd;
}

.btn.is-loading { opacity: 0.7; pointer-events: none; }
.btn.is-loading i { animation: spin 0.8s linear infinite; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   Legal + 404
   ========================================================================== */

.legal-content { max-width: 760px; margin: 0 auto; }

.legal-content .updated {
  font-size: 0.88rem;
  color: var(--muted-dim);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 44px;
  margin-bottom: 12px;
}

.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { color: var(--muted); }
.legal-content a { color: var(--cyan); font-weight: 500; }

.error-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 11rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.error-msg { color: var(--muted); font-size: 1.1rem; }

/* ==========================================================================
   Reveal animation
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1000px) {
  .bento-lg, .bento-sm, .bento-half { grid-column: span 3; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }

  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse .feature-showcase,
  .feature-row.reverse .feature-copy { order: initial; }
  .feature-row .feature-showcase { order: -1; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  section { padding: 70px 0; }

  .main-nav {
    position: fixed;
    top: 84px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 200;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    padding: 30px 26px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-top: 1px solid var(--border);
  }
  .main-nav.open { transform: translateX(0); }

  /* backdrop-filter on the header would make the fixed nav position against the
     header instead of the viewport, clipping the menu once the page is scrolled.
     Use a solid bar on mobile instead. */
  .site-header.is-scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(8, 8, 15, 0.97);
  }

  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav ul a { display: block; padding: 15px 4px; border-bottom: 1px solid var(--border); font-size: 1.05rem; }
  .header-actions .btn-ghost,
  .header-actions .header-cta { display: none; }
  .mobile-nav-cta { display: inline-flex; justify-content: center; margin-top: 24px; }
  .nav-toggle { display: block; }

  .bento { grid-template-columns: 1fr; }
  .bento-lg, .bento-sm, .bento-half { grid-column: span 1; }

  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; padding: 40px 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }

  .hero { padding: calc(84px + 70px) 0 190px; }
  .hero-glow,
  .hero-planet { width: 300vw; transform: translate(-50%, 90%); }
  .hero-glow { filter: blur(20px); }
  .hero-particles { height: 260px; }
  .hero-lead { font-size: 1rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-band { padding: 50px 26px; }

  .form-grid { grid-template-columns: 1fr; }
  .contact-info-card, .contact-form-card { padding: 30px 24px; }

  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}
