/* ----- ASTRA CUSTOM PROPERTIES (root level) ----- */
:root {
  --astra-ink: #0A0A0F;
  --astra-ink2: #13131A;
  --astra-ink3: #1C1C27;
  --astra-gold: #C9A84C;
  --astra-gold2: #E8C96A;
  --astra-electric: #5B4FE8;
  --astra-electric2: #7B6FFF;
  --astra-white: #FFFFFF;
  --astra-paper: #F5F2EC;
  --astra-muted: rgba(255,255,255,0.45);
  --astra-border: rgba(255,255,255,0.07);
  --astra-border-gold: rgba(201,168,76,0.2);
  --astra-r: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--astra-ink);
  color: var(--astra-white);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ── TYPOGRAPHY ─────────────────────────────────── */
.astra-syne {
  font-family: 'Syne', system-ui, sans-serif;
}

/* ── UTILS ─────────────────────────────────────── */
.astra-gold {
  color: var(--astra-gold);
}

.astra-electric {
  color: var(--astra-electric2);
}

.astra-muted {
  color: var(--astra-muted);
}

.astra-max {
  max-width: 1280px;
  margin: 0 auto;
}

.astra-pad {
  padding: 0 60px;
}

/* ── NAV ────────────────────────────────────────── */
.astra-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  transition: all .4s ease;
}

.astra-nav.astra-stuck {
  background: rgba(10, 10, 15, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 18px 60px;
  border-bottom: 1px solid var(--astra-border);
}

.astra-nav-logo {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .08em;
  color: var(--astra-white);
}

.astra-nav-logo span {
  color: var(--astra-gold);
}

.astra-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--astra-gold);
  color: var(--astra-ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 11px 26px;
  border-radius: var(--astra-r);
  transition: background .25s, transform .2s;
}

.astra-nav-cta:hover {
  background: var(--astra-gold2);
  transform: translateY(-1px);
}

/* ── HERO ────────────────────────────────────────── */
.astra-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 80px;
  position: relative;
  overflow: hidden;
}

.astra-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(201, 168, 76, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, .04) 1px, transparent 1px);
  background-size: 72px 72px;
}

.astra-hero-glow-a {
  position: absolute;
  width: 700px;
  height: 700px;
  z-index: 0;
  background: radial-gradient(circle, rgba(91, 79, 232, .16) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  animation: astraPulse 7s ease-in-out infinite;
}

.astra-hero-glow-b {
  position: absolute;
  width: 500px;
  height: 500px;
  z-index: 0;
  background: radial-gradient(circle, rgba(201, 168, 76, .09) 0%, transparent 70%);
  bottom: 50px;
  left: 10%;
  animation: astraPulse 9s ease-in-out infinite reverse;
}

@keyframes astraPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .7;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.astra-hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.astra-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 168, 76, .08);
  border: 1px solid var(--astra-border-gold);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--astra-gold);
  margin-bottom: 36px;
  opacity: 0;
  animation: astraFadeUp .8s ease .1s forwards;
}

.astra-hero-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--astra-gold);
  border-radius: 50%;
  animation: astraBlink 1.6s ease-in-out infinite;
}

@keyframes astraBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .2;
  }
}

.astra-hero-h1 {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 7.5vw, 100px);
  line-height: .94;
  letter-spacing: -.03em;
  margin-bottom: 28px;
  opacity: 0;
  animation: astraFadeUp .9s ease .25s forwards;
}

.astra-hero-h1 .astra-outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .25);
}

.astra-hero-sub {
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 300;
  color: var(--astra-muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 48px;
  opacity: 0;
  animation: astraFadeUp .9s ease .4s forwards;
}

.astra-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: astraFadeUp .9s ease .55s forwards;
}

.astra-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--astra-gold);
  color: var(--astra-ink);
  font-size: 14px;
  font-weight: 500;
  padding: 15px 34px;
  border-radius: var(--astra-r);
  transition: background .25s, transform .2s;
}

