/* ==========================================================================
   DEVECTUS — theme.css
   Tech-noir: near-black · electric magenta · glass. Precise, kinetic, bold.
   ========================================================================== */

:root {
  --bg: #0a0b10;
  --bg-2: #0e1018;
  --bg-3: #131623;
  --ink: #07080c;
  --white: #f8f9fc;
  --muted: #98a0b3;
  --pink: #ce3574;
  --pink-soft: #e85e97;
  --violet: #6d4dd4;
  --line: rgba(248, 249, 252, 0.08);
  --line-pink: rgba(206, 53, 116, 0.35);
  --glass: rgba(19, 22, 35, 0.55);
  --display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --body: 'Inter', 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', Consolas, monospace;
  --grad: linear-gradient(95deg, #ce3574 0%, #e85e97 45%, #6d4dd4 100%);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--body);
  font-weight: 300;
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--pink); color: var(--white); }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--pink); color: var(--white); padding: 0.6rem 1.2rem; }
.skip-link:focus { left: 0; }

/* ============ Type helpers ============ */

h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h2 .accent { color: var(--pink-soft); }

.kicker {
  font-family: var(--mono); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink-soft);
  margin-bottom: 1rem;
}

.grad {
  background: var(--grad);
  background-size: 160% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 8s ease-in-out infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.section-head { text-align: center; max-width: 820px; margin: 0 auto 4rem; padding: 0 1.5rem; }
.section-lede { color: var(--muted); margin-top: 1.1rem; }

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

.btn {
  display: inline-block; padding: 0.95rem 2.2rem;
  font-family: var(--display); font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.02em; border-radius: 10px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, border-color 0.35s, color 0.35s;
}
.btn-primary {
  background: var(--grad); background-size: 180% auto; color: var(--white);
  box-shadow: 0 10px 32px -10px rgba(206, 53, 116, 0.55);
}
.btn-primary:hover { background-position: right center; transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(206, 53, 116, 0.7); }
.btn-line { border-color: rgba(248, 249, 252, 0.22); color: var(--white); }
.btn-line:hover { border-color: var(--pink-soft); color: var(--pink-soft); transform: translateY(-2px); }

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

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

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 0;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.site-header.scrolled {
  background: rgba(10, 11, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line), 0 18px 40px -24px rgba(0, 0, 0, 0.9);
  padding: 0.65rem 0;
}
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.brand-logo { height: 22px; width: auto; transition: height 0.4s; }
.site-header.scrolled .brand-logo { height: 19px; }

.site-nav { display: flex; align-items: center; gap: 1.9rem; }
.site-nav > a, .nav-drop-toggle {
  font-family: var(--display); font-weight: 500; font-size: 0.92rem;
  color: var(--white); background: none; border: none; cursor: pointer;
  position: relative; padding: 0.4rem 0;
}
.site-nav > a::after, .nav-drop-toggle::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--grad); border-radius: 2px; transition: width 0.3s var(--ease);
}
.site-nav > a:hover::after, .nav-group:hover .nav-drop-toggle::after { width: 100%; }
.nav-drop-toggle .caret { color: var(--pink-soft); font-weight: 400; }

.nav-group { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 330px; padding: 0.6rem;
  background: rgba(14, 16, 24, 0.97); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.9);
  opacity: 0; visibility: hidden; transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
.nav-group:hover .nav-dropdown, .nav-group.open .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex; align-items: baseline; gap: 0.9rem;
  padding: 0.8rem 1rem; border-radius: 10px;
  transition: background 0.25s;
}
.nav-dropdown a:hover { background: rgba(206, 53, 116, 0.1); }
.nav-dropdown .dd-num { font-family: var(--mono); font-size: 0.75rem; color: var(--pink-soft); }
.nav-dropdown strong { display: block; font-family: var(--display); font-weight: 600; font-size: 0.95rem; }
.nav-dropdown em { display: block; font-style: normal; font-size: 0.78rem; color: var(--muted); }

