@charset "UTF-8";
/* ─── SELF-HOSTED FONTS ─── */
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/space-grotesk-v22-latin-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/space-grotesk-v22-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/space-grotesk-v22-latin-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/space-grotesk-v22-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/space-grotesk-v22-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Mono";
  src: url("../fonts/space-mono-v17-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Mono";
  src: url("../fonts/space-mono-v17-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bruno Ace SC";
  src: url("../fonts/bruno-ace-sc-v7-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cedarville Cursive";
  src: url("../fonts/cedarville-cursive-v18-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #0d0a07;
  --bg2: #170a00;
  --bg3: #dfdfdf;
  --bg4: #dfdfdf;
  --bg5: #f13d0b;
  --surface: #251c13;
  --border: rgba(255, 255, 255, 0.07);
  --text: #e2e4ec;
  --muted: #878a91;
  --subtle: #8b92a8;
  --irid1: #e8e23f;
  --irid2: #E96619;
  --irid3: #f83838;
  --irid4: #f89b05;
  --irid5: #bcd406;
  --irid6: #8fcb0e;
  --irid7: #434141;
  --irid8: #695b30;
  --irid9: #0a0a0a;
}

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

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}

/* ─── CUSTOM CURSOR ─── */
#cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}

#cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(247, 188, 85, 0.12) 0%, rgba(248, 184, 56, 0.06) 40%, transparent 70%);
  transition: transform 0.08s linear;
  filter: blur(1px);
}

body.hovering-btn #cursor-dot {
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1.5px solid rgba(247, 196, 85, 0.6);
  mix-blend-mode: normal;
}

.cursor-trail {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
}

/* ─── KEYFRAMES ─── */
@keyframes iridShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}
@keyframes particlePop {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0) rotate(var(--pr));
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(var(--px), var(--py)) scale(1) rotate(var(--pr2));
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes gridPulse {
  0%, 100% {
    opacity: 0.025;
  }
  50% {
    opacity: 0.06;
  }
}
/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 500;
  padding: 20px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(7, 8, 13, 0.82);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: "Bruno Ace SC", monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5em;
  cursor: none;
}
.logo em {
  position: relative;
  top: 3px;
  font-size: 1.7rem;
}

.logo em {
  font-style: normal;
  background: linear-gradient(115deg, var(--irid1), var(--irid3), var(--irid4));
  background-size: 200%;
  animation: iridShift 4s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

nav .logo {
  text-decoration: none;
}

nav a.nav-active {
  color: #fff;
}

footer .logo {
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
}

.footer-company {
  padding-top: 15px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
}

nav ul a {
  text-decoration: none;
  color: var(--subtle);
  font-size: 0.875rem;
  transition: color 0.2s;
  cursor: none;
}

nav ul a:hover {
  color: #fff;
}

/* ─── HAMBURGER BUTTON (base — hidden on desktop) ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  z-index: 600;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── NAV OVERLAY ─── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 498;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ─── BUTTONS ─── */
.btn-irid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgb(222, 233, 3);
  background-size: 300% 300%;
  animation: iridShift 5s ease infinite;
  color: #222121;
  padding: 13px 30px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: none;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 0 28px rgba(232, 170, 63, 0.35), 0 0 70px rgba(248, 136, 56, 0.08);
}

.btn-irid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.3) 50%, transparent 65%);
  background-size: 200% 100%;
  background-position: -200% 0;
  transition: background-position 0.55s ease;
}

.btn-irid:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 44px rgba(232, 167, 63, 0.55), 0 0 90px rgba(248, 130, 56, 0.12);
}

.btn-irid:hover::after {
  background-position: 200% 0;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--subtle);
  padding: 13px 30px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: none;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  border: none;
  transition: color 0.2s, transform 0.2s;
}

.btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  padding: 1px;
  background: linear-gradient(115deg, var(--irid1), var(--irid3), var(--irid4));
  background-size: 300%;
  animation: iridShift 5s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.btn-outline:hover {
  color: #fff;
  transform: translateY(-2px);
}

.nav-cta {
  background: linear-gradient(115deg, var(--irid1), var(--irid2), var(--irid3), var(--irid4), var(--irid5), var(--irid1)) !important;
  background-size: 300% 300% !important;
  animation: iridShift 5s ease infinite !important;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 500 !important;
  font-size: 0.875rem !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(232, 215, 63, 0.3);
  transition: transform 0.2s, box-shadow 0.3s !important;
  opacity: 1 !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 36px rgba(232, 145, 63, 0.55) !important;
}

.btn-particle {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  border-radius: 50%;
  animation: particlePop 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ─── SHARED SECTION STYLES ─── */
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: linear-gradient(to right, var(--irid2), var(--irid3));
}