.astra-btn-gold:hover {
  background: var(--astra-gold2);
  transform: translateY(-2px);
}

.astra-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  font-weight: 400;
  padding: 15px 34px;
  border-radius: var(--astra-r);
  border: 1px solid rgba(255, 255, 255, .12);
  transition: all .25s;
}

.astra-btn-ghost:hover {
  border-color: rgba(255, 255, 255, .35);
  color: var(--astra-white);
  transform: translateY(-2px);
}

.astra-hero-stats {
  position: absolute;
  right: 60px;
  bottom: 80px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: right;
  opacity: 0;
  animation: astraFadeLeft .9s ease .8s forwards;
}

.astra-h-stat-n {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  color: var(--astra-white);
}

.astra-h-stat-n span {
  color: var(--astra-gold);
}

.astra-h-stat-l {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-top: 2px;
}

@keyframes astraFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes astraFadeLeft {
  from {
    opacity: 0;
    transform: translateX(32px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── MARQUEE ─────────────────────────────────────── */
.astra-marquee-wrap {
  background: var(--astra-gold);
  padding: 16px 0;
  overflow: hidden;
}

.astra-marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: astraMarquee 24s linear infinite;
}

.astra-marquee-item {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--astra-ink);
}

.astra-m-dot {
  width: 4px;
  height: 4px;
  background: rgba(10, 10, 15, .3);
  border-radius: 50%;
}

@keyframes astraMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── SHARED SECTION ATOMS ────────────────────────── */
.astra-s-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--astra-gold);
  margin-bottom: 16px;
}

.astra-s-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--astra-gold);
}

.astra-s-h2 {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.02em;
}

.astra-s-h2 em {
  font-style: normal;
  color: var(--astra-gold);
}

.astra-s-body {
  font-size: 17px;
  font-weight: 300;
  color: var(--astra-muted);
  line-height: 1.8;
  margin-top: 20px;
}

/* ── PROBLEM SECTION ─────────────────────────────── */
.astra-problem-sec {
  background: var(--astra-paper);
  color: var(--astra-ink);
  padding: 120px 60px;
}

.astra-problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.astra-prob-left .astra-s-label {
  color: var(--astra-electric);
}

.astra-prob-left .astra-s-label::before {
  background: var(--astra-electric);
}

.astra-prob-left .astra-s-h2 {
  color: var(--astra-ink);
}

.astra-prob-left .astra-s-h2 em {
  color: var(--astra-electric);
}

.astra-prob-left .astra-s-body {
  color: rgba(10, 10, 15, .6);
}

.astra-prob-items {
  display: flex;
  flex-direction: column;
}

.astra-prob-item {
  display: flex;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(10, 10, 15, .08);
}

.astra-prob-num {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--astra-electric);
  letter-spacing: .1em;
  flex-shrink: 0;
  padding-top: 3px;
}

.astra-prob-title {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--astra-ink);
  margin-bottom: 6px;
}

.astra-prob-desc {
  font-size: 13px;
  color: rgba(10, 10, 15, .55);
  line-height: 1.7;
}

/* ── SERVICES ────────────────────────────────────── */
.astra-services-sec {
  background: var(--astra-ink2);
  padding: 120px 60px;
}

.astra-services-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1280px;
  margin: 0 auto 64px;
}

.astra-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--astra-border);
  max-width: 1280px;
  margin: 0 auto;
}

.astra-svc-card {
  background: var(--astra-ink2);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.astra-svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--astra-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.astra-svc-card:hover {
  background: rgba(255, 255, 255, .025);
}

.astra-svc-card:hover::after {
  transform: scaleX(1);
}

.astra-svc-bg-num {
  position: absolute;
  top: 32px;
  right: 28px;
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: rgba(255, 255, 255, .03);
  line-height: 1;
  letter-spacing: -.04em;
}

.astra-svc-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--astra-border-gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.astra-svc-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--astra-gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.astra-svc-title {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--astra-white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.astra-svc-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.8;
  margin-bottom: 24px;
}

.astra-svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.astra-svc-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--astra-gold);
  background: rgba(201, 168, 76, .07);
  border: 1px solid rgba(201, 168, 76, .14);
  padding: 4px 9px;
  border-radius: 4px;
}