.nav-action {
  border: 1px solid var(--line-pink); border-radius: 10px;
  padding: 0.55rem 1.2rem !important; color: var(--pink-soft) !important;
}
.nav-action::after { display: none; }
.nav-action:hover { background: rgba(206, 53, 116, 0.12); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 110; }
.nav-toggle span { display: block; width: 25px; height: 2px; background: var(--white); margin: 5.5px 0; border-radius: 2px; transition: transform 0.35s, opacity 0.35s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============ Hero / page hero ============ */

.hero, .page-hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 100% at 50% -10%, #181c2e 0%, var(--bg) 55%, var(--ink) 100%);
}
.hero { min-height: 100vh; display: flex; align-items: center; padding: 8rem 0 5rem; }
.page-hero { padding: 10rem 0 5.5rem; }

.hero-grid { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.55; }
.hero-mesh {
  position: absolute; inset: -25%;
  background:
    radial-gradient(32% 28% at 22% 30%, rgba(206, 53, 116, 0.14), transparent 70%),
    radial-gradient(30% 26% at 78% 65%, rgba(109, 77, 212, 0.16), transparent 70%),
    radial-gradient(22% 20% at 60% 20%, rgba(232, 94, 151, 0.08), transparent 70%);
  animation: meshDrift 16s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes meshDrift {
  from { transform: translate3d(-2%, -1%, 0) rotate(-1deg); }
  to { transform: translate3d(2%, 2%, 0) rotate(1deg); }
}

.hero-inner, .page-hero-inner {
  position: relative; z-index: 2;
  max-width: 1080px; margin: 0 auto; padding: 0 2rem;
  text-align: center;
}

.hero-kicker {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--line); border-radius: 100px;
  padding: 0.45rem 1.1rem; margin-bottom: 2rem;
  background: rgba(14, 16, 24, 0.6);
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--pink);
  box-shadow: 0 0 0 0 rgba(206, 53, 116, 0.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(206, 53, 116, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(206, 53, 116, 0); }
  100% { box-shadow: 0 0 0 0 rgba(206, 53, 116, 0); }
}

.hero-title { font-size: clamp(2.5rem, 6vw, 4.6rem); margin-bottom: 1.6rem; }
.page-title { font-size: clamp(2.2rem, 4.8vw, 3.6rem); margin-bottom: 1.5rem; }

.hero-sub { color: var(--muted); font-size: 1.1rem; max-width: 44rem; margin: 0 auto 1.8rem; }

.hero-terminal {
  font-family: var(--mono); font-size: 0.92rem; color: var(--pink-soft);
  background: rgba(7, 8, 12, 0.75); border: 1px solid var(--line); border-radius: 10px;
  padding: 0.85rem 1.3rem; display: inline-block; margin-bottom: 2.2rem;
  min-width: min(560px, 90%); text-align: left; min-height: 3.1em;
}
.typer-caret {
  display: inline-block; width: 9px; height: 1.1em; vertical-align: text-bottom;
  background: var(--pink-soft); margin-left: 3px;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-mono { font-family: var(--mono); font-size: 0.88rem; color: var(--pink-soft); margin-bottom: 2rem; letter-spacing: 0.06em; }

.hero .hero-actions, .page-hero .hero-actions { justify-content: center; margin-bottom: 2.4rem; }

.hero-chips { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.chip {
  font-size: 0.8rem; color: var(--muted);
  border: 1px solid var(--line); border-radius: 100px; padding: 0.45rem 1.1rem;
  background: rgba(14, 16, 24, 0.5);
}

/* ============ Marquee ============ */

.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--ink); overflow: hidden; padding: 1rem 0;
}
.marquee-track {
  display: flex; gap: 2.6rem; width: max-content; align-items: center; white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--display); font-weight: 500; font-size: 1rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.18em;
}
.marquee-track i { font-style: normal; color: var(--pink); font-size: 0.7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ Solutions grid ============ */

.solutions { padding: 7.5rem 2rem; max-width: 1280px; margin: 0 auto; }

.solution-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }

.solution-card {
  position: relative; display: block;
  border: 1px solid var(--line); border-radius: 18px;
  padding: 2.6rem 2.4rem;
  background: linear-gradient(165deg, var(--glass), rgba(10, 11, 16, 0.3));
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
}
.solution-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(206, 53, 116, 0.12), transparent 70%);
  transition: opacity 0.5s;
}
.solution-card:hover { transform: translateY(-8px); border-color: var(--line-pink); box-shadow: 0 30px 60px -30px rgba(206, 53, 116, 0.4); }
.solution-card:hover::before { opacity: 1; }

