/* ============================================
   ODYSSEY — VENTURE STUDIO
   ============================================ */

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

:root {
  --bg: #080B16;
  --bg-alt: #0C1022;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(139, 92, 246, 0.45);
  --text: #F1F5F9;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  --accent: #8B5CF6;
  --accent-light: #A78BFA;
  --cyan: #22D3EE;
  --gradient: linear-gradient(135deg, #8B5CF6 0%, #22D3EE 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(139,92,246,0.15) 0%, rgba(34,211,238,0.15) 100%);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-accent: 0 0 40px rgba(139, 92, 246, 0.2);
  --transition: 0.25s ease;
  --nav-height: 72px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- UTILS ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

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

.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 24px rgba(139, 92, 246, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(139, 92, 246, 0.5);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(139, 92, 246, 0.05);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all 0.35s ease;
}

.nav.scrolled {
  background: rgba(8, 11, 22, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.nav__container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.nav__logo-mark {
  display: block;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
  filter: invert(1);
}

.hero__logo-icon {
  height: 22px;
  width: auto;
  vertical-align: middle;
  filter: invert(1);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--text);
}

.nav__cta-link {
  color: var(--accent-light) !important;
  font-weight: 600 !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(8, 11, 22, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__link {
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  transition: color var(--transition);
}

.mobile-menu__link:hover {
  color: var(--accent-light);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--nav-height) + 60px) 0 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.hero__blob--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(139,92,246,0.18) 0%, transparent 70%);
  top: -250px;
  right: -150px;
}

.hero__blob--2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34,211,238,0.12) 0%, transparent 70%);
  bottom: -250px;
  left: -100px;
}

.hero__blob--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 90%);
}

.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__inner {
  max-width: 780px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.hero__stat {
  padding: 0 40px 0 0;
}

.hero__stat:first-child {
  padding-left: 0;
}

.hero__stat-num {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 3px;
}

.hero__stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  margin: 0 40px 0 0;
  flex-shrink: 0;
}

/* ---- ABOUT ---- */
.about {
  padding: 110px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about__content .section-title {
  margin-bottom: 24px;
}

.about__content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 18px;
}

.about__content p:last-child {
  margin-bottom: 0;
}

.about__content strong {
  color: var(--text);
  font-weight: 600;
}

.about__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: all var(--transition);
  cursor: default;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
}

.feature-card__icon {
  font-size: 28px;
  margin-bottom: 14px;
  line-height: 1;
}

.feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.feature-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- ICON CHIP (SVG icons in place of emoji) ---- */
.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gradient-subtle);
  border: 1px solid var(--border);
  color: var(--accent-light);
  transition: all var(--transition);
}

.icon-chip svg {
  width: 22px;
  height: 22px;
}

.feature-card:hover .icon-chip {
  border-color: var(--border-hover);
  color: var(--text);
}

/* ---- VERTICALS ---- */
.verticals {
  padding: 110px 0;
  background: var(--bg);
}

.verticals__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.vertical-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.vertical-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-subtle);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
  pointer-events: none;
}

.vertical-card:hover {
  border-color: rgba(139, 92, 246, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), var(--shadow-accent);
}

.vertical-card:hover::after {
  opacity: 1;
}

.vertical-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.vertical-card__icon {
  font-size: 40px;
  line-height: 1;
}

.vertical-card__num {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
}

.vertical-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.vertical-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.vertical-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.vertical-card__tags span {
  padding: 5px 13px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  transition: all var(--transition);
}

.vertical-card:hover .vertical-card__tags span {
  border-color: rgba(139, 92, 246, 0.3);
  color: var(--text-muted);
}

/* ---- PROCESS ---- */
.process {
  padding: 110px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--cyan) 100%);
  opacity: 0.3;
}

.process__step {
  padding: 0 24px;
  position: relative;
}

.process__step:first-child {
  padding-left: 0;
}

.process__step:last-child {
  padding-right: 0;
}

.process__num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.process__num::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  z-index: -1;
}

.process__step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.process__step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---- CONTACT ---- */
.contact {
  padding: 110px 0;
  background: var(--bg);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact__content .section-title {
  margin-bottom: 20px;
}

.contact__content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
}

.contact__link svg {
  opacity: 0.6;
  flex-shrink: 0;
}

.contact__link:hover {
  color: var(--accent-light);
}

.contact__link:hover svg {
  opacity: 1;
}