/* ── PROOF / TRACTION ────────────────────────────── */
.astra-proof-sec {
  background: var(--astra-ink);
  padding: 120px 60px;
}

.astra-proof-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.astra-proof-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  margin-bottom: 72px;
}

.astra-proof-nums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--astra-border);
}

.astra-proof-num-cell {
  background: var(--astra-ink);
  padding: 36px 32px;
}

.astra-proof-big {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
}

.astra-proof-big span {
  color: var(--astra-gold);
}

.astra-proof-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, .35);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 6px;
  line-height: 1.4;
}

.astra-clients-strip {
  border-top: 1px solid var(--astra-border);
  padding-top: 56px;
}

.astra-clients-lbl {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25);
  margin-bottom: 18px;
}

.astra-clients-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.astra-c-pill {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--astra-border);
  padding: 7px 16px;
  border-radius: 100px;
  transition: all .25s;
}

.astra-c-pill:hover {
  color: var(--astra-white);
  border-color: rgba(255, 255, 255, .18);
}

/* ── PROCESS ─────────────────────────────────────── */
.astra-process-sec {
  background: var(--astra-paper);
  color: var(--astra-ink);
  padding: 120px 60px;
}

.astra-process-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.astra-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.astra-process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(10, 10, 15, .1);
}

.astra-proc-step {
  padding: 0 28px 0 0;
}

.astra-proc-n {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--astra-ink);
  color: var(--astra-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.astra-proc-title {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--astra-ink);
  margin-bottom: 10px;
}

.astra-proc-body {
  font-size: 13px;
  color: rgba(10, 10, 15, .5);
  line-height: 1.7;
}

/* ── AI SECTION ──────────────────────────────────── */
.astra-ai-sec {
  background: var(--astra-electric);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}

.astra-ai-sec::before {
  content: 'AI';
  position: absolute;
  right: -20px;
  top: -80px;
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 340px;
  font-weight: 800;
  color: rgba(255, 255, 255, .04);
  line-height: 1;
  letter-spacing: -.05em;
  pointer-events: none;
}

.astra-ai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.astra-ai-left .astra-s-label {
  color: rgba(255, 255, 255, .5);
}

.astra-ai-left .astra-s-label::before {
  background: rgba(255, 255, 255, .35);
}

.astra-ai-left .astra-s-h2 {
  color: var(--astra-white);
}

.astra-ai-left .astra-s-h2 em {
  color: var(--astra-gold2);
}

.astra-ai-left .astra-s-body {
  color: rgba(255, 255, 255, .65);
}

.astra-ai-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  background: var(--astra-white);
  color: var(--astra-electric);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: var(--astra-r);
  transition: background .25s;
}

.astra-ai-btn:hover {
  background: var(--astra-paper);
}

.astra-ai-features {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.astra-ai-feat {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: rgba(255, 255, 255, .07);
  border-left: 2px solid transparent;
  transition: all .25s;
}

.astra-ai-feat:hover {
  background: rgba(255, 255, 255, .12);
  border-left-color: var(--astra-gold2);
}

.astra-ai-feat-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.astra-ai-feat-icon svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, .8);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.astra-ai-feat-title {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--astra-white);
  margin-bottom: 4px;
}

.astra-ai-feat-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
}

/* ── BUILT EVENT ─────────────────────────────────── */
.astra-event-sec {
  background: var(--astra-ink2);
  padding: 120px 60px;
}

.astra-event-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.astra-event-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, .1);
  border: 1px solid var(--astra-border-gold);
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--astra-gold);
  margin-bottom: 24px;
}