.sc-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.6rem; }
.sc-num { font-family: var(--mono); font-size: 0.85rem; color: var(--pink-soft); }
.sc-badge {
  font-family: var(--mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--pink-soft); border: 1px solid var(--line-pink); border-radius: 100px; padding: 0.25rem 0.8rem;
}
.solution-card h3 { font-size: 1.7rem; margin-bottom: 0.6rem; }
.sc-tagline { color: var(--muted); margin-bottom: 1.1rem; }
.sc-mono { font-family: var(--mono); font-size: 0.78rem; color: rgba(232, 94, 151, 0.75); margin-bottom: 1.6rem; }
.sc-cta { font-family: var(--display); font-weight: 600; font-size: 0.92rem; color: var(--pink-soft); }
.sc-cta em { font-style: normal; display: inline-block; transition: transform 0.3s var(--ease); }
.solution-card:hover .sc-cta em, .product-card:hover .sc-cta em { transform: translateX(6px); }

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

.process { padding: 7.5rem 2rem; background: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-rail {
  max-width: 1280px; margin: 0 auto; list-style: none;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem;
  counter-reset: step;
}
.process-step {
  position: relative; padding: 1.8rem 1.4rem 0; border-top: 1px solid var(--line);
}
.process-step::before {
  content: ''; position: absolute; top: -1px; left: 0; width: 42%; height: 2px;
  background: var(--grad);
}
.ps-num { font-family: var(--mono); font-size: 0.8rem; color: var(--pink-soft); display: block; margin-bottom: 0.8rem; }
.process-step h3 { font-size: 1.12rem; margin-bottom: 0.5rem; }
.process-step p { color: var(--muted); font-size: 0.88rem; }

/* ============ Products ============ */

.products-band { padding: 7.5rem 2rem; max-width: 1280px; margin: 0 auto; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }

.product-card {
  display: block; position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 18px; padding: 2.6rem 2.4rem;
  background: linear-gradient(165deg, var(--glass), rgba(10, 11, 16, 0.3));
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
}
.product-card:hover { transform: translateY(-8px); border-color: var(--line-pink); box-shadow: 0 30px 60px -30px rgba(109, 77, 212, 0.45); }

.pc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.pc-name { font-family: var(--display); font-weight: 700; font-size: 1.9rem; }
.pc-badge {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em;
  color: #ffd76b; border: 1px solid rgba(255, 215, 107, 0.4); border-radius: 100px; padding: 0.25rem 0.8rem;
}
.pc-badge.alt { color: var(--pink-soft); border-color: var(--line-pink); }
.pc-line { color: var(--muted); margin-bottom: 1.4rem; }
.pc-meta { display: flex; align-items: baseline; gap: 1.2rem; margin-bottom: 1.6rem; }
.pc-price { font-family: var(--display); font-weight: 700; font-size: 1.7rem; }
.pc-price small { font-size: 0.85rem; font-weight: 400; color: var(--muted); }
.pc-tag { font-family: var(--mono); font-size: 0.75rem; color: var(--pink-soft); }

.pc-visual { margin-bottom: 1.6rem; }
.pc-callcard {
  display: flex; flex-direction: column; gap: 0.45rem;
  border: 1px solid var(--line); border-radius: 12px; padding: 1.1rem 1.3rem;
  background: rgba(7, 8, 12, 0.7);
  font-family: var(--mono); font-size: 0.8rem; color: var(--muted);
}
.cc-row b { color: var(--white); font-weight: 500; }
.cc-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--muted); margin-right: 0.5rem;
}
.cc-dot.live { background: #43d97b; box-shadow: 0 0 8px rgba(67, 217, 123, 0.8); }

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

.stats-band { padding: 5.5rem 2rem; background: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num {
  font-family: var(--display); font-weight: 700; font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 0.7rem; max-width: 13rem; }

/* ============ Audience / fit ============ */

.audience, .fit-band { padding: 7rem 2rem; max-width: 1180px; margin: 0 auto; }
.audience-grid, .fit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.aud-item, .fit-item {
  display: flex; gap: 1rem; align-items: flex-start;
  border: 1px solid var(--line); border-radius: 14px; padding: 1.5rem 1.7rem;
  background: linear-gradient(165deg, rgba(19, 22, 35, 0.4), transparent);
  font-family: var(--display); font-weight: 500; font-size: 1.02rem;
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.aud-item:hover, .fit-item:hover { border-color: var(--line-pink); transform: translateY(-4px); }
.aud-glyph { color: var(--pink-soft); }
.fit-item { font-family: var(--body); font-weight: 300; color: var(--muted); font-size: 0.97rem; }

/* ============ Quote band ============ */

.quote-band { padding: 6.5rem 2rem; background: var(--ink); border-top: 1px solid var(--line); text-align: center; }
.quote-inner { max-width: 840px; margin: 0 auto; }
.quote-band blockquote {
  font-family: var(--display); font-weight: 500; font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  line-height: 1.4; margin-bottom: 1.4rem;
}
.quote-band cite { font-family: var(--mono); font-style: normal; font-size: 0.82rem; color: var(--pink-soft); }

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

.cta-band {
  position: relative; overflow: hidden; padding: 8rem 2rem; text-align: center;
  background: radial-gradient(90% 130% at 50% 130%, #1c1430 0%, var(--bg) 60%, var(--ink) 100%);
}
.cta-inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.cta-inner h2 { margin-bottom: 1.6rem; }
.cta-inner .hero-sub { margin-bottom: 2rem; }
.cta-band .hero-actions { justify-content: center; }

/* ============ Solution / product pages ============ */

.deliver { padding: 7rem 2rem; max-width: 1280px; margin: 0 auto; }
.deliver-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.deliver-card {
  border: 1px solid var(--line); border-radius: 16px; padding: 2rem 1.8rem;
  background: linear-gradient(165deg, var(--glass), rgba(10, 11, 16, 0.25));
  transition: transform 0.45s var(--ease), border-color 0.45s;
}
.deliver-card:hover { transform: translateY(-6px); border-color: var(--line-pink); }
.dc-num { font-family: var(--mono); font-size: 0.78rem; color: var(--pink-soft); display: block; margin-bottom: 1rem; }
.deliver-card h3 { font-size: 1.18rem; margin-bottom: 0.6rem; }
.deliver-card p { color: var(--muted); font-size: 0.9rem; }

.points-band { padding: 6.5rem 2rem; background: var(--ink); border-top: 1px solid var(--line); }
.points-inner { max-width: 880px; margin: 0 auto; }
.points-head { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 2.2rem; }
.points-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
.points-list li { display: flex; gap: 1rem; align-items: flex-start; color: var(--muted); }
.pl-mark { color: var(--pink-soft); font-weight: 600; }

/* Pricing */
.pricing-band { padding: 6.5rem 2rem; display: flex; justify-content: center; background: var(--ink); border-top: 1px solid var(--line); }
.pricing-card {
  max-width: 560px; width: 100%; text-align: center;
  border: 1px solid var(--line-pink); border-radius: 20px; padding: 3rem 2.6rem;
  background: linear-gradient(170deg, rgba(206, 53, 116, 0.08), rgba(10, 11, 16, 0.4));
  box-shadow: 0 40px 80px -40px rgba(206, 53, 116, 0.4);
}
.pricing-card h2 { margin-bottom: 0.6rem; }
.price { font-family: var(--display); font-weight: 700; font-size: 3.2rem; margin-bottom: 1.6rem; }
.price small { font-size: 1rem; font-weight: 400; color: var(--muted); margin-left: 0.4rem; }
.pricing-card .points-list { text-align: left; margin-bottom: 2rem; }

/* Reviews */
.reviews { padding: 7rem 2rem; max-width: 1280px; margin: 0 auto; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review-card {
  border: 1px solid var(--line); border-radius: 16px; padding: 2rem 1.8rem;
  background: linear-gradient(165deg, var(--glass), rgba(10, 11, 16, 0.25));
}
.review-stars { color: #ffd76b; letter-spacing: 0.2em; margin-bottom: 1rem; }
.review-card blockquote { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.4rem; }
.review-card figcaption strong { display: block; font-family: var(--display); font-weight: 600; }
.review-card figcaption span { font-size: 0.8rem; color: var(--pink-soft); font-family: var(--mono); }

/* ============ About page ============ */

.story { padding: 7rem 2rem; }
.story-inner { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 4.5rem; }
.story-block h2 { margin-bottom: 1.4rem; }
.story-block p { color: var(--muted); margin-bottom: 1.1rem; }

.team { padding: 7rem 2rem; background: var(--ink); border-top: 1px solid var(--line); }
.team-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.team-card {
  border: 1px solid var(--line); border-radius: 18px; padding: 2.4rem 2rem; text-align: center;
  background: linear-gradient(165deg, var(--glass), rgba(10, 11, 16, 0.25));
  transition: transform 0.45s var(--ease), border-color 0.45s;
}
.team-card:hover { transform: translateY(-6px); border-color: var(--line-pink); }
.tc-avatar {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 1.4rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 1.5rem;
  background: var(--grad); color: var(--white);
  box-shadow: 0 14px 34px -12px rgba(206, 53, 116, 0.6);
}
.team-card h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.tc-role { font-family: var(--mono); font-size: 0.78rem; color: var(--pink-soft); margin-bottom: 1rem; }
.tc-bio { color: var(--muted); font-size: 0.9rem; }

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

.contact-body { padding: 5.5rem 2rem 7.5rem; }
.contact-grid {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); gap: 2.2rem;
}
.contact-form {
  border: 1px solid var(--line); border-radius: 18px; padding: 2.6rem;
  background: linear-gradient(165deg, var(--glass), rgba(10, 11, 16, 0.25));
  display: flex; flex-direction: column; gap: 1.3rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.contact-form label {
  display: flex; flex-direction: column; gap: 0.5rem;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink-soft);
}
.contact-form input, .contact-form select, .contact-form textarea {
  background: rgba(7, 8, 12, 0.7); border: 1px solid rgba(152, 160, 179, 0.25); border-radius: 10px;
  color: var(--white); font-family: var(--body); font-size: 0.98rem; font-weight: 300;
  padding: 0.85rem 1rem; transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(206, 53, 116, 0.18);
}
.contact-form .btn { align-self: flex-start; }
.form-status { font-family: var(--mono); font-size: 0.85rem; color: var(--pink-soft); min-height: 1.4em; }

.contact-aside { display: flex; flex-direction: column; gap: 1.2rem; }
.aside-card { border: 1px solid var(--line); border-radius: 16px; padding: 1.7rem 1.8rem; }
.aside-card h3 { font-family: var(--mono); font-weight: 500; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink-soft); margin-bottom: 0.7rem; }
.aside-card p { color: var(--muted); font-size: 0.95rem; }

/* ============ See it live (demo band) ============ */

.demo-band { padding: 6.5rem 2rem; background: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.demo-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 3.5rem; align-items: center;
}
.demo-copy h2 { margin-bottom: 1.2rem; }
.demo-copy .hero-sub { margin: 0 0 1.8rem; }
.demo-copy .hero-actions { justify-content: flex-start; }
.play-glyph { color: var(--pink-soft); font-size: 0.8rem; margin-right: 0.3rem; }

.demo-window {
  display: block; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  background: rgba(7, 8, 12, 0.8);
  box-shadow: 0 40px 80px -40px rgba(109, 77, 212, 0.5);
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
}
.demo-window:hover { transform: translateY(-6px); border-color: var(--line-pink); box-shadow: 0 48px 90px -40px rgba(206, 53, 116, 0.55); }
.dw-bar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1rem; border-bottom: 1px solid var(--line); background: rgba(19, 22, 35, 0.7);
}
.dw-bar i { width: 11px; height: 11px; border-radius: 50%; background: rgba(152, 160, 179, 0.4); display: block; }
.dw-bar i:first-child { background: #ff5f57; }
.dw-bar i:nth-child(2) { background: #febc2e; }
.dw-bar i:nth-child(3) { background: #28c840; }
.dw-url { margin-left: 0.7rem; font-family: var(--mono); font-size: 0.78rem; color: var(--muted); }
.dw-body {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  min-height: 230px;
  background:
    radial-gradient(50% 70% at 50% 40%, rgba(206, 53, 116, 0.16), transparent 70%),
    linear-gradient(135deg, rgba(109, 77, 212, 0.14), transparent),
    repeating-linear-gradient(0deg, rgba(248,249,252,0.03) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(248,249,252,0.03) 0 1px, transparent 1px 28px);
}
.dw-play {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad); color: var(--white); font-size: 1.3rem; padding-left: 4px;
  box-shadow: 0 14px 34px -10px rgba(206, 53, 116, 0.7);
  transition: transform 0.4s var(--ease);
}
.demo-window:hover .dw-play { transform: scale(1.08); }
.dw-label { font-family: var(--mono); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pink-soft); }

.dd-ext, .pc-ext { color: var(--pink-soft); font-size: 0.75em; }

/* ============ Website Sprint landing page ============ */

.lp-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0.9rem 0;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.lp-header.scrolled {
  background: rgba(10, 11, 16, 0.9); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line), 0 18px 40px -24px rgba(0, 0, 0, 0.9); padding: 0.55rem 0;
}
.lp-header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.lp-header-cta { display: flex; align-items: center; gap: 1.2rem; }

.lp-phone { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--white); }
.lp-phone-glyph {
  width: 38px; height: 38px; flex: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
  background: rgba(206, 53, 116, 0.14); border: 1px solid var(--line-pink); color: var(--pink-soft);
  transition: background 0.3s, transform 0.3s;
}
.lp-phone:hover .lp-phone-glyph { background: rgba(206, 53, 116, 0.28); transform: scale(1.06); }
.lp-phone-text { display: flex; flex-direction: column; line-height: 1.15; }
.lp-phone-label { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.lp-phone-text strong { font-family: var(--display); font-weight: 600; font-size: 1.02rem; }

.lp-hero {
  position: relative; overflow: hidden; padding: 8.5rem 2rem 4rem;
  background: radial-gradient(120% 100% at 75% -10%, #181c2e 0%, var(--bg) 55%, var(--ink) 100%);
}
.lp-hero-inner {
  position: relative; z-index: 2; max-width: 1260px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 3.5rem; align-items: center;
}
.lp-h1 { font-family: var(--display); font-weight: 700; font-size: clamp(2.2rem, 4.6vw, 3.5rem); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 1.3rem; }
.lp-sub { color: var(--muted); font-size: 1.12rem; margin-bottom: 1.6rem; max-width: 34rem; }
.lp-sub strong { color: var(--white); font-weight: 600; }
.lp-ticks { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.lp-ticks li { position: relative; padding-left: 1.9rem; color: var(--white); }
.lp-ticks li::before {
  content: '✓'; position: absolute; left: 0; top: 0; color: var(--pink-soft); font-weight: 700;
}
.lp-hero-actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.lp-phone-lg .lp-phone-glyph { width: 46px; height: 46px; font-size: 1.2rem; }
.lp-phone-lg .lp-phone-text strong { font-size: 1.25rem; }

/* Lead form card */
.lp-form-card {
  position: relative; z-index: 2;
  border: 1px solid var(--line-pink); border-radius: 20px; padding: 2.2rem;
  background: linear-gradient(170deg, rgba(19, 22, 35, 0.92), rgba(10, 11, 16, 0.85));
  box-shadow: 0 50px 100px -45px rgba(206, 53, 116, 0.55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.lp-form-head { margin-bottom: 1.4rem; }
.lp-form-head h2 { font-size: 1.55rem; margin-bottom: 0.4rem; }
.lp-form-head p { color: var(--muted); font-size: 0.92rem; }
.lp-form { display: flex; flex-direction: column; gap: 0.95rem; }
.lp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.95rem; }
.lp-form label {
  display: flex; flex-direction: column; gap: 0.4rem;
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pink-soft);
}
.lp-form label .opt { color: var(--muted); text-transform: none; letter-spacing: 0; }
.lp-form input, .lp-form select, .lp-form textarea {
  background: rgba(7, 8, 12, 0.8); border: 1px solid rgba(152, 160, 179, 0.25); border-radius: 9px;
  color: var(--white); font-family: var(--body); font-size: 0.96rem; font-weight: 300;
  padding: 0.72rem 0.9rem; transition: border-color 0.3s, box-shadow 0.3s;
}
.lp-form input:focus, .lp-form select:focus, .lp-form textarea:focus {
  outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(206, 53, 116, 0.18);
}
.lp-submit { margin-top: 0.4rem; width: 100%; text-align: center; font-size: 1rem; }
.lp-form-foot { font-size: 0.85rem; color: var(--muted); text-align: center; }
.lp-form-foot a { color: var(--pink-soft); border-bottom: 1px solid var(--line-pink); }
.lp-form-foot a:hover { color: var(--white); }
.lp-form-status { font-family: var(--body); font-size: 0.9rem; color: var(--pink-soft); min-height: 1em; }
.lp-form-status.ok { color: #43d97b; }

/* Trust strip */
.lp-trust {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1.2rem;
  padding: 1.1rem 2rem; background: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.06em; color: var(--muted); text-align: center;
}
.lp-trust i { color: var(--pink); font-size: 0.6rem; }

/* Price band */
.lp-price { padding: 6rem 2rem; }
.lp-price-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: 3rem; align-items: center;
}
.lp-price-copy h2 { margin-bottom: 1.1rem; }
.lp-price-copy .lp-sub { margin-bottom: 1.8rem; }
.lp-price-badge {
  text-align: center; border: 1px solid var(--line-pink); border-radius: 20px; padding: 2.4rem 1.6rem;
  background: linear-gradient(170deg, rgba(206, 53, 116, 0.1), rgba(10, 11, 16, 0.4));
  box-shadow: 0 40px 80px -45px rgba(206, 53, 116, 0.5);
}
.lpb-from { display: block; font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.lpb-amount { display: block; font-family: var(--display); font-weight: 700; font-size: 3.4rem; line-height: 1.1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lpb-note { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 0.4rem; }

/* Includes */
.lp-includes { padding: 6rem 2rem; max-width: 1180px; margin: 0 auto; }
.lp-includes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.lp-include {
  display: flex; gap: 1rem; align-items: flex-start;
  border: 1px solid var(--line); border-radius: 14px; padding: 1.4rem 1.6rem;
  background: linear-gradient(165deg, rgba(19, 22, 35, 0.4), transparent);
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.lp-include:hover { border-color: var(--line-pink); transform: translateY(-4px); }
.lp-include-tick { color: var(--pink-soft); font-weight: 700; font-size: 1.1rem; flex: none; }
.lp-include h3 { font-size: 1.08rem; margin-bottom: 0.25rem; }
.lp-include p { color: var(--muted); font-size: 0.88rem; }

/* Proof / portfolio */
.lp-proof { padding: 6rem 2rem; max-width: 1280px; margin: 0 auto; }
.lp-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.lp-proof-card {
  display: block; border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  background: var(--bg-2);
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
}
.lp-proof-card:hover { transform: translateY(-8px); border-color: var(--line-pink); box-shadow: 0 36px 70px -36px rgba(206, 53, 116, 0.5); }
.lp-proof-shot { display: block; aspect-ratio: 760 / 510; overflow: hidden; border-bottom: 1px solid var(--line); }
.lp-proof-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.6s var(--ease); }
.lp-proof-card:hover .lp-proof-shot img { transform: scale(1.04); }
.lp-proof-meta { display: flex; flex-direction: column; gap: 0.25rem; padding: 1.2rem 1.4rem; }
.lp-proof-meta strong { font-family: var(--display); font-weight: 600; font-size: 1.12rem; }
.lp-proof-meta em { font-style: normal; font-family: var(--mono); font-size: 0.76rem; color: var(--muted); }
.lp-proof-cta { font-size: 0.85rem; color: var(--pink-soft); margin-top: 0.4rem; }

/* Process (reuse rail, 4-up) */
.lp-process { padding: 6rem 2rem; background: var(--ink); border-top: 1px solid var(--line); }
.lp-process-rail { grid-template-columns: repeat(4, 1fr); }

.lp-final { padding-top: 7rem; padding-bottom: 7rem; }
.lp-final .hero-actions { justify-content: center; }

/* Landing footer */
.lp-footer { position: relative; background: var(--ink); border-top: 1px solid var(--line); }
.lp-footer-inner {
  max-width: 1180px; margin: 0 auto; padding: 3.5rem 2rem 2.5rem;
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 3rem; align-items: start;
}
.lp-footer-brand .footer-logo { height: 20px; width: auto; margin-bottom: 1.2rem; }
.lp-footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.lp-footer-phone { font-family: var(--display); font-weight: 600; font-size: 1.4rem; color: var(--white); }
.lp-footer-phone:hover { color: var(--pink-soft); }
.lp-footer-contact a { color: var(--muted); transition: color 0.3s; }
.lp-footer-contact a:hover { color: var(--white); }
.lp-footer-contact span { color: var(--muted); font-size: 0.9rem; }
.lp-footer-actions { display: flex; gap: 0.8rem; margin-top: 1rem; flex-wrap: wrap; }

@media (max-width: 980px) {
  .lp-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .lp-price-inner { grid-template-columns: 1fr; gap: 2rem; }
  .lp-includes-grid { grid-template-columns: 1fr; }
  .lp-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-process-rail { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.4rem; }
  .lp-footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 620px) {
  .lp-header-cta .lp-phone-text { display: none; }
  .lp-form-row { grid-template-columns: 1fr; }
  .lp-proof-grid { grid-template-columns: 1fr; }
  .lp-process-rail { grid-template-columns: 1fr; }
  .lp-trust { gap: 0.7rem; font-size: 0.74rem; }
}

/* ============ Plain page ============ */

.plain-page { padding: 10rem 2rem 6rem; min-height: 60vh; }
.plain-inner { max-width: 760px; margin: 0 auto; }
.plain-title { font-size: 2.4rem; margin-bottom: 2rem; }
.plain-content p { color: var(--muted); margin-bottom: 1.1rem; }

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

.site-footer { position: relative; background: var(--ink); border-top: 1px solid var(--line); overflow: hidden; }
.footer-grid-bg {
  position: absolute; inset: 0; opacity: 0.35; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(70% 60% at 50% 0%, black, transparent);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 0%, black, transparent);
}
.footer-inner {
  position: relative; max-width: 1280px; margin: 0 auto; padding: 4.5rem 2rem 3rem;
  display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); gap: 4rem;
}
.footer-logo { height: 20px; width: auto; margin-bottom: 1.3rem; }
.footer-tag { color: var(--muted); font-size: 0.95rem; max-width: 22rem; margin-bottom: 1rem; }
.footer-mono { font-family: var(--mono); font-size: 0.78rem; color: rgba(152, 160, 179, 0.8); line-height: 1.9; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col h4 {
  font-family: var(--mono); font-weight: 500; font-size: 0.72rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--pink-soft); margin-bottom: 0.5rem;
}
.footer-col a { color: var(--muted); font-size: 0.9rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--white); }
.footer-base { position: relative; border-top: 1px solid var(--line); padding: 1.5rem 2rem; text-align: center; }
.footer-base p { color: rgba(152, 160, 179, 0.6); font-size: 0.8rem; }

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

.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

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

@media (max-width: 1080px) {
  .solution-grid, .product-grid { grid-template-columns: 1fr; }
  .process-rail { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.4rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .deliver-grid, .review-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .demo-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; inset: 0; z-index: 105;
    background: rgba(7, 8, 12, 0.98);
    flex-direction: column; justify-content: center; gap: 1.6rem;
    opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
  }
  .site-nav.open { opacity: 1; visibility: visible; }
  .site-nav > a, .nav-drop-toggle { font-size: 1.1rem; }
  .nav-dropdown {
    position: static; transform: none; min-width: 0; border: none; box-shadow: none;
    background: transparent; opacity: 1; visibility: visible; display: none; text-align: center;
  }
  .nav-group.open .nav-dropdown { display: block; transform: none; }
  .nav-group { text-align: center; }
  .nav-dropdown a { justify-content: center; }
  .process-rail { grid-template-columns: 1fr; }
  .audience-grid, .fit-grid, .deliver-grid, .review-grid, .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding-top: 7rem; }
  .hero-terminal { min-width: 0; width: 100%; }
  .footer-cols { grid-template-columns: 1fr; }
}
