/* ═══════════════════════════════════════
   TOKENS
═══════════════════════════════════════ */
@font-face {
  font-family: 'Roc Grotesk';
  src: url('../Roc-Grotesk/Fontspring-DEMO-rocgrotesk-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roc Grotesk';
  src: url('../Roc-Grotesk/Fontspring-DEMO-rocgrotesk-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roc Grotesk';
  src: url('../Roc-Grotesk/Fontspring-DEMO-rocgrotesk-black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --lime: #C8FF00;
  --lime-dim: rgba(200, 255, 0, 0.12);
  --lime-border: rgba(200, 255, 0, 0.28);
  --lime-glow: rgba(200, 255, 0, 0.08);

  --pd: #1A0A2E;
  /* purple-dark / Night Mode base */
  --pm: #5B0FA8;
  /* purple-mid */
  --pb: #7B2FBE;
  /* purple-bright */
  --pl: #A855F7;
  /* purple-light */

  --navy: #1A1A2E;
  /* Dark Navy — brand spec */

  --w: #FFFFFF;
  --w90: rgba(255, 255, 255, 0.90);
  --w70: rgba(255, 255, 255, 0.70);
  --w60: rgba(255, 255, 255, 0.60);
  --w30: rgba(255, 255, 255, 0.30);
  --w12: rgba(255, 255, 255, 0.12);
  --w10: rgba(255, 255, 255, 0.10);
  --w06: rgba(255, 255, 255, 0.06);
  --w04: rgba(255, 255, 255, 0.04);

  --text: #0D0D0D;
  /* text on lime */
  --sub: #6B7280;
  --green: #22C55E;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 50px;

  --f-disp: 'Roc Grotesk', 'Poppins', sans-serif;
  --f-body: 'Satoshi', 'DM Sans', sans-serif;
  --f-metric: 'Satoshi', 'DM Sans', sans-serif;
  --f-mono: 'DM Mono', monospace;
  --ease: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--f-body);
  background: var(--pd);
  color: var(--w);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased
}

body.menu-open {
  overflow: hidden
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--f-body);
  color: inherit
}

input,
textarea,
select {
  font-family: var(--f-body)
}

/* ═══════════════════════════════════════
   SPA PAGES
═══════════════════════════════════════ */
.page {
  display: none;
  min-height: 100vh
}

.page.active {
  display: block
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26, 10, 46, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--w10);
  transition: background var(--ease);
}

.nav-logo {
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0
}

.logo-image {
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1)
}

.logo-image-nav {
  height: 42px
}

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

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--w60);
  transition: color var(--ease)
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--w)
}

.nav-cta {
  background: var(--lime);
  color: var(--text) !important;
  font-weight: 700 !important;
  padding: .5rem 1.25rem;
  border-radius: var(--r-pill);
  transition: opacity var(--ease), transform var(--ease) !important
}

.nav-cta:hover {
  opacity: .88;
  transform: translateY(-1px)
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--w);
  border-radius: 2px;
  transition: var(--ease)
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 6, 18, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
  z-index: 90
}

@media(max-width:768px) {
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 111
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
  }

  .nav-links {
    position: fixed;
    top: 68px;
    right: 0;
    bottom: 0;
    width: min(86vw, 340px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.25rem 2rem;
    background: linear-gradient(180deg, rgba(26, 10, 46, 0.98) 0%, rgba(15, 8, 28, 0.98) 100%);
    border-top: 1px solid var(--w10);
    border-left: 1px solid var(--w10);
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.35);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform var(--ease), opacity var(--ease), visibility var(--ease);
    z-index: 105
  }

  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto
  }

  .nav-links li {
    width: 100%
  }

  .nav-links a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 52px;
    padding: .85rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid transparent
  }

  .nav-links a.active,
  .nav-links a:hover {
    border-color: var(--w10);
    background: rgba(255, 255, 255, 0.07)
  }

  .nav-cta {
    margin-top: .5rem;
    justify-content: center
  }

  .nav-backdrop.open {
    opacity: 1;
    pointer-events: auto
  }

  .nav-backdrop {
    top: 68px;
    z-index: 95
  }
}

/* ═══════════════════════════════════════
   SHARED COMPONENTS
═══════════════════════════════════════ */
.pill {
  display: inline-block;
  background: rgba(91, 15, 168, 0.4);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: var(--pl);
  font-family: var(--f-mono);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: var(--r-pill);
}

.section {
  padding: 6rem 5%;
  max-width: 1200px;
  margin: 0 auto
}

.section-full {
  padding: 6rem 5%
}