.section-title {
  font-size: clamp(1.2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #1d1c1c;
  line-height: 1.15;
  margin-bottom: 56px;
}

.irid-text {
  background: linear-gradient(115deg, var(--irid2), var(--irid3), var(--irid4));
  background-size: 200%;
  animation: iridShift 4s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.irid-text2 {
  background: linear-gradient(115deg, var(--irid7), var(--irid8), var(--irid9));
  background-size: 200%;
  animation: iridShift 4s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card.reveal {
  transform: translateY(36px) scale(0.96);
  transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card.reveal.visible {
  transform: translateY(0) scale(1);
}

/* ─── REVEAL DELAYS ─── */
.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.15s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.36s;
}

/* ─── HERO — deep navy/black ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 64px 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 75%);
  animation: gridPulse 6s ease-in-out infinite;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 45% at 50% -5%, rgba(232, 74, 63, 0.22) 0%, transparent 65%), radial-gradient(ellipse 30% 30% at 10% 65%, rgba(248, 130, 56, 0.07) 0%, transparent 55%), radial-gradient(ellipse 30% 30% at 90% 65%, rgba(252, 244, 132, 0.07) 0%, transparent 55%);
}

.hero-glow--contact {
  background: radial-gradient(ellipse 55% 45% at 50% -5%, rgba(248, 136, 56, 0.18) 0%, transparent 65%), radial-gradient(ellipse 30% 30% at 10% 65%, rgba(232, 74, 63, 0.06) 0%, transparent 55%), radial-gradient(ellipse 30% 30% at 90% 65%, rgba(252, 200, 85, 0.06) 0%, transparent 55%);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.6s 0.1s forwards;
  position: relative;
  z-index: 1;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: relative;
  background: linear-gradient(135deg, var(--irid2), var(--irid3));
}

.pill-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  animation: pulseRing 1.8s ease-out infinite;
}

.hero h1 {
  font-size: clamp(3rem, 7.5vw, 7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.25s forwards;
  position: relative;
  z-index: 1;
}

.hero p {
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
  position: relative;
  z-index: 1;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.55s forwards;
  position: relative;
  z-index: 1;
}

.hero-stats {
  display: flex;
  margin-top: 80px;
  position: relative;
  z-index: 1;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.stat {
  padding: 22px 44px;
  text-align: center;
  background: var(--surface);
  border-right: 1px solid var(--border);
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(115deg, var(--irid2), var(--irid3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

/* ─── MARQUEE — dark teal strip ─── */
.marquee-section {
  background: #ff7002;
  border-top: 1px solid rgba(248, 168, 56, 0.1);
  border-bottom: 1px solid rgba(248, 181, 56, 0.1);
  padding: 18px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
  gap: 0;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  white-space: nowrap;
  font-family: "Space Mono", monospace;
  font-size: 0.75rem;
  color: rgb(23, 21, 2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.marquee-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(248, 114, 56, 0.3);
}

/* ─── SERVICES — near black with blue tint ─── */
.services {
  padding: 120px 64px;
  background: var(--bg3);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.service-card {
  background: var(--bg2);
  padding: 40px 36px;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.service-card:hover {
  background: var(--surface);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.svc-img {
  background: #ffffff;
  margin: -40px -36px 28px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-img img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.svc-num {
  font-family: "Space Mono", monospace;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 18px;
  letter-spacing: 0.1em;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── SEO BANNER ─── */
.seo-banner {
  margin-top: 80px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.seo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 70% at 110% 50%, rgba(248, 155, 5, 0.08) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at -10% 0%, rgba(232, 63, 63, 0.05) 0%, transparent 50%);
}

.seo-copy {
  position: relative;
  z-index: 1;
}
.seo-copy h3 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 12px 0 16px;
  letter-spacing: -0.02em;
}
.seo-copy > p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 380px;
}

.seo-pillars {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.seo-pillar {
  padding: 14px 0 14px 18px;
  border-left: 2px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.3s;
}
.seo-pillar:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.seo-pillar:hover {
  border-left-color: var(--irid2);
}
.seo-pillar strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.seo-pillar span {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

.seo-mock {
  position: relative;
  z-index: 1;
}

.serp-chrome {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.serp-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.serp-dots i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.serp-dots i:nth-child(1) {
  background: rgba(255, 95, 87, 0.6);
}
.serp-dots i:nth-child(2) {
  background: rgba(254, 188, 46, 0.6);
}
.serp-dots i:nth-child(3) {
  background: rgba(40, 200, 64, 0.6);
}

.serp-addr {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.7rem;
  color: var(--subtle);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.serp-body {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 0 0 10px 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.serp-result {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 8px;
  transition: background 0.2s;
}

.serp-top {
  background: rgba(248, 130, 56, 0.06);
  border: 1px solid rgba(248, 130, 56, 0.15);
}
.serp-top:hover {
  background: rgba(248, 130, 56, 0.1);
}

.serp-dim {
  opacity: 0.28;
}

.serp-rank {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--irid2), var(--irid3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 0 14px rgba(248, 130, 56, 0.45);
  position: relative;
}
.serp-rank::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  animation: pulseRing 2.2s ease-out infinite;
}

.serp-result-info {
  flex: 1;
}

.serp-url {
  font-size: 0.68rem;
  color: #5f9e6e;
  margin-bottom: 4px;
  font-family: "Space Mono", monospace;
}

.serp-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #8ab4f8;
  margin-bottom: 5px;
  line-height: 1.3;
}

.serp-snip {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.55;
}

.showcase {
  padding: 120px 64px;
  background: var(--bg5);
  border-top: 1px solid rgba(247, 225, 85, 0.12);
  border-bottom: 1px solid rgba(247, 144, 85, 0.12);
  position: relative;
}

.showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 40% at 90% 20%, rgba(124, 63, 232, 0.1) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 10% 80%, rgba(56, 189, 248, 0.05) 0%, transparent 55%);
}

.showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}

.showcase-header .section-title {
  margin-bottom: 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.showcase-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 10px;
  padding: 36px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}

.showcase-item.tall {
  grid-row: span 2;
}

.showcase-item:hover {
  border-color: rgba(168, 85, 247, 0.35);
  transform: translateY(-4px);
  background: rgba(168, 85, 247, 0.04);
}

.showcase-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.showcase-item h4 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.showcase-item p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

.mock-screen {
  margin-top: 24px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.1);
}

.screen-bar {
  background: rgba(255, 255, 255, 0.03);
  padding: 9px 13px;
  display: flex;
  gap: 5px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.s-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.sd1 {
  background: #ff5f57;
}

.sd2 {
  background: #febc2e;
}

.sd3 {
  background: #28c840;
}

.screen-body {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ─── HOSTING ─── */
@keyframes orbit-spin {
  from {
    transform: translateX(-50%) rotate(var(--start, 0deg));
  }
  to {
    transform: translateX(-50%) rotate(calc(var(--start, 0deg) + 360deg));
  }
}
@keyframes orbit-counter {
  from {
    transform: translateX(-50%) rotate(calc(-1 * var(--start, 0deg)));
  }
  to {
    transform: translateX(-50%) rotate(calc(-1 * var(--start, 0deg) - 360deg));
  }
}
@keyframes sun-pulse-anim {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.7);
    opacity: 0;
  }
}
.hosting {
  padding: 0 0 220px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hosting .section-eyebrow {
  justify-content: center;
}
.hosting .section-eyebrow::before {
  display: none;
}

/* — Orbital stage — */
.orbit-stage {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  margin-bottom: 64px;
}
.orbit-stage .hosting-title {
  position: relative;
  max-width: 700px;
  right: 0;
  margin-top: 80px;
  text-align: left;
  margin-left: 80px;
  z-index: 100;
}

/* — Center pivot point (top-center of stage) — */
.orbit-center {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
}

/* — Static ring paths — */
.orbit-ring-track {
  position: absolute;
  width: calc(var(--r) * 2);
  height: calc(var(--r) * 2);
  border-radius: 50%;
  border: 1px solid rgba(248, 155, 85, 0.1);
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* — Orbiting arm — pivots at top, extends downward — */
.orbit-arm {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: var(--r);
  transform-origin: 50% 0%;
  transform: translateX(-50%) rotate(var(--start, 0deg));
  animation: orbit-spin var(--dur, 10s) linear infinite;
}

/* — Planet — circle at the far (bottom) end of the arm — */
.orbit-planet {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: var(--size, 14px);
  height: var(--size, 14px);
  border-radius: 50%;
  transform: translateX(-50%) rotate(calc(-1 * var(--start, 0deg)));
  animation: orbit-counter var(--dur, 10s) linear infinite;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.35), var(--pcolor, rgba(248, 155, 85, 0.9)) 60%);
  box-shadow: 0 0 10px var(--pglow, rgba(248, 155, 85, 0.4)), inset 0 -2px 4px rgba(0, 0, 0, 0.4);
}

/* ─── ORBIT CUSTOM PROPERTIES ─── */
.orbit-ring-track:nth-child(1) {
  --r: 96px;
}

.orbit-ring-track:nth-child(2) {
  --r: 172px;
}

.orbit-ring-track:nth-child(3) {
  --r: 254px;
}

.orbit-ring-track:nth-child(4) {
  --r: 336px;
}

.orbit-arm:nth-child(5) {
  --r: 96px;
  --dur: 7s;
  --start: 20deg;
}

.orbit-arm:nth-child(6) {
  --r: 172px;
  --dur: 12s;
  --start: -35deg;
}

.orbit-arm:nth-child(7) {
  --r: 172px;
  --dur: 12s;
  --start: 145deg;
}

.orbit-arm:nth-child(8) {
  --r: 254px;
  --dur: 18s;
  --start: 55deg;
}

.orbit-arm:nth-child(9) {
  --r: 254px;
  --dur: 18s;
  --start: -50deg;
}

.orbit-arm:nth-child(10) {
  --r: 336px;
  --dur: 28s;
  --start: 12deg;
}

.orbit-arm:nth-child(11) {
  --r: 336px;
  --dur: 28s;
  --start: -22deg;
}

.orbit-arm:nth-child(5) .orbit-planet {
  --size: 11px;
  --pcolor: rgba(248,155,85,0.95);
  --pglow: rgba(248,155,85,0.5);
}

.orbit-arm:nth-child(6) .orbit-planet {
  --size: 19px;
  --pcolor: rgba(220,80,80,0.9);
  --pglow: rgba(220,80,80,0.4);
}

.orbit-arm:nth-child(7) .orbit-planet {
  --size: 9px;
  --pcolor: rgba(188,212,6,0.85);
  --pglow: rgba(188,212,6,0.35);
}

.orbit-arm:nth-child(8) .orbit-planet {
  --size: 24px;
  --pcolor: rgba(248,120,40,0.8);
  --pglow: rgba(248,120,40,0.35);
}

.orbit-arm:nth-child(9) .orbit-planet {
  --size: 13px;
  --pcolor: rgba(170,100,230,0.8);
  --pglow: rgba(170,100,230,0.35);
}

.orbit-arm:nth-child(10) .orbit-planet {
  --size: 16px;
  --pcolor: rgba(56,189,248,0.75);
  --pglow: rgba(56,189,248,0.3);
}

.orbit-arm:nth-child(11) .orbit-planet {
  --size: 21px;
  --pcolor: rgba(248,175,85,0.8);
  --pglow: rgba(248,175,85,0.35);
}

/* — Sun / core — */
.orbit-sun {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.sun-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(248, 155, 85, 0.4);
  transform: translate(-50%, -50%);
  animation: sun-pulse-anim 2.5s ease-out infinite;
}

.sun-core {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffd580, #f89b05 45%, #e06010);
  box-shadow: 0 0 20px rgba(248, 155, 85, 0.8), 0 0 50px rgba(248, 130, 56, 0.4), 0 0 100px rgba(232, 80, 20, 0.15);
}

.hosting-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hosting-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ─── HOSTING STAT CARDS ─── */
.hstats-section {
  padding: 0 64px 100px;
}

.hstats-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hstat-card {
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, background 0.4s, box-shadow 0.4s, transform 0.4s;
}
.hstat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--irid1), var(--irid2), var(--irid5));
}
.hstat-card::after {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--irid4);
  opacity: 0;
  filter: blur(70px);
  transition: opacity 0.5s;
  pointer-events: none;
}
.hstat-card:hover {
  border-color: rgba(248, 155, 85, 0.25);
  background: rgba(248, 155, 85, 0.04);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.hstat-card:hover::after {
  opacity: 0.1;
}

.hstat-card.reveal {
  transform: translateY(40px) scale(0.96);
  transition: opacity 0.55s ease, transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hstat-card.reveal.visible {
  transform: translateY(0) scale(1);
}

.hstat-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
}
.hstat-icon svg {
  width: 100%;
  height: 100%;
  color: var(--irid2);
}

.hstat-num {
  font-size: clamp(1.8rem, 2.5vw, 3.4rem);
  overflow-wrap: break-word;
  word-break: break-word;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(115deg, var(--irid2), var(--irid4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hstat-num span {
  font-size: 1.8rem;
  font-weight: 700;
}

.hstat-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.hstat-body {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── TERMINAL SECTION ─── */
.hterm-section {
  background: #fff;
  padding: 80px 64px;
  margin: -100px 64px 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
  margin-top: 50px;
}

.hterm-inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hterm-heading {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #0d0a07;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hterm-lead {
  font-size: 1rem;
  color: #5a6070;
  line-height: 1.75;
  margin-bottom: 32px;
}

.hcheck-list {
  list-style: none;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hcheck-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #2a2520;
  line-height: 1.5;
}

.hcheck-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--irid1), var(--irid2));
  display: flex;
  align-items: center;
  justify-content: center;
}
.hcheck-icon svg {
  width: 12px;
  height: 12px;
  color: #fff;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #0d0a07;
  color: #e2e4ec;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s;
}
.btn-dark:hover {
  background: #1e1813;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ─── Terminal window ─── */
.hterm-window {
  background: #0f1117;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hterm-topbar {
  background: #1e2029;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hdot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.hdot-r {
  background: #ff5f57;
}

.hdot-y {
  background: #febc2e;
}

.hdot-g {
  background: #28c840;
}

.hterm-title-bar {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: ui-monospace, "Cascadia Code", "Courier New", monospace;
  letter-spacing: 0.02em;
}

.hterm-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #28c840;
  letter-spacing: 0.1em;
  font-family: ui-monospace, monospace;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #28c840;
  animation: live-pulse 1.8s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.6);
  }
  60% {
    opacity: 0.4;
    box-shadow: 0 0 0 5px rgba(40, 200, 64, 0);
  }
}
.hterm-body {
  padding: 20px 22px 24px;
  font-family: ui-monospace, "Cascadia Code", "Courier New", monospace;
  font-size: 0.775rem;
  line-height: 1.8;
  color: #c8d0e0;
  min-height: 300px;
  max-height: 360px;
  overflow-y: auto;
  scrollbar-width: none;
}
.hterm-body::-webkit-scrollbar {
  display: none;
}

.hterm-output .t-prompt {
  color: #f89b05;
  font-weight: 600;
}
.hterm-output .t-cmd {
  color: #e2e4ec;
}
.hterm-output .t-ok {
  color: #28c840;
}
.hterm-output .t-key {
  color: #79c0ff;
}
.hterm-output .t-num {
  color: #ffa657;
}
.hterm-output .t-dim {
  color: rgba(200, 208, 224, 0.4);
}
.hterm-output div {
  display: block;
}

.hterm-cursor {
  display: inline-block;
  width: 8px;
  height: 0.85em;
  background: #c8d0e0;
  vertical-align: text-bottom;
  animation: cur-blink 1.1s step-end infinite;
  margin-left: 1px;
}

@keyframes cur-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
/* ─── PROCESS — (kept for potential reuse) ─── */
.process {
  padding: 120px 64px;
  background: var(--bg3);
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 0% 50%, rgba(22, 23, 23, 0.436) 0%, transparent 60%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 19px;
  right: 19px;
  height: 3px;
  background: linear-gradient(to right, transparent, rgb(27, 27, 27), rgb(65, 67, 177), rgb(12, 79, 59), transparent);
  opacity: 0.35;
}

.step {
  padding: 68px 24px 0;
  position: relative;
}

.step-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(56, 189, 248, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Mono", monospace;
  font-size: 0.7rem;
  color: var(--muted);
  position: absolute;
  top: 0;
  left: 24px;
  z-index: 2;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.step:hover .step-dot {
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.25);
  transform: scale(1.25);
}

.step h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── PRICING — true black with subtle warm tint ─── */
.pricing {
  padding: 120px 64px;
  background: var(--bg4);
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.pricing-card {
  background: #0c0e18;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 36px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 63, 232, 0.3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.pricing-card.featured {
  background: #0e0818;
  border-color: rgba(124, 63, 232, 0.4);
}

.pricing-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--irid1), var(--irid3), var(--irid4));
}