.contact__form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group:last-of-type {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: all var(--transition);
  outline: none;
  resize: none;
  line-height: 1.5;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(139, 92, 246, 0.05);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-note {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
  background: var(--bg-alt);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  gap: 48px;
}

.footer__brand .nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer__brand p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

.footer__nav {
  display: flex;
  gap: 64px;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.footer__nav-col a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  transition: color var(--transition);
}

.footer__nav-col a:hover {
  color: var(--text);
}

.footer__copy {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.footer__bottom {
  border-top: 1px solid var(--border);
}

.footer__address {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

.footer__legal {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-top: 10px;
}

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  width: calc(100% - 48px);
  max-width: 780px;
  background: rgba(15, 18, 32, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(16px);
  pointer-events: none;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 200px;
}

.cookie-banner__text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.cookie-banner__text a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__text a:hover {
  color: var(--text);
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 9px 20px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}

.cookie-btn--decline {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border);
}

.cookie-btn--decline:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--text-muted);
}

.cookie-btn--accept {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 2px 16px rgba(139, 92, 246, 0.3);
}

.cookie-btn--accept:hover {
  box-shadow: 0 4px 24px rgba(139, 92, 246, 0.45);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .cookie-banner {
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}

/* ---- SCROLL ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.about__cards .fade-up:nth-child(1) { transition-delay: 0.05s; }
.about__cards .fade-up:nth-child(2) { transition-delay: 0.1s; }
.about__cards .fade-up:nth-child(3) { transition-delay: 0.15s; }
.about__cards .fade-up:nth-child(4) { transition-delay: 0.2s; }

.verticals__grid .fade-up:nth-child(1) { transition-delay: 0s; }
.verticals__grid .fade-up:nth-child(2) { transition-delay: 0.1s; }
.verticals__grid .fade-up:nth-child(3) { transition-delay: 0.15s; }
.verticals__grid .fade-up:nth-child(4) { transition-delay: 0.2s; }

.process__steps .fade-up:nth-child(1) { transition-delay: 0s; }
.process__steps .fade-up:nth-child(2) { transition-delay: 0.1s; }
.process__steps .fade-up:nth-child(3) { transition-delay: 0.2s; }
.process__steps .fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about__grid {
    gap: 56px;
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process__steps::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .about__grid,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__content .section-title {
    font-size: 32px;
  }

  .verticals__grid {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    gap: 0;
  }

  .hero__stat {
    padding: 16px 24px 16px 0;
  }

  .hero__stat-divider {
    margin: 0 24px 0 0;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: calc(var(--nav-height) + 40px) 0 60px;
  }

  .hero__title {
    font-size: 40px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 48px;
  }

  .hero__stats {
    flex-direction: column;
    gap: 0;
  }

  .hero__stat {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .hero__stat:last-child {
    border-bottom: none;
  }

  .hero__stat-divider {
    display: none;
  }

  .about,
  .verticals,
  .process,
  .contact {
    padding: 72px 0;
  }

  .about__cards {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact__form {
    padding: 28px 24px;
  }

  .vertical-card {
    padding: 28px;
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process__step {
    padding: 0;
  }

  .footer__inner {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 32px;
  }

  .footer__nav {
    gap: 40px;
    flex-wrap: wrap;
  }

  .footer__copy {
    text-align: center;
  }
}

/* ============================================
   MOTION & POLISH
   ============================================ */

/* Larger icon chip for big cards (verticals) */
.icon-chip--lg {
  width: 56px;
  height: 56px;
  border-radius: 14px;
}

.icon-chip--lg svg {
  width: 28px;
  height: 28px;
}

.vertical-card:hover .icon-chip {
  border-color: var(--border-hover);
  color: var(--text);
}

/* Living hero — gentle blob drift */
@keyframes blobDrift1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-40px, 34px); }
}

@keyframes blobDrift2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(44px, -30px); }
}

.hero__blob--1 { animation: blobDrift1 24s ease-in-out infinite; }
.hero__blob--2 { animation: blobDrift2 30s ease-in-out infinite; }

/* Brand text selection */
::selection {
  background: rgba(139, 92, 246, 0.35);
  color: #fff;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.35);
  border-radius: 10px;
  border: 3px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: rgba(139, 92, 246, 0.55); }

/* Keyboard focus ring */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Anchor targets clear the fixed nav */
section[id] {
  scroll-margin-top: calc(var(--nav-height) + 12px);
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up { opacity: 1 !important; transform: none !important; }
}

/* ============================================
   COSMIC HERO
   ============================================ */
.starfield {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.starfield span {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
  animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1); }
}

.hero__planet {
  position: absolute;
  right: -12%;
  top: 50%;
  transform: translateY(-50%);
  width: 760px;
  height: 760px;
  max-width: 92vw;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 32%, rgba(139, 92, 246, 0.16), rgba(8, 11, 22, 0) 55%),
    radial-gradient(circle at 68% 72%, rgba(34, 211, 238, 0.10), rgba(8, 11, 22, 0) 55%),
    #060911;
  box-shadow:
    inset 46px 8px 90px -30px rgba(34, 211, 238, 0.5),
    inset -30px -10px 80px rgba(139, 92, 246, 0.22),
    0 0 160px rgba(34, 211, 238, 0.12);
  pointer-events: none;
}