/* Shared section separation */
:is(
  .prob-section,
  .feat-section,
  .for-you-section,
  .wait-section,
  .stats-bar,
  .b2b-section,
  #page-home > footer,
  #page-about > .section,
  #page-about > footer,
  #page-blog > #blog-list,
  #page-blog > #blog-post,
  #page-blog > footer,
  #page-contact > footer
) {
  border-top: 1px solid var(--w10);
}

.s-lbl {
  margin-bottom: 1rem
}

.s-title {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.s-sub {
  font-size: 1.0625rem;
  color: var(--w60);
  line-height: 1.7;
  max-width: 540px
}

/* Buttons */
.btn-p {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--lime);
  color: var(--text);
  font-weight: 700;
  font-size: .9375rem;
  padding: .875rem 2rem;
  border-radius: var(--r-pill);
  border: none;
  transition: opacity var(--ease), transform var(--ease), box-shadow var(--ease);
  cursor: pointer;
}

.btn-p:hover {
  opacity: .9;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 255, 0, .25)
}

.btn-g {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--w60);
  font-size: .9375rem;
  font-weight: 500;
  padding: .875rem 2rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--w30);
  transition: border-color var(--ease), color var(--ease);
  cursor: pointer;
}

.btn-g:hover {
  border-color: var(--w60);
  color: var(--w)
}

/* Scroll animations */
.ai {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease
}

.ai.show {
  opacity: 1;
  transform: translateY(0)
}

.ai-d1 {
  transition-delay: .1s
}

.ai-d2 {
  transition-delay: .2s
}

.ai-d3 {
  transition-delay: .3s
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fade-left {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(40px)
  }

  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0)
  }
}

@keyframes fade-right-in {
  from {
    opacity: 0;
    transform: translateX(40px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes float-slow {

  0%,
  100% {
    transform: translateY(0) scale(1)
  }

  50% {
    transform: translateY(-30px) scale(1.05)
  }
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(.8)
  }
}

/* ═══════════════════════════════════════
   HOME — HERO
═══════════════════════════════════════ */
#page-home {
  background: var(--pd)
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 5% 80px
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 40%, rgba(91, 15, 168, .45) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(200, 255, 0, .06) 0%, transparent 60%),
    linear-gradient(180deg, #0D0B1A 0%, #1A0A2E 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
  z-index: 0
}

.o1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(91, 15, 168, .6), transparent);
  top: 10%;
  right: 5%;
  animation: float-slow 8s ease-in-out infinite
}

.o2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200, 255, 0, .15), transparent);
  bottom: 20%;
  left: 10%;
  animation: float-slow 10s ease-in-out infinite reverse
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200, 255, 0, .08);
  border: 1px solid var(--lime-border);
  border-radius: var(--r-pill);
  padding: .4rem 1rem;
  font-family: var(--f-mono);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-up .6s .1s forwards;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite
}

.hero h1 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-up .6s .2s forwards;
}

.heading-symbol {
  font-family: var(--f-body);
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #C8FF00 0%, #A855F7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--w60);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fade-up .6s .3s forwards
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: fade-up .6s .4s forwards
}

.hero-sp {
  display: flex;
  align-items: center;
  gap: .75rem;
  opacity: 0;
  animation: fade-up .6s .5s forwards
}

.hero-avs {
  display: flex
}

.hero-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--pd);
  margin-left: -10px;
  background: linear-gradient(135deg, var(--pm), var(--pb));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .7rem
}

.hero-av:first-child {
  margin-left: 0
}

.hero-pt {
  font-size: .8125rem;
  color: var(--w60);
  line-height: 1.4
}

.hero-pt strong {
  color: var(--w)
}

/* Device mockups */
.hero-vis {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0;
  animation: fade-left .8s .5s forwards
}

.mockup-stack {
  position: relative;
}

.mockup-stack::before {
  content: '';
  position: absolute;
  inset: auto 10% 6% 10%;
  height: 28%;
  background: radial-gradient(circle, rgba(91, 15, 168, .35) 0%, transparent 72%);
  filter: blur(26px);
  z-index: 0
}

.device-shot {
  position: absolute;
  z-index: 1;
  margin: 0;
  transform-origin: center center
}

.device-shot::before {
  content: none
}

.device-shot::after {
  content: none
}

.device-shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  /* box-shadow: 0 28px 60px rgba(4, 3, 12, .42)T */
}

.hero-stack {
  width: min(42vw, 440px);
  height: 560px
}

.hero-stack .device-shot-back {
  left: 18px;
  bottom: 24px;
  width: 214px;
  opacity: .42;
  filter: saturate(.82) brightness(.92);
  transform: rotate(-12deg)
}

.hero-stack .device-shot-front {
  right: 0;
  top: -2px;
  width: 266px;
  z-index: 2;
  transform: rotate(7deg)
}