.plan-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.pricing-card.featured .plan-badge {
  background: linear-gradient(115deg, var(--irid1), var(--irid2));
  color: #fff;
  border-color: transparent;
}

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.price {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.price sup {
  font-size: 1.2rem;
  vertical-align: top;
  margin-top: 5px;
  display: inline-block;
}

.price-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.p-divider {
  height: 1px;
  background: var(--border);
  margin: 22px 0;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  font-size: 0.875rem;
  color: var(--subtle);
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--irid2), var(--irid3));
}

.pricing-cta {
  display: block;
  text-align: center;
  margin-top: 28px;
  padding: 13px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  cursor: none;
}

.pcta-outline {
  color: var(--subtle);
  border: none;
}

.pcta-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  padding: 1px;
  background: linear-gradient(115deg, var(--irid1), var(--irid3), var(--irid4));
  background-size: 300%;
  animation: iridShift 5s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.pcta-outline:hover {
  background: rgba(124, 63, 232, 0.1);
  color: #fff;
}

.pcta-filled {
  background: linear-gradient(115deg, var(--irid1), var(--irid2), var(--irid3), var(--irid4), var(--irid5));
  background-size: 300%;
  animation: iridShift 5s ease infinite;
  color: #fff;
  border: none;
  box-shadow: 0 0 24px rgba(124, 63, 232, 0.4);
}