.hero__planet::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  padding: 2px;
  background: conic-gradient(from 195deg, transparent 0 40%, rgba(34, 211, 238, 0.95) 50%, rgba(139, 92, 246, 0.85) 61%, transparent 70% 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  filter: blur(2px);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 9px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}

.hero__eyebrow img { display: block; }

@media (max-width: 768px) {
  .hero__planet {
    width: 440px;
    height: 440px;
    right: -35%;
    top: 14%;
    transform: none;
    opacity: 0.75;
  }
}

/* ============================================
   INTERIOR PAGES (cosmic)
   ============================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 88px) 0 68px;
  border-bottom: 1px solid var(--border);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero__glow {
  position: absolute;
  width: 620px;
  height: 620px;
  right: -8%;
  top: -34%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18), transparent 65%);
  pointer-events: none;
}

.page-hero__glow--cyan {
  left: -14%;
  right: auto;
  top: auto;
  bottom: -55%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.12), transparent 65%);
}

.page-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 22px;
  transition: color var(--transition);
}

.page-hero__back:hover { color: var(--accent-light); }

.page-hero__title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 6px 0 20px;
}

.page-hero__subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}

/* Glass surface */
.glass {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Before-you-build checklist */
.checklist {
  max-width: 760px;
  margin: 0 auto;
}

.checklist__item {
  display: flex;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--border);
}

.checklist__item:first-child { border-top: none; }

.checklist__check {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(139, 92, 246, 0.5);
  background: var(--gradient-subtle);
  color: var(--accent-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.checklist__check svg { width: 22px; height: 22px; }

.checklist__body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  color: var(--text);
}

.checklist__num { color: var(--accent-light); }

.checklist__body p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* Article / post cards */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.post-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
}

.post-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-accent);
}

.post-card__thumb {
  height: 200px;
  background:
    radial-gradient(120% 120% at 14% 12%, rgba(139, 92, 246, 0.40), transparent 52%),
    radial-gradient(120% 120% at 90% 94%, rgba(34, 211, 238, 0.32), transparent 52%),
    #090c1a;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.post-card__thumb svg {
  width: 100%;
  height: 100%;
  display: block;
}

.post-card__body { padding: 22px; }

.post-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.post-card__body h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 10px 0 8px;
  color: var(--text);
  line-height: 1.35;
}

.post-card__body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.post-card__meta {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-dim);
}

/* CTA band */
.cta-band {
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-band h2 {
  font-size: clamp(23px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-band p {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 28px;
}

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

.team-card { text-align: center; padding: 32px 24px; }

.team-card__avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--gradient-subtle);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-light);
  letter-spacing: 0.02em;
}

.team-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 3px; color: var(--text); }
.team-card__role { font-size: 13px; color: var(--text-dim); }

@media (max-width: 900px) {
  .post-grid,
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .post-grid,
  .team-grid { grid-template-columns: 1fr; }
  .checklist__item { gap: 14px; }
}

/* Collapse the inline multi-column content grids on smaller screens */
@media (max-width: 900px) {
  .about__cards { grid-template-columns: 1fr 1fr !important; }
  .glance { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 600px) {
  .about__cards { grid-template-columns: 1fr !important; }
}

/* ============================================
   EDITORIAL SYSTEM (unique, professional layouts)
   ============================================ */

/* Kicker — small editorial label with a leading rule */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 22px;
}
.kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gradient);
}