@media(max-width:960px) {
  .about-hero {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.75rem;
    padding-bottom: 3.5rem
  }

  .about-hero-content {
    max-width: 100%
  }

  .about-hero-vis {
    width: 100%;
    flex: none;
    display: flex;
    justify-content: center;
    animation: fade-up .8s .45s forwards
  }

  .about-hero-stack {
    width: min(100%, 440px)
  }

  .hero {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.75rem;
    padding: 112px 5% 64px;
  }

  .hero-content {
    max-width: 100%
  }

  .hero-vis {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    display: flex;
    justify-content: center;
    animation: fade-up .8s .5s forwards;
  }

  .hero-stack {
    width: min(100%, 440px)
  }

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

  .product-stack {
    justify-self: center
  }
}

@media(max-width:768px) {
  .about-hero {
    gap: 2.25rem;
    padding: 104px 1.25rem 56px;
  }

  .about-hero-vis {
    justify-content: center;
    padding: 0 .5rem;
  }

  .about-hero-stack {
    width: min(100%, 380px);
    height: 500px
  }

  .about-hero-stack .device-shot-back {
    width: 184px;
    left: 18px;
    bottom: 20px
  }

  .about-hero-stack .device-shot-front {
    width: 228px;
    right: 2px
  }

  .hero {
    gap: 2.25rem;
    padding: 104px 1.25rem 56px;
  }

  .hero-badge {
    max-width: 100%;
    flex-wrap: wrap;
    line-height: 1.5;
    padding: .5rem .85rem;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 14vw, 4rem);
    max-width: 10ch;
    margin-bottom: 1.25rem;
  }

  .hero-sub {
    max-width: 34ch;
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 2.5rem;
  }

  .hero-actions .btn-p,
  .hero-actions .btn-g {
    width: 100%;
    justify-content: center;
  }

  .hero-sp {
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: .85rem;
  }

  .hero-vis {
    justify-content: center;
    padding: 0 .5rem;
  }

  .hero-stack {
    width: min(100%, 380px);
    height: 500px
  }

  .hero-stack .device-shot-back {
    width: 184px;
    left: 18px;
    bottom: 20px
  }

  .hero-stack .device-shot-front {
    width: 228px;
    right: 2px
  }
}

@media(max-width:480px) {
  .about-hero-vis {
    justify-content: center;
    padding: 0;
  }

  .about-hero-stack {
    width: min(100%, 320px);
    height: 420px
  }

  .about-hero-stack .device-shot-back {
    width: 148px;
    left: 10px;
    bottom: 18px
  }

  .about-hero-stack .device-shot-front {
    width: 188px;
    right: 0
  }

  .hero-badge {
    font-size: .58rem;
    letter-spacing: .12em;
  }

  .hero-sub {
    max-width: none
  }

  .hero-vis {
    justify-content: center;
    padding: 0;
  }

  .hero-stack {
    width: min(100%, 320px);
    height: 420px
  }

  .hero-stack .device-shot-back {
    width: 148px;
    left: 10px;
    bottom: 18px
  }

  .hero-stack .device-shot-front {
    width: 188px;
    right: 0
  }
}

/* Stats bar */
.stats-bar {
  background: var(--w04);
  padding: 2.5rem 5%
}

.stats-head {
  max-width: 1200px;
  margin: 0 auto 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  text-align: center
}

.stats-copy {
  max-width: 760px;
  color: var(--w60);
  font-size: .95rem;
  line-height: 1.65;
  text-align: center
}

.stats-in {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem
}

.stat-item {
  text-align: center
}

.stat-n {
  font-family: var(--f-metric);
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
  font-variant-numeric: lining-nums tabular-nums;
  color: var(--lime);
  line-height: 1;
  margin-bottom: .35rem
}

.stat-d {
  font-size: .8125rem;
  color: var(--w60);
  line-height: 1.4
}

@media(max-width:600px) {
  .stats-head {
    align-items: center
  }

  .stats-copy {
    text-align: center
  }

  .stats-in {
    grid-template-columns: repeat(2, 1fr)
  }
}

/* Problem section */
.prob-section {
  padding: 7rem 5%;
  background: linear-gradient(180deg, var(--pd) 0%, rgba(26, 10, 46, .95) 100%)
}

.prob-in {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center
}

.prob-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.prob-card {
  background: rgba(91, 15, 168, .15);
  border: 1px solid rgba(168, 85, 247, .2);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  transition: border-color var(--ease), transform var(--ease)
}

.prob-card:hover {
  border-color: rgba(168, 85, 247, .4);
  transform: translateY(-3px)
}

.prob-ico {
  font-size: 1.4rem;
  margin-bottom: .75rem
}

.prob-n {
  font-family: var(--f-metric);
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
  font-variant-numeric: lining-nums tabular-nums;
  color: var(--lime);
  line-height: 1;
  margin-bottom: .25rem
}