.pcta-filled::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.25) 50%, transparent 65%);
  background-size: 200% 100%;
  background-position: -200% 0;
  transition: background-position 0.5s ease;
}

.pcta-filled:hover {
  box-shadow: 0 0 40px rgba(124, 63, 232, 0.6);
  transform: translateY(-2px);
}

.pcta-filled:hover::after {
  background-position: 200% 0;
}

/* ─── TESTIMONIALS — deep blue-black ─── */
.testimonials {
  padding: 120px 64px;
  background: var(--bg3);
  border-top: 1px solid rgba(56, 189, 248, 0.08);
}

.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.testimonial {
  background: rgba(56, 189, 248, 0.03);
  border: 1px solid rgba(56, 189, 248, 0.08);
  border-radius: 10px;
  padding: 36px;
  transition: border-color 0.3s;
}

.testimonial:hover {
  border-color: rgba(56, 189, 248, 0.2);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.star {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--irid2), var(--irid3));
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonial blockquote {
  font-size: 0.925rem;
  line-height: 1.75;
  color: var(--subtle);
  margin-bottom: 20px;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
}

.cta-section {
  padding: 140px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #5c4833;
  background: linear-gradient(359deg, rgb(92, 72, 51) 4%, rgb(69, 48, 19) 30%, rgb(11, 11, 11) 64%);
  border-bottom: solid 6px rgb(246, 242, 241);
  border-top: solid 6px rgb(246, 242, 241);
}