.astra-event-h {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--astra-white);
  margin-bottom: 8px;
}

.astra-event-sub {
  font-size: 14px;
  color: var(--astra-gold);
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 24px;
}

.astra-event-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.8;
  margin-bottom: 36px;
}

.astra-event-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.astra-event-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.astra-event-meta-icon {
  width: 32px;
  height: 32px;
  background: rgba(201, 168, 76, .1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.astra-event-meta-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--astra-gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.astra-event-meta-key {
  color: rgba(255, 255, 255, .35);
  margin-right: 4px;
}

.astra-event-meta-val {
  color: var(--astra-white);
  font-weight: 500;
}

.astra-deliverables {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--astra-border);
  border-radius: 12px;
  padding: 32px;
}

.astra-deliv-title {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--astra-gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.astra-deliv-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.astra-deliv-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
}

.astra-deliv-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, .12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.astra-deliv-check svg {
  width: 10px;
  height: 10px;
  stroke: var(--astra-gold);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── ROSTER ──────────────────────────────────────── */
.astra-roster-sec {
  background: var(--astra-ink);
  padding: 120px 60px;
}

.astra-roster-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.astra-roster-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

.astra-roster-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.astra-r-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--astra-border);
  border-radius: 10px;
  padding: 28px 22px;
  transition: all .3s;
}

.astra-r-card:hover {
  background: rgba(255, 255, 255, .06);
  border-color: var(--astra-border-gold);
  transform: translateY(-4px);
}

.astra-r-av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--astra-electric) 0%, var(--astra-gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--astra-white);
  margin-bottom: 18px;
}

.astra-r-name {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--astra-white);
  margin-bottom: 4px;
}

.astra-r-genre {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--astra-gold);
  margin-bottom: 12px;
}

.astra-r-bio {
  font-size: 12px;
  color: rgba(255, 255, 255, .38);
  line-height: 1.65;
  margin-bottom: 16px;
}

.astra-r-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--astra-gold);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap .25s;
}

.astra-r-card:hover .astra-r-link {
  gap: 9px;
}

/* ── TESTIMONIALS ────────────────────────────────── */
.astra-testi-sec {
  background: var(--astra-ink2);
  padding: 120px 60px;
}

.astra-testi-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.astra-testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--astra-border);
  margin-top: 60px;
}

.astra-t-cell {
  background: var(--astra-ink2);
  padding: 44px 40px;
}

.astra-t-quote {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, .65);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.astra-t-quote::before {
  content: '\201C';
  color: var(--astra-gold);
  font-size: 44px;
  font-family: 'Syne', system-ui, sans-serif;
  line-height: 0;
  vertical-align: -18px;
  margin-right: 3px;
}

.astra-t-attr {
  display: flex;
  align-items: center;
  gap: 12px;
}

.astra-t-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--astra-electric), var(--astra-gold));
  flex-shrink: 0;
}

.astra-t-name {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--astra-white);
}

.astra-t-role {
  font-size: 11px;
  color: rgba(255, 255, 255, .3);
  margin-top: 2px;
}

/* ── CTA ─────────────────────────────────────────── */
.astra-cta-sec {
  background: var(--astra-paper);
  color: var(--astra-ink);
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.astra-cta-sec::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91, 79, 232, .06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.astra-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.astra-cta-over {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--astra-electric);
  font-weight: 500;
  margin-bottom: 16px;
}

.astra-cta-h {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--astra-ink);
  margin-bottom: 20px;
}

.astra-cta-h em {
  font-style: normal;
  color: var(--astra-electric);
}

.astra-cta-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(10, 10, 15, .55);
  line-height: 1.7;
  margin-bottom: 44px;
}

.astra-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.astra-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--astra-ink);
  color: var(--astra-white);
  font-size: 14px;
  font-weight: 500;
  padding: 15px 34px;
  border-radius: var(--astra-r);
  transition: all .25s;
}

.astra-btn-dark:hover {
  background: var(--astra-ink2);
  transform: translateY(-2px);
}