.prob-l {
  font-size: .8125rem;
  color: var(--w60);
  line-height: 1.4
}

.prob-disc {
  font-size: .72rem;
  color: var(--w30);
  margin-top: 1rem;
  line-height: 1.5;
  font-style: italic
}

@media(max-width:768px) {
  .prob-in {
    grid-template-columns: 1fr
  }
}

/* How it works */
.how-section {
  padding: 7rem 5%
}

.how-in {
  max-width: 1200px;
  margin: 0 auto
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem
}

.how-step {
  background: var(--w04);
  border: 1px solid var(--w10);
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative;
  transition: border-color var(--ease), transform var(--ease)
}

.how-step:hover {
  border-color: var(--lime-border);
  transform: translateY(-4px)
}

.how-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  opacity: 0;
  transition: opacity var(--ease)
}

.how-step:hover::before {
  opacity: 1
}

.how-num {
  font-family: var(--f-mono);
  font-size: .65rem;
  letter-spacing: .1em;
  color: var(--lime);
  text-transform: uppercase;
  margin-bottom: 1rem
}

.how-ico {
  width: 48px;
  height: 48px;
  background: rgba(91, 15, 168, .4);
  border: 1px solid rgba(168, 85, 247, .25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem
}

.how-step h3 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 1.1875rem;
  letter-spacing: -0.02em;
  margin-bottom: .75rem
}

.how-step p {
  font-size: .9rem;
  color: var(--w60);
  line-height: 1.65
}

@media(max-width:768px) {
  .how-steps {
    grid-template-columns: 1fr
  }
}

/* Features */
.feat-section {
  padding: 7rem 5%;
  background: linear-gradient(180deg, rgba(26, 10, 46, .5) 0%, var(--pd) 100%)
}

.feat-in {
  max-width: 1200px;
  margin: 0 auto
}

.feat-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
  gap: 3rem;
  margin-bottom: 1rem
}

.feat-copy {
  max-width: 760px
}

.feat-copy .s-sub {
  max-width: 620px
}

.product-stack {
  width: 100%;
  height: 500px;
  justify-self: end
}

.product-stack .device-shot-left {
  left: 18px;
  bottom: 24px;
  width: 188px;
  opacity: .46;
  filter: saturate(.84) brightness(.92);
  transform: rotate(-12deg)
}

.product-stack .device-shot-right {
  right: 0;
  top: 0;
  width: 216px;
  z-index: 2;
  transform: rotate(7deg)
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem
}

.feat-card {
  background: var(--w04);
  border: 1px solid var(--w10);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  transition: border-color var(--ease), background var(--ease)
}

.feat-card:hover {
  border-color: var(--lime-border);
  background: rgba(200, 255, 0, .03)
}

.feat-ico {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(91, 15, 168, .5), rgba(123, 47, 190, .3));
  border: 1px solid rgba(168, 85, 247, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem
}

.feat-body h3 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: .4rem;
  letter-spacing: -0.02em
}

.feat-body p {
  font-size: .875rem;
  color: var(--w60);
  line-height: 1.6
}

@media(max-width:600px) {
  .feat-top {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .product-stack {
    max-width: 340px;
    height: 430px;
    margin: 0 auto
  }

  .product-stack .device-shot-left {
    width: 158px;
    left: 18px;
    bottom: 18px
  }

  .product-stack .device-shot-right {
    width: 180px;
    right: 0
  }

  .feat-grid {
    grid-template-columns: 1fr
  }

  .feat-card {
    flex-direction: column
  }
}

/* For You */
.for-you-section {
  padding: 7rem 5%;
  background: linear-gradient(180deg, rgba(26, 10, 46, .95) 0%, rgba(91, 15, 168, .10) 100%)
}

.for-you-in {
  max-width: 1200px;
  margin: 0 auto
}

.for-you-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem
}

.for-you-card {
  background: var(--w04);
  border: 1px solid var(--w10);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: border-color var(--ease), transform var(--ease)
}

.for-you-card:hover {
  border-color: var(--lime-border);
  transform: translateY(-4px)
}

.for-you-tag {
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1rem
}

.for-you-card h3 {
  font-family: var(--f-disp);
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: .9rem
}

.for-you-card p {
  font-size: .95rem;
  color: var(--w60);
  line-height: 1.7
}

.for-you-list {
  list-style: none;
  width: 100%;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .9rem
}

.for-you-list li {
  position: relative;
  padding-left: 1.3rem;
  font-size: .9375rem;
  color: var(--w60);
  line-height: 1.6
}

.for-you-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--lime)
}

@media(max-width:768px) {
  .for-you-grid {
    grid-template-columns: 1fr
  }
}

/* Testimonials */
.testi-section {
  padding: 7rem 5%;
  overflow: hidden
}