.cta-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.cta-section > *:not(.cta-particles) {
  position: relative;
  z-index: 1;
}

.cta-section .section-eyebrow {
  justify-content: center;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.75);
}
.cta-section .section-eyebrow::before {
  background: rgba(255, 255, 255, 0.5);
}

.cta-section h2 {
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.cta-section h2 span {
  color: rgb(186, 0, 0);
}

.cta-section p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 900px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

.cta-section .btn-irid {
  background: linear-gradient(120deg, #f06c07 0%, #fccb2b 30%, #f4a810 55%, #fa880e 80%, #f54418 100%);
  background-size: 300% 300%;
  animation: iridShift 4s ease infinite;
  color: #1a1a1a;
  border-radius: 100px;
  padding: 16px 44px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.cta-section .btn-irid:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8), 0 20px 50px rgba(0, 0, 0, 0.22), 0 6px 16px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* ─── FOOTER ─── */
footer {
  background: #050609;
  border-top: 1px solid var(--border);
  padding: 64px;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 48px;
}

.footer-brand {
  font-family: "Space Mono", monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  display: block;
}

.footer-brand em {
  font-style: normal;
  background: linear-gradient(115deg, var(--irid2), var(--irid3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

footer p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

footer h5 {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 18px;
  font-weight: 500;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
  cursor: none;
}

footer ul a:hover {
  color: #fff;
}

.footer-bottom {
  background: #050609;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.775rem;
  color: var(--muted);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .orbit-stage {
    height: 240px;
  }
  .orbit-ring-track:nth-child(4) {
    display: none;
  }
  .orbit-arm:nth-last-child(3),
  .orbit-arm:nth-last-child(4) {
    display: none;
  }
  .hstats-section {
    padding: 0 24px 80px;
  }
  .hstats-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .hterm-section {
    padding: 80px 24px;
  }
  .hterm-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 600px) {
  .orbit-stage {
    height: 240px;
  }
  .orbit-stage .hosting-title {
    font-size: 1.3rem;
    margin-top: 100px;
    margin-left: 20px;
    text-align: center;
  }
  .orbit-ring-track:nth-child(3),
  .orbit-ring-track:nth-child(4) {
    display: none;
  }
  .orbit-arm:nth-last-child(3),
  .orbit-arm:nth-last-child(4),
  .orbit-arm:nth-last-child(5),
  .orbit-arm:nth-last-child(6) {
    display: none;
  }
  .hstats-wrap {
    grid-template-columns: 1fr;
  }
  .hstats-section {
    padding: 0 20px 64px;
  }
  .hterm-section {
    padding: 48px 20px;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
  }
}
@media (max-width: 600px) {
  .hcheck-list li {
    font-size: 0.6rem;
  }
  .hterm-section {
    border-radius: 20px;
  }
  .hstat-card {
    display: grid;
    grid-template-areas: ". icon num ." "title title title title" "body body body body";
    grid-template-columns: 1fr 42px auto 1fr;
    justify-content: stretch;
    column-gap: 14px;
    row-gap: 6px;
    padding: 24px 20px;
  }
  .hstat-card .hstat-icon {
    grid-area: icon;
    margin-bottom: 0;
    align-self: center;
  }
  .hstat-card .hstat-num {
    grid-area: num;
    align-self: center;
    text-align: left;
  }
  .hstat-card .hstat-title {
    grid-area: title;
    margin-bottom: 0;
    text-align: center;
  }
  .hstat-card .hstat-body {
    grid-area: body;
    text-align: center;
  }
  .hterm-window {
    display: none;
  }
  .seo-mock {
    display: none;
  }
  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }
  .hero p {
    font-size: 0.7em;
  }
  .hero-pill {
    margin-top: 50px;
    font-size: 0.2rem;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    gap: 6px;
  }
  .services,
  .showcase,
  .process,
  .pricing,
  .testimonials {
    padding: 64px 20px;
  }
  .cta-section {
    padding: 80px 20px;
  }
  .process-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
  }
  .process-grid::before {
    content: "";
    position: absolute;
    top: 19px;
    bottom: 19px;
    left: 19px;
    width: 2px;
    height: auto;
    background: linear-gradient(to bottom, transparent, rgb(27, 27, 27), rgb(65, 67, 177), rgb(12, 79, 59), transparent);
    opacity: 0.35;
  }
  .step {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    padding: 0 0 36px 0;
    position: relative;
  }
  .step .step-dot {
    position: relative;
    top: auto;
    left: auto;
    flex-shrink: 0;
  }
  .step .step-content {
    display: flex;
    flex-direction: column;
  }
  .step .step-content h4, .step .step-content p {
    text-align: left;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 32px;
  }
  .footer-bottom {
    padding: 18px 20px;
  }
  .seo-banner {
    padding: 32px 20px;
  }
  .seo-pillar {
    border-left: none;
  }
}
@media (max-width: 900px) {
  * {
    text-align: center;
    justify-content: center;
  }
  .section-eyebrow {
    font-size: 0.3rem;
  }
  .service-card p {
    font-size: 0.6rem;
  }
  .nav-hamburger {
    display: flex;
  }
  nav ul {
    justify-content: left;
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 82vw);
    height: 100vh;
    background: rgba(13, 10, 7, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 80px 32px 40px;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(255, 255, 255, 0.07);
    z-index: 499;
    overflow-y: auto;
  }
  nav ul.open {
    right: 0;
  }
  nav ul li a {
    font-size: 1.05rem;
    font-weight: 400;
    padding: 16px 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--muted) !important;
    cursor: pointer;
    letter-spacing: 0;
  }
  nav ul li:last-child a {
    border-bottom: none;
  }
  .nav-cta {
    background: none !important;
    animation: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 16px 0 !important;
    color: var(--irid2) !important;
    font-size: 1.05rem !important;
    font-weight: 500 !important;
  }
  .hero,
  .services,
  .showcase,
  .process,
  .pricing,
  .testimonials,
  .cta-section {
    padding: 80px 24px;
  }
  .hero {
    min-height: 100vh;
  }
  .services-grid,
  .pricing-grid,
  .tgrid {
    grid-template-columns: 1fr;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    text-align: left;
  }
  footer * {
    text-align: left;
  }
  .footer-bottom {
    padding: 18px 24px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .seo-banner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 28px;
  }
  .hterm-section {
    margin-left: 16px;
    margin-right: 16px;
  }
  .hero-stats {
    flex-direction: column;
  }
  .stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .stat:last-child {
    border-bottom: none;
  }
  body {
    cursor: auto;
  }
  #cursor-dot,
  #cursor-glow,
  .cursor-trail {
    display: none;
  }
  a,
  button,
  .btn-irid,
  .btn-outline,
  .interactive,
  .form-input,
  .form-select,
  .form-textarea,
  .form-submit,
  .pricing-cta,
  .btn-dark {
    cursor: auto;
  }
  button,
  .form-submit,
  .nav-hamburger {
    cursor: pointer;
  }
  .marquee-section {
    padding: 6px 0;
  }
  .marquee-section .marquee-item {
    font-size: xx-small;
  }
}
/* ─── PAGE HERO ─── */
.page-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 64px 100px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.25s forwards;
  position: relative;
  z-index: 1;
}

.page-hero p {
  max-width: 500px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
  position: relative;
  z-index: 1;
}

.page-hero .hero-pill {
  opacity: 0;
  animation: fadeUp 0.6s 0.1s forwards;
}

/* ─── MISSION SPLIT ─── */
.about-mission {
  background: var(--bg);
  padding: 120px 64px 0;
  border-top: 1px solid var(--border);
}

.about-mission-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-mission-left h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 12px;
  position: sticky;
  top: 120px;
}