.astra-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--astra-ink);
  font-size: 14px;
  font-weight: 400;
  padding: 15px 34px;
  border-radius: var(--astra-r);
  border: 1px solid rgba(10, 10, 15, .18);
  transition: all .25s;
}

.astra-btn-outline-dark:hover {
  border-color: var(--astra-ink);
  transform: translateY(-2px);
}

.astra-cta-note {
  margin-top: 28px;
  font-size: 12px;
  color: rgba(10, 10, 15, .35);
}

/* ── FOOTER ──────────────────────────────────────── */
.astra-footer {
  background: var(--astra-ink);
  border-top: 1px solid var(--astra-border);
  padding: 72px 60px 36px;
}

.astra-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}

.astra-f-brand-logo {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .08em;
  color: var(--astra-white);
  margin-bottom: 16px;
  display: block;
}

.astra-f-brand-logo span {
  color: var(--astra-gold);
}

.astra-f-tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, .35);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}

.astra-f-contact-link {
  font-size: 13px;
  color: var(--astra-gold);
}

.astra-f-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25);
  margin-bottom: 20px;
}

.astra-f-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.astra-f-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  transition: color .25s;
}

.astra-f-links a:hover {
  color: var(--astra-white);
}

.astra-footer-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--astra-border);
  font-size: 11px;
  color: rgba(255, 255, 255, .2);
}

/* ── SCROLL REVEAL ───────────────────────────────── */
.astra-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s ease, transform .75s ease;
}

.astra-reveal.astra-visible {
  opacity: 1;
  transform: translateY(0);
}

.astra-d1 {
  transition-delay: .08s;
}

.astra-d2 {
  transition-delay: .16s;
}

.astra-d3 {
  transition-delay: .24s;
}

.astra-d4 {
  transition-delay: .32s;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {

  .astra-nav,
  .astra-nav.astra-stuck {
    padding: 20px 32px;
  }

  .astra-hero,
  .astra-problem-sec,
  .astra-services-sec,
  .astra-proof-sec,
  .astra-process-sec,
  .astra-ai-sec,
  .astra-event-sec,
  .astra-roster-sec,
  .astra-testi-sec,
  .astra-cta-sec,
  .astra-footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .astra-problem-inner,
  .astra-proof-top,
  .astra-ai-inner,
  .astra-event-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .astra-services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .astra-process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .astra-roster-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .astra-testi-grid {
    grid-template-columns: 1fr;
  }

  .astra-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .astra-hero-stats {
    display: none;
  }

  .astra-services-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .astra-roster-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 640px) {

  .astra-nav,
  .astra-nav.astra-stuck {
    padding: 16px 20px;
  }

  .astra-hero,
  .astra-problem-sec,
  .astra-services-sec,
  .astra-proof-sec,
  .astra-process-sec,
  .astra-ai-sec,
  .astra-event-sec,
  .astra-roster-sec,
  .astra-testi-sec,
  .astra-cta-sec,
  .astra-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .astra-hero {
    padding-bottom: 56px;
  }

  .astra-problem-sec,
  .astra-services-sec,
  .astra-proof-sec,
  .astra-process-sec,
  .astra-ai-sec,
  .astra-event-sec,
  .astra-roster-sec,
  .astra-testi-sec,
  .astra-cta-sec {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .astra-services-grid {
    grid-template-columns: 1fr;
  }

  .astra-proof-nums {
    grid-template-columns: 1fr 1fr;
  }

  .astra-process-grid {
    grid-template-columns: 1fr;
  }

  .astra-roster-grid {
    grid-template-columns: 1fr 1fr;
  }

  .astra-footer-top {
    grid-template-columns: 1fr;
  }

  .astra-footer {
    padding-top: 56px;
    padding-bottom: 28px;
  }
}

@media (max-width: 400px) {
  .astra-roster-grid {
    grid-template-columns: 1fr;
  }
}