.testi-in {
  max-width: 1200px;
  margin: 0 auto
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem
}

.testi-card {
  background: var(--w04);
  border: 1px solid var(--w10);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: border-color var(--ease)
}

.testi-card:hover {
  border-color: rgba(168, 85, 247, .3)
}

.testi-stars {
  color: var(--lime);
  font-size: .75rem;
  margin-bottom: 1rem;
  letter-spacing: .1em
}

.testi-q {
  font-size: .9375rem;
  color: var(--w90);
  line-height: 1.65;
  margin-bottom: 1.5rem
}

.testi-auth {
  display: flex;
  align-items: center;
  gap: .75rem
}

.testi-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pm), var(--pb));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  flex-shrink: 0
}

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

.testi-role {
  font-size: .75rem;
  color: var(--w30);
  font-family: var(--f-mono)
}

@media(max-width:768px) {
  .testi-grid {
    grid-template-columns: 1fr
  }
}

/* B2B */
.b2b-section {
  padding: 7rem 5%;
  background: linear-gradient(135deg, rgba(91, 15, 168, .2) 0%, rgba(200, 255, 0, .04) 100%);
}

.b2b-in {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center
}

.b2b-list {
  list-style: none;
  margin: 2rem 0
}

.b2b-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--w10);
  font-size: .9375rem;
  color: var(--w60)
}

.b2b-list li:last-child {
  border-bottom: none
}

.b2b-ico {
  color: var(--lime);
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 1px
}

.b2b-cards {}

.b2b-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--w10);
  border-radius: var(--r-lg);
  padding: 2rem;
  margin-bottom: 1rem;
  transition: border-color var(--ease)
}

.b2b-card:hover {
  border-color: var(--lime-border)
}

.b2b-ch {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem
}

.b2b-card h3 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em
}

.b2b-card p {
  font-size: .875rem;
  color: var(--w60);
  line-height: 1.65
}

@media(max-width:768px) {
  .b2b-in {
    grid-template-columns: 1fr
  }
}

/* Waitlist */
.wait-section {
  padding: 8rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden
}

.wait-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(91, 15, 168, .35) 0%, transparent 70%), var(--pd);
  z-index: 0
}

.wait-in {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto
}

.wait-in-wide {
  max-width: 1200px
}

.wait-title {
  font-family: var(--f-disp);
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1.25rem
}

.wait-sub {
  font-size: 1rem;
  color: var(--w60);
  margin-bottom: 2.5rem;
  line-height: 1.65
}

.signup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left
}

.signup-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--w10);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px)
}

.signup-eyebrow {
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1rem
}

.signup-card h3 {
  font-family: var(--f-disp);
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: .9rem
}

.signup-card p {
  font-size: .95rem;
  color: var(--w60);
  line-height: 1.7
}

.signup-list {
  list-style: none;
  width: 100%;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .9rem
}

.signup-list li {
  position: relative;
  padding-left: 1.3rem;
  font-size: .9375rem;
  color: var(--w60);
  line-height: 1.6
}

.signup-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--lime)
}

.signup-card .wait-form {
  width: 100%;
  max-width: none;
  margin: 1.5rem 0 1rem
}

.signup-card .field-error,
.signup-card .wait-priv {
  text-align: left
}

.signup-card .wait-ok {
  margin-top: 1rem
}

.signup-card .btn-g,
.signup-card .btn-p {
  margin-top: auto
}

@media(max-width:768px) {
  .signup-grid {
    grid-template-columns: 1fr
  }
}

.wait-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 1.25rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--w30);
  border-radius: var(--r-pill);
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease)
}

.wait-form:focus-within {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(200, 255, 0, .1)
}

#wait-email {
  border-top-left-radius: var(--r-md);
  border-bottom-left-radius: var(--r-md);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.wait-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: .875rem 1.25rem;
  color: var(--w);
  font-size: .9375rem;
  outline: none
}

.wait-form input::placeholder {
  color: var(--w30)
}

.wait-form button {
  background: var(--lime);
  color: var(--text);
  font-weight: 700;
  font-size: .875rem;
  padding: .875rem 1.5rem;
  border: none;
  cursor: pointer;
  transition: opacity var(--ease);
  white-space: nowrap
}

.wait-form button:hover {
  opacity: .88
}

.wait-priv {
  font-size: .75rem;
  color: var(--w30)
}

.wait-ok {
  display: none;
  background: rgba(34, 197, 94, .1);
  border: 1px solid rgba(34, 197, 94, .25);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  color: #22C55E;
  font-weight: 600
}

/* Footer */
footer {
  background: rgba(0, 0, 0, .4);
  padding: 3rem 5%
}

.ft-in {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem
}

.ft-logo {
  display: inline-flex;
  align-items: center
}