.about-mission-right p {
  font-size: 0.95rem;
  color: whitesmoke;
  line-height: 1.85;
  margin-bottom: 22px;
}

.about-mission-right p:last-of-type {
  margin-bottom: 0;
}

.about-family {
  display: flex;
  align-items: flex-end;
  gap: 64px;
  max-width: 1200px;
  margin: 80px auto 0;
}

.about-family-bio {
  flex: 1;
  padding-bottom: 64px;
}

.signature {
  max-width: 1200px;
  margin-left: 40%;
  margin-right: 2%;
  margin-bottom: 100px;
  text-align: center;
  font-family: "Cedarville Cursive";
  font-size: 2.8rem;
  font-weight: 400;
  color: #fff;
  opacity: 0.85;
  padding-bottom: 64px;
}

.about-family-bio p {
  font-size: 1rem;
  color: whitesmoke;
  line-height: 1.85;
}

.family-photo-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--irid2);
  flex-shrink: 0;
}

.about-family-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-quote {
  margin-top: 44px;
  padding: 26px 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 2px solid var(--irid2);
  border-radius: 0 10px 10px 0;
  position: relative;
}

.about-quote blockquote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--subtle);
  line-height: 1.75;
}

.signature {
  margin-top: 2rem;
  font-family: "Cedarville Cursive", cursive;
  font-size: 2.8rem;
  font-weight: 400;
  opacity: 0.85;
}

.signature-container {
  display: flex;
}

/* ─── TEAM / FOUNDERS ─── */
.about-team {
  background: var(--bg3);
  padding: 120px 64px;
}

.about-team-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-team-header {
  margin-bottom: 56px;
}

.about-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.founder-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: border-color 0.3s, background 0.3s, opacity 0.7s ease, transform 0.7s ease;
}

.founder-card.reveal:nth-child(1) {
  transform: translateX(-50px);
}