.display {
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.lead {
  font-size: clamp(14px, 1.5vw, 15.5px);
  line-height: 1.7;
  color: var(--text-muted);
}

/* Marquee — scrolling keyword strip */
.marquee {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 54px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.marquee__track span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* Statement — big centered editorial line */
.statement { padding: 110px 0; text-align: center; position: relative; overflow: hidden; }
.statement .container { position: relative; z-index: 1; }
.statement__text {
  font-size: clamp(19px, 2.6vw, 30px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.02em;
  max-width: 1000px;
  margin: 0 auto;
  color: var(--text-dim);
}
.statement__text strong { color: var(--text); font-weight: 800; }

/* Bento — varied-size grid */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 252px;
  gap: 18px;
}
.bento__cell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all var(--transition);
}
.bento__cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-subtle);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.bento__cell:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: var(--shadow-accent); }
.bento__cell:hover::after { opacity: 1; }
.bento__cell--wide { grid-column: span 2; }
.bento__cell--tall { grid-row: span 2; }
.bento__cell > .bento__media {
  position: absolute;
  top: 22px;
  right: 20px;
  left: auto;
  bottom: auto;
  width: 130px;
  height: 92px;
  z-index: 0;
  opacity: 0.8;
  padding: 0;
}
.bento__media svg, .bento__media img { width: 100%; height: 100%; object-fit: contain; object-position: right top; display: block; }
.bento__cell > * { position: relative; z-index: 1; }
.bento__num { font-size: 16px; font-weight: 800; letter-spacing: 0.08em; color: var(--accent-light); margin-bottom: auto; }
.bento__cell h3 { font-size: 19px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 8px; }
.bento__cell p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Feature rows — alternating media + text */
.feature-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 30px 0;
}
.feature-row + .feature-row { margin-top: 34px; }
.feature-row--reverse .feature-row__media { order: 2; }
.feature-row__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}
.feature-row__media img { width: 100%; height: auto; display: block; }
.feature-row__text h2 { font-size: clamp(24px, 3.2vw, 34px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; line-height: 1.15; }
.feature-row__text p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.feature-row__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.feature-row__tags span { padding: 6px 14px; border: 1px solid var(--border); border-radius: 100px; font-size: 12.5px; color: var(--text-dim); }

/* Stat strip — bold numbers */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-strip__item { text-align: center; }
.stat-strip__num {
  display: block;
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-strip__label { display: block; font-size: 13px; color: var(--text-dim); margin-top: 12px; line-height: 1.5; }

/* Timeline */
.timeline { max-width: 780px; margin: 0 auto; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--cyan));
  opacity: 0.35;
}
.timeline__item { position: relative; padding: 0 0 40px 56px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute;
  left: 4px;
  top: 1px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-light);
}
.timeline__item h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; }
.timeline__item p { font-size: 15px; color: var(--text-muted); line-height: 1.75; }

/* Big quote / manifesto */
.bigquote { padding: 110px 0; position: relative; overflow: hidden; }
.bigquote__inner { max-width: 920px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.bigquote blockquote {
  font-size: clamp(24px, 3.6vw, 40px);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.02em;
  color: var(--text);
}
.bigquote cite { display: block; margin-top: 26px; font-size: 14px; font-style: normal; color: var(--text-dim); letter-spacing: 0.04em; text-transform: uppercase; }

/* Showcase tiles (verticals) */
.showcase { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.showcase__tile {
  position: relative;
  min-height: 300px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  transition: all var(--transition);
}
.showcase__tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,11,22,0.35) 0%, rgba(8,11,22,0.72) 55%, rgba(8,11,22,0.97) 100%);
  z-index: 1;
}
.showcase__bg { position: absolute; inset: 0; z-index: 0; opacity: 0.28; }
.showcase__bg svg { width: 100%; height: 100%; }
.showcase__tile:hover { transform: translateY(-4px); border-color: var(--border-hover); box-shadow: 0 24px 64px rgba(0,0,0,0.4); }
.showcase__tile > .showcase__body { position: relative; z-index: 2; }
.showcase__num { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: var(--accent-light); }
.showcase__tile h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin: 8px 0 10px; }
.showcase__tile p { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; max-width: 90%; }
.showcase__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.showcase__tags span { padding: 4px 11px; border: 1px solid rgba(255,255,255,0.14); border-radius: 100px; font-size: 11.5px; color: var(--text-muted); }

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .bento__cell--wide, .bento__cell--tall { grid-column: auto; grid-row: auto; }
  .feature-row, .feature-row--reverse { grid-template-columns: 1fr; gap: 32px; }
  .feature-row--reverse .feature-row__media { order: 0; }
  .stat-strip { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .showcase { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .statement, .bigquote { padding: 76px 0; }
}

/* ============================================
   LEGAL / POLICY PAGES
   ============================================ */
.policy { padding: 56px 0 90px; }
.policy__content { max-width: 760px; }
.policy__content h2 {
  font-size: 21px;
  font-weight: 700;
  margin: 42px 0 14px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.policy__content h2:first-child { margin-top: 0; }
.policy__content p,
.policy__content li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
}
.policy__content p { margin-bottom: 16px; }
.policy__content ul { margin: 12px 0 18px 20px; }
.policy__content li { margin-bottom: 7px; }
.policy__content a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.policy__content a:hover { color: var(--text); }
.policy__content strong { color: var(--text); font-weight: 600; }
.policy__content code {
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: 5px;
  font-size: 13px;
}
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.policy-table th {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.policy-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  vertical-align: top;
  line-height: 1.6;
}

/* 404 */
.notfound {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  text-align: center;
}
.notfound__code {
  font-size: clamp(60px, 12vw, 120px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
}
.notfound__inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.notfound h1 { font-size: clamp(24px, 4vw, 34px); font-weight: 800; margin-bottom: 14px; letter-spacing: -0.02em; }
.notfound p { color: var(--text-muted); font-size: 17px; margin-bottom: 30px; line-height: 1.7; }