.logo-image-footer {
  height: 38px
}

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

.ft-links a {
  font-size: .8125rem;
  color: var(--w30);
  transition: color var(--ease)
}

.ft-links a:hover {
  color: var(--w60)
}

.ft-copy {
  font-size: .75rem;
  color: var(--w30);
  font-family: var(--f-mono)
}

@media(max-width:600px) {
  .ft-in {
    flex-direction: column;
    align-items: flex-start
  }
}

/* ═══════════════════════════════════════
   BLOG PAGE
═══════════════════════════════════════ */
#page-blog {
  background: var(--pd)
}

.page-hdr {
  padding: 130px 5% 60px;
  max-width: 1200px;
  margin: 0 auto
}

.blog-hero {
  max-width: 640px
}

.blog-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5% 6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem
}

.blog-feat {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--w04);
  border: 1px solid var(--w10);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--ease);
  cursor: pointer
}

.blog-feat:hover {
  border-color: var(--lime-border)
}

.bf-img {
  background: linear-gradient(135deg, rgba(91, 15, 168, .7), rgba(123, 47, 190, .4));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  min-height: 240px;
  position: relative;
  overflow: hidden
}

.bf-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(200, 255, 0, .05))
}

.bf-body {
  padding: 2.5rem
}

.blog-cat {
  font-family: var(--f-mono);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: .75rem
}

.bf-title {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1rem
}

.bf-exc {
  font-size: .9375rem;
  color: var(--w60);
  line-height: 1.7;
  margin-bottom: 1.5rem
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .8rem;
  color: var(--w30);
  font-family: var(--f-mono)
}

.blog-card {
  background: var(--w04);
  border: 1px solid var(--w10);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease);
  cursor: pointer
}

.blog-card:hover {
  border-color: rgba(168, 85, 247, .3);
  transform: translateY(-4px)
}

.bc-img {
  background: linear-gradient(135deg, rgba(91, 15, 168, .6), rgba(123, 47, 190, .35));
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem
}

.bc-body {
  padding: 1.5rem
}

.bc-title {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: .625rem
}

.bc-exc {
  font-size: .8125rem;
  color: var(--w60);
  line-height: 1.6;
  margin-bottom: 1.25rem
}

.bc-rm {
  font-size: .8125rem;
  color: var(--lime);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .35rem
}

#blog-post {
  display: none;
  padding: 130px 5% 6rem
}

#blog-post.open {
  display: block
}

.post-in {
  max-width: 720px;
  margin: 0 auto
}

.post-back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  color: var(--w60);
  cursor: pointer;
  margin-bottom: 2rem;
  transition: color var(--ease);
  padding: 0
}

.post-back:hover {
  color: var(--w)
}

.post-title {
  font-family: var(--f-disp);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 1.25rem
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--f-mono);
  font-size: .72rem;
  color: var(--w30);
  margin-bottom: 2.5rem
}

.post-body p {
  font-size: 1.0625rem;
  color: var(--w90);
  line-height: 1.8;
  margin-bottom: 1.5rem
}

.post-body h2 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  margin: 2.5rem 0 1rem
}

.post-hl {
  background: rgba(91, 15, 168, .2);
  border: 1px solid rgba(200, 255, 0, .15);
  border-left: 3px solid var(--lime);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-size: 1.0625rem;
  color: var(--w90);
  line-height: 1.7
}

.post-body ul {
  list-style: none;
  margin: 1rem 0
}

.post-body ul li {
  padding: .5rem 0 .5rem 1.75rem;
  position: relative;
  color: var(--w60);
  font-size: 1.0625rem;
  line-height: 1.7
}

.post-body ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700
}

.post-cta {
  background: linear-gradient(135deg, rgba(91, 15, 168, .3), rgba(123, 47, 190, .15));
  border: 1px solid rgba(200, 255, 0, .18);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem
}

.post-cta h3 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: .75rem
}

.post-cta p {
  color: var(--w60);
  margin-bottom: 1.5rem
}

@media(max-width:768px) {
  .blog-feat {
    grid-template-columns: 1fr
  }

  .blog-grid {
    grid-template-columns: 1fr
  }
}

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
#page-about {
  background: var(--pd)
}

.about-hero {
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: 140px 5% 80px;
  position: relative;
  overflow: hidden
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(91, 15, 168, .4) 0%, transparent 65%), linear-gradient(180deg, #0D0B1A, #1A0A2E);
  z-index: 0
}

.about-hero-content {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  max-width: 640px
}

.about-hero-vis {
  position: relative;
  z-index: 1;
  flex: 0 0 min(42vw, 440px);
  width: min(42vw, 440px);
  opacity: 0;
  animation: fade-right-in .8s .45s forwards
}