.founder-card.reveal:nth-child(2) {
  transform: translateX(50px);
}

.founder-card.reveal.visible {
  transform: translateX(0);
}

.founder-card:hover {
  border-color: rgba(248, 155, 85, 0.25);
  background: var(--surface);
}

.founder-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--irid2), var(--irid3), var(--irid4));
  background-size: 200%;
  animation: iridShift 4s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Mono", monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.founder-info {
  flex: 1;
}

.founder-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.founder-role {
  font-size: 0.7rem;
  color: var(--irid2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: "Space Mono", monospace;
}

.founder-bio {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.founder-tags span {
  font-size: 0.72rem;
  padding: 4px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--subtle);
  letter-spacing: 0.03em;
}

/* ─── LOCATION BADGE ─── */
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Space Mono", monospace;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.location-badge::before {
  content: "◎";
  color: var(--irid2);
  font-size: 0.75rem;
}

/* ─── VALUES ─── */
.about-values {
  background: var(--bg);
  padding: 120px 64px;
  border-top: 1px solid var(--border);
}

.about-values-header {
  margin-bottom: 56px;
}

.about-section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #e0dcdc;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 12px;
}

.about-team .about-section-title {
  color: #0a0a0a;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bg);
  border-radius: 12px;
  overflow: hidden;
}

.about-value-card {
  background: var(--bg);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.about-value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--irid2), var(--irid3), var(--irid4));
  background-size: 200%;
  animation: iridShift 4s ease infinite;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.about-value-card:hover {
  background: var(--surface);
}

.about-value-card:hover::before {
  transform: scaleX(1);
}

.value-num {
  font-family: "Space Mono", monospace;
  font-size: 0.68rem;
  color: var(--irid2);
  letter-spacing: 0.12em;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.value-num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.about-value-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.about-value-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── STATS ─── */
.about-stats {
  background: var(--bg);
  padding: 0;
  border-top: 1px solid var(--border);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.about-stat-card {
  background: var(--bg2);
  padding: 60px 44px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
}

.about-stat-card:last-child {
  border-right: none;
}

.about-stat-card:hover {
  background: var(--surface);
}

.about-stat-num {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(115deg, var(--irid2), var(--irid3), var(--irid4));
  background-size: 200%;
  animation: iridShift 4s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.about-stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  line-height: 1.5;
}

/* ─── APPROACH ─── */
.about-approach {
  background: var(--bg2);
  padding: 120px 64px;
  border-top: 1px solid var(--border);
}

.about-approach-header {
  margin-bottom: 64px;
}

.dark-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.dark-step {
  padding: 40px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.dark-step:hover {
  border-color: rgba(248, 155, 85, 0.3);
  background: rgba(248, 155, 85, 0.04);
  transform: translateY(-4px);
}

.dark-step-num {
  font-family: "Space Mono", monospace;
  font-size: 0.65rem;
  color: var(--irid2);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dark-step-num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.dark-step h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.dark-step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── DIFFERENTIATORS ─── */
.about-diff {
  background: #fff;
  padding: 120px 64px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about-diff-inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-diff-header {
  max-width: 580px;
}

.about-diff-header .section-eyebrow {
  color: var(--irid2);
}

.about-diff-header h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 700;
  color: #0d0a07;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 12px;
  margin-bottom: 20px;
}

.about-diff-header p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.8;
}

.about-diff-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.about-diff-item {
  padding: 28px 32px 28px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: default;
}

.about-diff-item:nth-child(odd) {
  padding-right: 48px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.about-diff-item:nth-child(even) {
  padding-left: 48px;
  padding-right: 0;
}

.about-diff-item:nth-child(-n+2) {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about-diff-item strong {
  font-size: 0.925rem;
  font-weight: 600;
  color: #0d0a07;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-diff-item strong::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--irid2), var(--irid3));
  flex-shrink: 0;
}

.about-diff-item span {
  font-size: 0.825rem;
  color: #6b7280;
  line-height: 1.65;
  padding-left: 16px;
}

/* ─── ABOUT PAGE RESPONSIVE ─── */
@media (max-width: 900px) {
  .page-hero {
    padding: 110px 24px 72px;
  }
  .about-mission {
    padding: 80px 24px 0;
  }
  .about-mission-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-mission-left h2 {
    position: static;
  }
  .about-family {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
  }
  .about-family-bio {
    padding-bottom: 0;
  }
  .family-photo-circle {
    width: 180px;
    height: 180px;
  }
  .about-team {
    padding: 80px 24px;
  }
  .about-team-grid {
    grid-template-columns: 1fr;
  }
  .founder-card {
    flex-direction: column;
  }
  .about-values {
    padding: 80px 24px;
  }
  .about-values-grid {
    grid-template-columns: 1fr;
  }
  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-stat-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .about-stat-card:nth-child(even) {
    border-right: none;
  }
  .about-approach {
    padding: 80px 24px;
  }
  .dark-process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .about-diff {
    padding: 80px 24px;
  }
  .about-diff-inner {
    gap: 40px;
  }
  .about-diff-list {
    grid-template-columns: 1fr;
  }
  .about-diff-item:nth-child(odd) {
    padding-right: 0;
    border-right: none;
  }
  .about-diff-item:nth-child(even) {
    padding-left: 0;
  }
  .about-diff-item:nth-child(2) {
    border-top: none;
  }
}
@media (max-width: 600px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
  }
  .about-mission-inner p {
    font-size: 0.7rem;
  }
  .about-family p {
    font-size: 0.7rem;
  }
  .dark-process-grid {
    grid-template-columns: 1fr;
  }
  .page-hero {
    padding: 90px 20px 60px;
    min-height: 100vh;
  }
  .about-mission {
    padding: 64px 20px 0;
  }
  .about-team {
    padding: 64px 20px;
  }
  .about-values {
    padding: 64px 20px;
  }
  .about-approach {
    padding: 64px 20px;
  }
  .about-diff {
    padding: 64px 20px;
  }
  .signature-container {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
  }
  .signature {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0;
    font-size: 2.2rem;
    text-align: center;
  }
  .family-photo-circle {
    width: 160px;
    height: 160px;
  }
  .about-diff-list {
    gap: 0;
  }
  .founder-card {
    padding: 28px 20px;
  }
}
/* ─── PAGE HERO (contact overrides) ─── */
body.contact-page .page-hero {
  min-height: 100vh;
  padding: 140px 64px 88px;
}
body.contact-page .page-hero p {
  max-width: 480px;
}

/* ─── CONTACT SECTION ─── */
.contact-section {
  background: var(--bg);
  padding: 100px 64px 140px;
  border-top: 1px solid var(--border);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 88px;
  max-width: 1500px;
  margin: 0 auto;
}

/* LEFT — INFO PANEL */
.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 12px 0 22px;
}

.contact-info > p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 360px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 52px;
}

.contact-method {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cm-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.cm-value {
  font-size: 0.925rem;
  color: var(--subtle);
}
.cm-value a {
  color: var(--subtle);
  text-decoration: none;
  transition: color 0.2s;
  cursor: none;
}
.cm-value a:hover {
  color: #fff;
}

/* WHAT HAPPENS NEXT */
.next-steps {
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.next-steps-title {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 28px;
}

.next-step {
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
  align-items: flex-start;
}
.next-step:last-child {
  margin-bottom: 0;
}
.next-step:last-child .ns-line {
  display: none;
}

.ns-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.ns-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--irid2), var(--irid3));
  flex-shrink: 0;
  margin-top: 4px;
  box-shadow: 0 0 8px rgba(247, 155, 85, 0.5);
}

.ns-line {
  width: 1px;
  flex: 1;
  background: var(--border);
  min-height: 28px;
  margin: 4px 0;
}

.ns-text {
  padding-bottom: 6px;
}
.ns-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.ns-text span {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* RIGHT — FORM CARD */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 52px;
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 35% at 90% 0%, rgba(248, 155, 85, 0.08) 0%, transparent 60%), radial-gradient(ellipse 35% 35% at 0% 100%, rgba(232, 74, 63, 0.04) 0%, transparent 55%);
}
.contact-form-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--irid2), var(--irid3), var(--irid4), transparent);
  background-size: 200%;
  animation: iridShift 4s ease infinite;
  opacity: 0.5;
}

.contact-form {
  position: relative;
  z-index: 1;
}

.form-heading {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ─── FORM UTILITIES ─── */
.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.required-star {
  color: var(--irid2);
}

.form-group--last {
  margin-bottom: 28px;
}

.section-eyebrow--spaced {
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.form-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--subtle);
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  cursor: none;
}
.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
  color: var(--muted);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(248, 155, 85, 0.45);
  box-shadow: 0 0 0 3px rgba(248, 155, 85, 0.07);
  background: rgba(255, 255, 255, 0.06);
}

.form-select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235a6070' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
.form-select option {
  background: #1a130a;
  color: var(--text);
}

.form-textarea {
  resize: vertical;
  min-height: 148px;
  line-height: 1.65;
}

.form-input.is-error,
.form-select.is-error,
.form-textarea.is-error {
  border-color: rgba(232, 74, 63, 0.7);
  box-shadow: 0 0 0 3px rgba(232, 74, 63, 0.1);
  background: rgba(232, 74, 63, 0.04);
}
.form-input.is-valid,
.form-select.is-valid,
.form-textarea.is-valid {
  border-color: rgba(100, 210, 130, 0.5);
  box-shadow: 0 0 0 3px rgba(100, 210, 130, 0.06);
}

.form-error-msg {
  font-size: 0.72rem;
  color: rgba(232, 100, 90, 0.9);
  letter-spacing: 0.02em;
  margin-top: -4px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.form-error-msg.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-6px);
  }
  40% {
    transform: translateX(6px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(4px);
  }
}
.shake {
  animation: shake 0.4s ease both;
}

.form-submit.shake {
  animation: shake 0.4s ease both;
}

.form-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 0.95rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  background: rgb(222, 233, 3);
  background-size: 300% 300%;
  animation: iridShift 5s ease infinite;
  color: #222121;
  border: none;
  border-radius: 8px;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 0 28px rgba(232, 170, 63, 0.3), 0 0 70px rgba(248, 136, 56, 0.07);
}
.form-submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.3) 50%, transparent 65%);
  background-size: 200% 100%;
  background-position: -200% 0;
  transition: background-position 0.55s ease;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 44px rgba(232, 167, 63, 0.5), 0 0 90px rgba(248, 130, 56, 0.1);
}
.form-submit:hover::after {
  background-position: 200% 0;
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.5;
}

/* ─── SUCCESS STATE ─── */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.visible {
  display: block;
}
.form-success h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.form-success p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
}

.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--irid5), var(--irid6));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 32px rgba(188, 212, 6, 0.3);
}
.success-icon svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

/* ─── CONTACT RESPONSIVE ─── */
@media (max-width: 900px) {
  body.contact-page .page-hero {
    padding: 110px 24px 64px;
    min-height: 100vh;
  }
  .contact-section {
    padding: 80px 24px 100px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .contact-form-wrap {
    padding: 32px 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-info > p {
    max-width: 100%;
  }
  .contact-section,
  .contact-section * {
    text-align: left;
  }
  .form-input,
  .form-select,
  .form-textarea {
    cursor: auto;
    font-size: 16px;
  }
}

/*# sourceMappingURL=style.css.map */