.about-hero-stack {
  width: min(42vw, 440px);
  height: 560px
}

.about-hero h1 {
  font-family: var(--f-disp);
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fade-up .7s .2s forwards
}

.about-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #C8FF00, #A855F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.about-hero p {
  font-size: 1.125rem;
  color: var(--w60);
  line-height: 1.7;
  max-width: 540px;
  opacity: 0;
  animation: fade-up .7s .35s forwards
}

/* Mission banner */
.mission-banner {
  background: linear-gradient(135deg, rgba(91, 15, 168, .22), rgba(26, 10, 46, .8));
  border: 1px solid rgba(200, 255, 0, .14);
  border-radius: var(--r-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden
}

.mission-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), var(--pl), transparent)
}

.mission-banner blockquote {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1.25rem
}

.mission-banner blockquote em {
  font-style: italic;
  font-weight: 300;
  color: var(--w60)
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem
}

.team-card {
  background: var(--w04);
  border: 1px solid var(--w10);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color var(--ease);
  position: relative;
  overflow: hidden
}

.team-card:hover {
  border-color: var(--lime-border)
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), transparent 60%)
}

.team-av {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pm), var(--pb));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-disp);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--lime);
  margin-bottom: 1.1rem;
  border: 2px solid rgba(200, 255, 0, .22);
  overflow: hidden;
  flex-shrink: 0
}

.team-photo {
  padding: 0;
  background: linear-gradient(135deg, rgba(200, 255, 0, .18), rgba(255, 255, 255, .08))
}

.team-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover
}

.team-name {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  margin-bottom: .25rem
}

.team-role {
  font-family: var(--f-mono);
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: .75rem
}

.team-bio {
  font-size: .875rem;
  color: var(--w60);
  line-height: 1.65;
  max-width: 40ch;
  margin: 0 auto
}

@media(max-width:768px) {
  .team-grid {
    grid-template-columns: 1fr
  }
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem
}

.val-card {
  background: var(--w04);
  border: 1px solid var(--w10);
  border-radius: var(--r-md);
  padding: 1.5rem;
  transition: border-color var(--ease)
}

.val-card:hover {
  border-color: rgba(168, 85, 247, .3)
}

.val-n {
  font-family: var(--f-mono);
  font-size: .62rem;
  letter-spacing: .2em;
  color: var(--pl);
  margin-bottom: .5rem
}

.val-title {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -0.02em;
  margin-bottom: .4rem
}

.val-body {
  font-size: .82rem;
  color: var(--w60);
  line-height: 1.6
}

@media(max-width:768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr
  }
}

/* Roadmap */
.roadmap {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem
}

.rm-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--w10)
}

.rm-item:last-child {
  border-bottom: none
}

.rm-phase {
  font-family: var(--f-mono);
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  flex-shrink: 0;
  padding: .35rem .85rem;
  border-radius: var(--r-pill);
  min-width: 88px;
  text-align: center
}

.rm-now {
  background: rgba(200, 255, 0, .08);
  border: 1px solid var(--lime-border);
  color: var(--lime)
}

.rm-next {
  background: var(--w06);
  border: 1px solid var(--w10);
  color: var(--w30)
}

.rm-title {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  margin-bottom: .35rem
}

.rm-body {
  font-size: .875rem;
  color: var(--w60);
  line-height: 1.6
}

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
#page-contact {
  background: var(--pd)
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 130px 5% 6rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start
}

.ci h1 {
  font-family: var(--f-disp);
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1.25rem
}

.ci p {
  color: var(--w60);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-size: 1.0625rem
}

.c-det {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem
}

.c-ico {
  width: 40px;
  height: 40px;
  background: rgba(91, 15, 168, .4);
  border: 1px solid rgba(168, 85, 247, .2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0
}

.c-dt .c-lbl {
  font-family: var(--f-mono);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--w30);
  margin-bottom: .1rem
}

.c-dt .c-val {
  font-size: .9375rem;
  color: var(--w90)
}

.c-form {
  background: var(--w04);
  border: 1px solid var(--w10);
  border-radius: var(--r-lg);
  padding: 2.5rem
}

.f-row {
  margin-bottom: 1.25rem
}

.f-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem
}

label {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--w60);
  margin-bottom: .5rem;
  font-family: var(--f-mono);
  letter-spacing: .04em;
  text-transform: uppercase
}

input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--w10);
  border-radius: var(--r-md);
  padding: .8125rem 1rem;
  color: var(--w);
  font-size: .9375rem;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  font-family: var(--f-body)
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(200, 255, 0, .08)
}

textarea {
  resize: vertical;
  min-height: 120px
}

select {
  appearance: none;
  cursor: pointer
}

select option {
  background: #1A0A2E;
  color: var(--w)
}

.f-sub {
  width: 100%;
  background: var(--lime);
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  padding: .9375rem;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: opacity var(--ease), transform var(--ease);
  margin-top: .5rem;
  font-family: var(--f-body)
}

.f-sub:hover {
  opacity: .88;
  transform: translateY(-1px)
}

.f-ok {
  display: none;
  text-align: center;
  padding: 2rem
}

.f-ok h3 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: .75rem;
  color: var(--green)
}

.f-ok p {
  color: var(--w60)
}

@media(max-width:768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 130px 5% 4rem
  }

  .f-row2 {
    grid-template-columns: 1fr
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE REFINEMENTS
═══════════════════════════════════════ */
@media(max-width:1024px) {
  .how-steps {
    grid-template-columns: repeat(2, 1fr)
  }

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

  .team-grid,
  .values-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:960px) {
  .prob-in,
  .b2b-in,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }

  .feat-grid {
    grid-template-columns: 1fr
  }

  .stats-in {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {
  nav {
    padding: 0 1.25rem
  }

  .nav-links {
    padding: 1.25rem 1.25rem 2rem;
    max-height: calc(100vh - 68px);
    overflow-y: auto
  }

  .nav-links li,
  .nav-links a {
    width: 100%
  }

  .nav-cta {
    justify-content: center
  }

  .section,
  .section-full,
  .how-section,
  .feat-section,
  .for-you-section,
  .testi-section,
  .b2b-section,
  .wait-section,
  .stats-bar,
  .prob-section,
  .page-hdr,
  #blog-post,
  .contact-grid,
  .about-hero,
  footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem
  }

  .section,
  .section-full {
    padding-top: 5rem;
    padding-bottom: 5rem
  }

  .how-section,
  .feat-section,
  .for-you-section,
  .testi-section,
  .b2b-section,
  .prob-section {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem
  }

  .wait-section {
    padding-top: 6rem;
    padding-bottom: 6rem
  }

  .page-hdr,
  #blog-post,
  .contact-grid,
  .about-hero {
    padding-top: 112px
  }

  .page-hdr {
    padding-bottom: 3rem
  }

  .contact-grid,
  #blog-post {
    padding-bottom: 4rem
  }

  .about-hero {
    min-height: auto;
    padding-bottom: 3.5rem
  }

  .s-sub,
  .hero-sub,
  .about-hero p,
  .ci p,
  .post-body p,
  .post-body ul li,
  .post-hl {
    font-size: 1rem;
    max-width: none
  }

  .blog-grid {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-bottom: 5rem;
    gap: 1.25rem
  }

  .blog-feat {
    grid-template-columns: 1fr
  }

  .bf-body,
  .bc-body,
  .c-form,
  .mission-banner,
  .testi-card,
  .how-step,
  .feat-card,
  .for-you-card,
  .b2b-card,
  .team-card,
  .signup-card {
    padding: 1.5rem
  }

  .blog-meta,
  .post-meta,
  .hero-sp,
  .ft-in {
    flex-wrap: wrap
  }

  .ft-in {
    align-items: flex-start
  }
}

@media(max-width:680px) {
  .how-steps,
  .testi-grid,
  .team-grid,
  .values-grid,
  .blog-grid,
  .for-you-grid,
  .signup-grid {
    grid-template-columns: 1fr
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.6rem, 13vw, 3.6rem)
  }

  .prob-grid {
    grid-template-columns: 1fr
  }

  .roadmap {
    margin-top: 2rem
  }

  .rm-item {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem 0
  }

  .wait-form {
    flex-direction: column;
    gap: .75rem;
    background: none;
    border: none;
    overflow: visible
  }

  .wait-form input,
  .wait-form button {
    width: 100%;
    border-radius: var(--r-md)
  }

  .wait-form input {
    background: rgba(255, 255, 255, .08);
    border: 1px solid var(--w30)
  }

  .b2b-ch {
    flex-wrap: wrap;
    gap: .75rem
  }

  .ft-links {
    gap: 1rem 1.5rem
  }
}

@media(max-width:600px) {
  .stats-in {
    grid-template-columns: 1fr;
    gap: 1.5rem
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch
  }

  .hero-actions .btn-p,
  .hero-actions .btn-g {
    width: 100%;
    justify-content: center
  }

  .feat-card {
    flex-direction: column
  }
}

@media(max-width:640px) {
  .hero h1 br,
  .s-title br,
  .wait-title br,
  .about-hero h1 br,
  .ci h1 br,
  .mission-banner blockquote br {
    display: none
  }

  .hero-badge {
    max-width: 100%;
    flex-wrap: wrap;
    line-height: 1.5
  }

  .bf-title {
    font-size: 1.3rem
  }

  .post-cta {
    padding: 1.5rem
  }
}
