/* ========================================
   Pleyra v4 — Premium, dolu, Apple-grade
   Açık zemin · zengin section'lar · derinlik
   ======================================== */

:root {
  --bg:        #fafaf7;
  --bg-soft:   #f5f4ef;
  --bg-warm:   #f8f6f0;
  --surface:   #ffffff;
  --ink:       #15141a;
  --ink-soft:  #2c2b35;
  --ink-muted: #6e6c7e;
  --ink-faint: #a3a1ae;
  --line:      #e8e6df;
  --line-soft: #f0eee8;

  /* OBPro */
  --obpro:        #0F766E;
  --obpro-light:  #14B8A6;
  --obpro-mint:   #5EEAD4;
  --obpro-deep:   #0A4D48;
  --obpro-bg:     #ECFDF5;
  --obpro-bg2:    #D1FAE5;
  --obpro-grad:   linear-gradient(135deg, #0F766E 0%, #14B8A6 60%, #5EEAD4 100%);
  --obpro-glow:   radial-gradient(ellipse at center, rgba(20, 184, 166, 0.5), transparent 60%);

  /* GYNStat */
  --gyn:        #3C3489;
  --gyn-light:  #534AB7;
  --gyn-pale:   #9089E0;
  --gyn-deep:   #2A2466;
  --gyn-bg:     #EEEDFE;
  --gyn-bg2:    #DDD9FB;
  --gyn-grad:   linear-gradient(135deg, #2A2466 0%, #3C3489 50%, #7F77DD 100%);
  --gyn-glow:   radial-gradient(ellipse at center, rgba(127, 119, 221, 0.45), transparent 60%);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl: 40px;

  --font-display: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1240px;
  --gutter: 24px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.04);
  --shadow:    0 4px 16px -4px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
  --shadow-lg: 0 30px 60px -15px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  --shadow-xl: 0 50px 100px -25px rgba(0,0,0,0.18);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}

/* ====== Background mesh ====== */
.bg-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bg-mesh::before,
.bg-mesh::after {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.32;
  animation: float 22s ease-in-out infinite;
}
.bg-mesh::before { background: var(--obpro-glow); top: -300px; left: -300px; }
.bg-mesh::after { background: var(--gyn-glow); top: 100px; right: -350px; animation-delay: -11s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -40px) scale(1.08); }
}

/* ====== Header ====== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.brand {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.brand img { height: 24px; }
.site-nav { display: flex; gap: 4px; }
.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 10px;
  transition: all 0.15s ease;
}
.site-nav a:hover { color: var(--ink); background: rgba(0,0,0,0.04); }
.site-nav a.is-active { color: var(--ink); background: rgba(0,0,0,0.06); }
.header-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ink); color: #fff;
  padding: 8px 16px; border-radius: 10px;
  font-size: 14px; font-weight: 500;
  margin-left: 12px;
}
.header-cta:hover { background: #000; color: #fff; }

/* ====== Buttons ====== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  font-size: 15px; font-weight: 500;
  letter-spacing: -0.01em;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s var(--ease);
  font-family: inherit;
}
.btn-primary {
  background: var(--ink); color: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.btn-primary:hover { background: #000; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,0.15); }
.btn-ghost {
  background: rgba(255,255,255,0.7);
  color: var(--ink); border-color: var(--line);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: #fff; border-color: var(--ink); }

/* ====== Hero ====== */
.hero-v4 {
  padding: 110px 0 80px;
  text-align: center;
  position: relative;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  font-size: 13px; font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: all 0.2s ease;
}
.hero-pill:hover { transform: translateY(-1px); border-color: var(--ink-muted); }
.hero-pill .new-badge {
  background: var(--obpro-grad);
  color: #fff;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 999px;
}
.hero-pill .arrow { opacity: 0.5; transition: transform 0.2s ease; }
.hero-pill:hover .arrow { transform: translateX(2px); opacity: 1; }

.hero-v4 h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 8vw, 100px);
  line-height: 1;
  letter-spacing: -0.045em;
  margin: 0 auto 32px;
  max-width: 14ch;
  color: var(--ink);
}
.gradient-text {
  background: linear-gradient(135deg, #14B8A6 0%, #534AB7 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 500;
}
.hero-v4 .hero-sub {
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto 40px;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Hero meta strip below CTA */
.hero-meta {
  margin-top: 56px;
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-muted);
}
.hero-meta-item {
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-meta-item svg { width: 16px; height: 16px; opacity: 0.6; }

/* ====== Trust strip ====== */
.trust-strip {
  padding: 64px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}
.trust-label {
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 32px;
}
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.trust-stat { text-align: center; }
.trust-stat-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #14B8A6 0%, #534AB7 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.trust-stat-label {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ====== Section ====== */
.section { padding: 120px 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 72px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: linear-gradient(135deg, #14B8A6, #534AB7);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.section-eyebrow.obpro {
  background: var(--obpro-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-eyebrow.gyn {
  background: var(--gyn-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 0 0 22px;
}
.section-sub {
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 60ch;
  margin: 0;
}

/* ====== App full-bleed showcase (huge) ====== */
.app-bleed {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  margin-bottom: 120px;
  isolation: isolate;
  box-shadow: var(--shadow-xl);
}
.app-bleed.obpro { background: var(--obpro-grad); }
.app-bleed.gyn { background: var(--gyn-grad); }

.app-bleed-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 640px;
  padding: 80px 64px;
  position: relative;
  z-index: 2;
  color: #fff;
  gap: 48px;
}
.app-bleed::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(0,0,0,0.15), transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.app-bleed-content { position: relative; z-index: 3; }
.app-bleed-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  color: #fff;
}
.app-bleed-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0 0 22px;
  color: #fff;
}
.app-bleed-tag {
  font-size: 21px;
  line-height: 1.45;
  color: rgba(255,255,255,0.92);
  margin: 0 0 32px;
  max-width: 36ch;
}
.app-bleed-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: 0 0 40px;
}
.app-bleed-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.94);
}
.app-bleed-feature::before {
  content: '';
  width: 18px; height: 18px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  flex-shrink: 0;
  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='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.app-bleed-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--ink);
  padding: 14px 26px; border-radius: 12px;
  font-size: 15px; font-weight: 500;
  transition: all 0.2s ease;
}
.app-bleed-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,0.2); color: var(--ink); }
.app-bleed-cta::after { content: '→'; }

.app-bleed-visual {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: center;
}

/* ====== Phone ====== */
.phone {
  width: 300px;
  height: 620px;
  background: #1d1d1f;
  border-radius: 48px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.15),
    0 30px 60px -15px rgba(0,0,0,0.4),
    0 60px 100px -30px rgba(0,0,0,0.3);
  position: relative;
  transform: rotate(-3deg);
  transition: transform 0.6s var(--ease);
}
.app-bleed:hover .phone { transform: rotate(-1deg) translateY(-8px); }
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  background: #fff;
}
.phone-notch {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #1d1d1f;
  border-radius: 18px;
  z-index: 10;
}
.phone-screen.obpro-ui {
  background: linear-gradient(180deg, #ECFDF5 0%, #fff 40%);
  padding: 60px 18px 18px;
  font-family: -apple-system, sans-serif;
}
.phone-screen.gyn-ui {
  background: linear-gradient(180deg, #EEEDFE 0%, #fff 40%);
  padding: 60px 18px 18px;
  font-family: -apple-system, sans-serif;
}
.ui-greeting { font-size: 11px; color: var(--ink-muted); margin-bottom: 4px; }
.ui-title { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 18px; color: var(--ink); }
.ui-card { background: #fff; border-radius: 14px; padding: 14px; margin-bottom: 10px; box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.04); }
.ui-card-row { display: flex; align-items: center; gap: 10px; }
.ui-pill { font-size: 9px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 7px; border-radius: 999px; }
.obpro-ui .ui-pill { background: var(--obpro-bg); color: var(--obpro); }
.gyn-ui .ui-pill { background: var(--gyn-bg); color: var(--gyn); }
.ui-icon { width: 32px; height: 32px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.obpro-ui .ui-icon { background: var(--obpro-bg); color: var(--obpro); }
.gyn-ui .ui-icon { background: var(--gyn-bg); color: var(--gyn); }
.ui-icon svg { width: 16px; height: 16px; }
.ui-card-body { flex: 1; min-width: 0; }
.ui-label { font-size: 10px; color: var(--ink-muted); margin-bottom: 1px; }
.ui-value { font-size: 13px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.ui-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 10px; }
.ui-stat { background: #fff; border-radius: 12px; padding: 10px; box-shadow: 0 0 0 1px rgba(0,0,0,0.04); }
.ui-stat-label { font-size: 9px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-muted); margin-bottom: 4px; }
.ui-stat-value { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
.obpro-ui .ui-stat-value { color: var(--obpro); }
.gyn-ui .ui-stat-value { color: var(--gyn); }

/* ====== How it works ====== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.step-card:hover { transform: translateY(-4px); border-color: var(--ink-muted); box-shadow: var(--shadow-lg); }
.step-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 8px;
}
.step-num::before {
  content: '';
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #14B8A6, #534AB7);
  color: #fff;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 14px;
  font-family: var(--font-display);
  font-weight: 600;
}
.step-card[data-step="01"] .step-num::before { content: '1'; }
.step-card[data-step="02"] .step-num::before { content: '2'; }
.step-card[data-step="03"] .step-num::before { content: '3'; }
.step-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.2;
}
.step-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* ====== Feature grid (8-up) ====== */
.feature-grid-v4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.25s var(--ease);
}
.feature-tile:hover { transform: translateY(-3px); border-color: var(--ink-muted); box-shadow: var(--shadow); }
.feature-tile-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--obpro-bg2), var(--gyn-bg2));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--ink);
}
.feature-tile-icon svg { width: 20px; height: 20px; }
.feature-tile h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.feature-tile p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

/* ====== Languages strip ====== */
.lang-section {
  position: relative;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, var(--obpro-bg) 0%, var(--gyn-bg) 100%);
  padding: 80px 64px;
  overflow: hidden;
  text-align: center;
}
.lang-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,0.5), transparent 60%);
  pointer-events: none;
}
.lang-section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 20px;
  position: relative;
}
.lang-section p {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 auto 48px;
  position: relative;
}
.lang-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.lang-pill {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.6);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s ease;
}
.lang-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.lang-flag {
  width: 18px; height: 13px;
  border-radius: 2px;
  display: inline-block;
  background-color: #ddd;
  background-size: cover;
  flex-shrink: 0;
}

/* ====== Testimonials ====== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  transition: all 0.25s var(--ease);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--ink-muted); }
.testimonial-stars {
  display: flex; gap: 2px; margin-bottom: 18px;
  color: #f59e0b;
  font-size: 16px;
}
.testimonial-quote {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 24px;
  flex: 1;
  font-weight: 400;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--obpro-light), var(--gyn-light));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  margin: 0;
}
.testimonial-role {
  font-size: 13px;
  color: var(--ink-muted);
  margin: 0;
}

/* ====== CTA section ====== */
.cta-section {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-2xl);
  padding: 96px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.3), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(83, 74, 183, 0.3), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
  color: #fff;
  position: relative;
}
.cta-section p {
  font-size: 19px;
  color: rgba(255,255,255,0.75);
  max-width: 50ch;
  margin: 0 auto 36px;
  position: relative;
}
.cta-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  position: relative;
}
.cta-section .btn-primary {
  background: #fff; color: var(--ink);
}
.cta-section .btn-primary:hover { background: #fff; }
.cta-section .btn-ghost {
  background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}
.cta-section .btn-ghost:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }

/* ====== Page hero ====== */
.page-hero-v4 {
  padding: 120px 0 64px;
  text-align: center;
  position: relative;
}
.page-hero-v4 h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.045em;
  margin: 0 0 22px;
}
.page-hero-v4 p {
  font-size: 21px;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.45;
}

/* ====== Detail page hero ====== */
.detail-hero-v4 {
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.detail-hero-v4::before {
  content: '';
  position: absolute;
  width: 1100px; height: 1100px;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.35;
  pointer-events: none;
  top: -500px;
  left: 50%;
  transform: translateX(-50%);
}
.detail-hero-v4.obpro::before { background: var(--obpro-glow); }
.detail-hero-v4.gyn::before { background: var(--gyn-glow); }

.detail-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 600px;
}
.detail-hero-icon {
  width: 96px; height: 96px;
  border-radius: 24px;
  margin-bottom: 28px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  letter-spacing: -0.03em;
  color: #fff;
  box-shadow: 0 16px 40px -8px rgba(0,0,0,0.25);
}
.detail-hero-v4.obpro .detail-hero-icon { background: var(--obpro-grad); }
.detail-hero-v4.gyn .detail-hero-icon { background: var(--gyn-grad); }
.detail-hero-v4 h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
}
.detail-hero-v4.obpro h1 .gradient-text {
  background: var(--obpro-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.detail-hero-v4.gyn h1 .gradient-text {
  background: var(--gyn-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.detail-tagline {
  font-size: clamp(20px, 2vw, 24px);
  color: var(--ink-soft);
  line-height: 1.45;
  margin: 0 0 32px;
  max-width: 28ch;
}
.detail-meta-v4 { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.detail-meta-v4 .meta-pill {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
}
.detail-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.app-store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #1d1d1f;
  color: #fff;
  padding: 12px 24px 12px 18px;
  border-radius: 14px;
  font-size: 14px;
  transition: all 0.2s ease;
}
.app-store-btn:hover { background: #000; color: #fff; transform: translateY(-1px); }
.app-store-btn-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.app-store-btn-text small { font-size: 11px; opacity: 0.75; }
.app-store-btn-text strong { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }

.detail-hero-mockup { display: flex; justify-content: center; align-items: center; }

/* ====== Feature blocks (alternating) ====== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--line-soft);
}
.feature-block:last-child { border-bottom: none; }
.feature-block.reverse .feature-block-text { order: 2; }
.feature-block.reverse .feature-block-visual { order: 1; }
.feature-block-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
  display: inline-block;
}
.obpro .feature-block-eyebrow { color: var(--obpro); }
.gyn .feature-block-eyebrow { color: var(--gyn-light); }
.feature-block h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
  max-width: 16ch;
}
.feature-block p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 50ch;
}
.feature-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-block ul li {
  padding: 10px 0;
  font-size: 15.5px;
  color: var(--ink);
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--line-soft);
}
.feature-block ul li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  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='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.obpro .feature-block ul li:last-child,
.gyn .feature-block ul li:last-child { border-bottom: none; }
.obpro .feature-block ul li::before { background-color: var(--obpro-light); }
.gyn .feature-block ul li::before { background-color: var(--gyn-light); }

.feature-visual-card {
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.obpro .feature-visual-card { background: linear-gradient(135deg, var(--obpro-bg) 0%, var(--obpro-bg2) 100%); }
.gyn .feature-visual-card { background: linear-gradient(135deg, var(--gyn-bg) 0%, var(--gyn-bg2) 100%); }
.feature-visual-card::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  top: -100px; right: -100px;
}
.obpro .feature-visual-card::before { background: var(--obpro-glow); }
.gyn .feature-visual-card::before { background: var(--gyn-glow); }

/* Mini phone in feature visual */
.mini-phone {
  width: 240px; height: 480px;
  background: #1d1d1f;
  border-radius: 38px;
  padding: 9px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
}
.mini-phone .phone-screen { border-radius: 30px; }
.mini-phone .phone-notch { width: 80px; height: 22px; }

/* ====== Spec sheet ====== */
.spec-sheet {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 48px;
}
.spec-sheet h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.025em;
  margin: 0 0 32px;
}
.spec-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: baseline;
}
.spec-row:last-child { border-bottom: none; }
.spec-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.spec-value {
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}

/* ====== Generic page ====== */
.page-v4 {
  max-width: 760px;
  margin: 0 auto;
  padding: 100px var(--gutter) 80px;
  position: relative;
}
.page-v4 h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 80px);
  line-height: 1;
  letter-spacing: -0.045em;
  margin: 0 0 36px;
}
.page-v4 .prose p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 1.4em;
}
.page-v4 .prose h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.025em;
  margin: 56px 0 16px;
}

/* Values grid (about) */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 56px 0;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.value-card-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--obpro-bg2), var(--gyn-bg2));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--ink);
}
.value-card-icon svg { width: 22px; height: 22px; }
.value-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.value-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* Support categories */
.support-cats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin: 48px 0;
}
.support-cat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: block;
  transition: all 0.2s ease;
}
.support-cat:hover { transform: translateY(-2px); border-color: var(--ink-muted); box-shadow: var(--shadow); }
.support-cat-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--obpro-bg);
  color: var(--obpro);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.support-cat-icon svg { width: 18px; height: 18px; }
.support-cat h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.support-cat p {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.5;
  margin: 0;
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  margin-top: 48px;
}
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  background: var(--bg-soft);
  color: var(--ink);
  transition: all 0.15s ease;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
}
.form-row textarea { resize: vertical; min-height: 120px; }
.contact-info {
  background: linear-gradient(135deg, var(--obpro-bg) 0%, var(--gyn-bg) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  height: fit-content;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.contact-info-row {
  margin-bottom: 24px;
}
.contact-info-row .label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.contact-info-row a, .contact-info-row span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.contact-info-row a:hover {
  background: linear-gradient(135deg, #14B8A6, #534AB7);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Legal pages */
.legal-v4 {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px var(--gutter) 80px;
}
.legal-v4 h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 60px);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 12px;
}
.legal-v4 .legal-meta {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
}
.legal-v4 .meta-badge {
  display: inline-flex; align-items: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 999px;
}
.legal-v4 h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 48px 0 14px;
}
.legal-v4 p, .legal-v4 li {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* Footer */
.site-footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  margin-top: 100px;
  position: relative;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand-v4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 15px;
  color: var(--ink-muted);
  max-width: 30ch;
  line-height: 1.5;
  margin-bottom: 20px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  margin: 0 0 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
  padding: 5px 0;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  font-size: 13px;
  color: var(--ink-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* Empty state */
.empty-state-v4 {
  padding: 100px 32px;
  text-align: center;
  color: var(--ink-muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  font-size: 18px;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ====== Responsive ====== */
@media (max-width: 1000px) {
  .feature-grid-v4 { grid-template-columns: repeat(2, 1fr); }
  .trust-stats { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .testimonials, .steps-grid { grid-template-columns: 1fr; }
  .feature-block { grid-template-columns: 1fr; gap: 48px; padding: 56px 0; }
  .feature-block.reverse .feature-block-text,
  .feature-block.reverse .feature-block-visual { order: initial; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .support-cats { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .app-bleed-inner { grid-template-columns: 1fr; gap: 48px; padding: 56px 32px; min-height: auto; text-align: center; }
  .app-bleed-features { justify-content: center; }
  .app-bleed-feature { justify-content: center; text-align: left; }
  .phone { width: 260px; height: 540px; transform: rotate(0); }
  .detail-hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .detail-hero-text { order: 1; }
  .detail-hero-mockup { order: 0; }
  .detail-tagline { margin-left: auto; margin-right: auto; }
  .detail-meta-v4 { justify-content: center; }
  .detail-hero-actions { justify-content: center; }
  .detail-hero-icon { margin-left: auto; margin-right: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 80px 0; }
  .lang-section, .cta-section { padding: 56px 32px; }
  .spec-sheet { padding: 32px; }
  .spec-row { grid-template-columns: 1fr; gap: 4px; }
  .contact-form { padding: 28px; }
}

@media (max-width: 600px) {
  .site-nav { display: none; }
  .feature-grid-v4 { grid-template-columns: 1fr; }
  .trust-stats { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .app-bleed-features { grid-template-columns: 1fr; }
  .header-cta { display: none; }
}

/* ========================================
   v5 — Micro-detail layer
   Tüm sayfalar geniş, metin içte ortalanır
   ======================================== */

/* Geniş layout - tüm iç sayfalar ana sayfa genişliğinde */
.page-wide {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.page-wide-section {
  padding: 80px 0;
}
/* Metin için inner container (uzun metin okunabilir kalsın) */
.prose-narrow {
  max-width: 720px;
  margin: 0 auto;
}
.prose-narrow.left { margin: 0; }

/* ====== Mikro detaylar ====== */

/* Animated counter number style */
.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s var(--ease);
}
.stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink-muted);
  box-shadow: var(--shadow);
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #14B8A6, #534AB7);
  opacity: 0.6;
}
.stat-card-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.stat-card-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #14B8A6, #534AB7);
  display: inline-block;
}
.stat-card-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 6px;
}
.stat-card-meta {
  font-size: 13px;
  color: var(--ink-muted);
}
.stat-card-trend {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #059669;
  background: #ECFDF5;
  padding: 3px 8px;
  border-radius: 999px;
  margin-left: 8px;
}

/* Section divider with center label */
.section-divider {
  display: flex; align-items: center;
  gap: 16px;
  margin: 64px 0;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

/* Decorative corner badge */
.corner-badge {
  position: absolute;
  top: 24px; right: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 6px;
  z-index: 5;
}
.corner-badge.live::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Animated underline link */
.fancy-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 500;
  position: relative;
  color: var(--ink);
}
.fancy-link::after {
  content: '';
  position: absolute;
  left: 0; right: 14px; bottom: -2px;
  height: 1px;
  background: currentColor;
  opacity: 0.3;
  transition: opacity 0.2s ease, right 0.3s var(--ease);
}
.fancy-link:hover::after { opacity: 1; right: 0; }

/* Card with gradient border */
.gradient-border-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  isolation: isolate;
}
.gradient-border-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, #14B8A6 0%, #534AB7 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

/* Status pill */
.status-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.status-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.status-pill.online { background: #ECFDF5; color: #059669; }
.status-pill.beta { background: #FEF3C7; color: #B45309; }
.status-pill.new { background: var(--gyn-bg); color: var(--gyn); }

/* Press-style logos strip */
.logos-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 56px;
  padding: 32px 0;
  opacity: 0.55;
}
.logo-mark {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-muted);
  display: inline-flex; align-items: center; gap: 8px;
}
.logo-mark::before {
  content: '';
  width: 18px; height: 18px;
  background: currentColor;
  border-radius: 4px;
  opacity: 0.4;
}

/* Inline icon for prose */
.inline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--obpro-bg2), var(--gyn-bg2));
  vertical-align: -5px;
  margin: 0 2px;
}
.inline-icon svg { width: 13px; height: 13px; }

/* Glow accent */
.glow-spot {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.glow-spot.obpro-spot { background: var(--obpro-glow); }
.glow-spot.gyn-spot { background: var(--gyn-glow); }

/* Hover-lift card with glow */
.lift-card {
  transition: all 0.3s var(--ease);
  position: relative;
}
.lift-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(20, 184, 166, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.lift-card:hover { transform: translateY(-4px); }
.lift-card:hover::after { opacity: 1; }

/* Big number display */
.big-stat {
  text-align: left;
  padding: 32px 0;
}
.big-stat-num {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.95;
  background: linear-gradient(135deg, #14B8A6 0%, #534AB7 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.big-stat-label {
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 500;
}
.big-stat-meta {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 4px;
}

/* Table-like info rows */
.info-rows {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
.info-row {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 24px;
  padding: 18px 24px;
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
  transition: background 0.15s ease;
}
.info-row:hover { background: var(--bg-soft); }
.info-row:last-child { border-bottom: none; }
.info-row .info-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.info-row .info-value {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.info-row .info-action {
  font-size: 12px;
  color: var(--ink-muted);
  display: inline-flex; align-items: center; gap: 4px;
}

/* Wide hero panel for inner pages */
.inner-hero {
  position: relative;
  border-radius: var(--radius-2xl);
  padding: 80px 64px;
  margin-bottom: 64px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, rgba(236, 253, 245, 0.6) 0%, rgba(238, 237, 254, 0.6) 100%);
  border: 1px solid rgba(255,255,255,0.6);
  text-align: center;
}
.inner-hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,0.5), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.inner-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 80px);
  line-height: 1;
  letter-spacing: -0.045em;
  margin: 0 0 22px;
}
.inner-hero p {
  font-size: 21px;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 auto 32px;
  line-height: 1.5;
}
.inner-hero-meta {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-muted);
  margin-top: 32px;
}
.inner-hero-meta-item {
  display: inline-flex; align-items: center; gap: 8px;
}

/* Two-col content + sidebar layout */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}
.two-col-main { min-width: 0; }
.two-col-sidebar {
  position: sticky;
  top: 80px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.two-col-sidebar h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  margin: 0 0 16px;
}
.sidebar-toc {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.sidebar-toc li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.15s ease;
  cursor: default;
}
.sidebar-toc li:last-child { border-bottom: none; }
.sidebar-toc li:hover { color: var(--ink); }

/* Pill row */
.pill-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 24px 0;
}
.pill-row .pill {
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 6px;
  transition: all 0.15s ease;
}
.pill-row .pill:hover { border-color: var(--ink-muted); color: var(--ink); }
.pill-row .pill svg { width: 12px; height: 12px; opacity: 0.6; }

/* Decorative micro-pattern background */
.dot-pattern {
  background-image: radial-gradient(rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 16px 16px;
}

/* Link card list */
.link-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.link-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}
.link-card:hover {
  transform: translateY(-2px);
  border-color: var(--ink-muted);
  box-shadow: var(--shadow);
}
.link-card-content { display: flex; align-items: center; gap: 14px; }
.link-card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--ink-soft);
}
.link-card-icon svg { width: 18px; height: 18px; }
.link-card-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 2px;
}
.link-card-text small {
  font-size: 12px;
  color: var(--ink-muted);
}
.link-card-arrow {
  color: var(--ink-faint);
  transition: transform 0.2s ease, color 0.2s ease;
}
.link-card:hover .link-card-arrow { transform: translateX(3px); color: var(--ink); }

@media (max-width: 1000px) {
  .two-col-layout { grid-template-columns: 1fr; gap: 32px; }
  .two-col-sidebar { position: static; }
  .info-row { grid-template-columns: 1fr; gap: 4px; }
  .link-cards { grid-template-columns: 1fr; }
  .inner-hero { padding: 56px 32px; }
}

/* ========================================
   v6 — Code/dev visual section
   ======================================== */

.dev-section {
  position: relative;
  padding: 80px 0;
}

/* Wrapper around the IDE mockup */
.dev-showcase {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.dev-showcase-text { padding: 16px 0; }

/* IDE/code window */
.code-window {
  background: #15141a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 30px 80px -15px rgba(20, 184, 166, 0.18),
    0 60px 120px -40px rgba(83, 74, 183, 0.18),
    0 0 0 1px rgba(255,255,255,0.06);
  font-family: 'SF Mono', 'JetBrains Mono', Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.65;
  position: relative;
}
.code-window::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.25) 0%, transparent 30%, transparent 70%, rgba(83, 74, 183, 0.25) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* Title bar with traffic lights */
.code-titlebar {
  background: #1c1b22;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.traffic-lights { display: flex; gap: 7px; }
.traffic-light {
  width: 12px; height: 12px; border-radius: 50%;
  display: inline-block;
}
.traffic-light.red { background: #ff5f57; }
.traffic-light.yellow { background: #febc2e; }
.traffic-light.green { background: #28c840; }
.code-tab {
  flex: 1;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-align: center;
  letter-spacing: 0.02em;
}
.code-tab strong { color: rgba(255,255,255,0.85); font-weight: 500; }
.code-status {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.code-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #28c840;
  box-shadow: 0 0 0 3px rgba(40, 200, 64, 0.18);
}

/* Body with line gutter */
.code-body {
  display: grid;
  grid-template-columns: auto 1fr;
  background: #15141a;
}
.code-gutter {
  padding: 18px 0 18px 16px;
  text-align: right;
  color: rgba(255,255,255,0.18);
  user-select: none;
  font-feature-settings: 'tnum' on;
  border-right: 1px solid rgba(255,255,255,0.04);
  min-width: 38px;
}
.code-gutter .ln { display: block; padding-right: 12px; }
.code-content {
  padding: 18px 20px 18px 16px;
  overflow-x: auto;
  color: rgba(255,255,255,0.86);
}
.code-content .l { display: block; min-height: 21.45px; }

/* Syntax colors */
.tk-key { color: #c084fc; }       /* keyword: import, struct, var, let, func */
.tk-type { color: #5eead4; }      /* type names */
.tk-fn { color: #93c5fd; }        /* function names */
.tk-str { color: #fda4af; }       /* strings */
.tk-num { color: #fbbf24; }       /* numbers */
.tk-com { color: rgba(255,255,255,0.32); font-style: italic; } /* comments */
.tk-prop { color: #f0abfc; }      /* property names */
.tk-attr { color: #fcd34d; }      /* attributes / decorators */
.tk-pun { color: rgba(255,255,255,0.55); }

/* File tree mini */
.file-tree {
  background: #1c1b22;
  border-radius: 12px;
  padding: 14px;
  font-family: 'SF Mono', monospace;
  font-size: 12px;
  line-height: 1.85;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.06);
}
.file-tree .ft-item { display: flex; align-items: center; gap: 8px; }
.file-tree .ft-folder { color: #5eead4; }
.file-tree .ft-active { color: #fff; background: rgba(20, 184, 166, 0.15); padding: 0 6px; margin: 0 -6px; border-radius: 4px; }
.file-tree .ft-icon { width: 14px; height: 14px; opacity: 0.65; }

/* Stats badges below code */
.code-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.code-stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}
.code-stat-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.code-stat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
}
.code-stat-meta {
  font-size: 11px;
  color: var(--ink-muted);
  margin-top: 4px;
}

/* Tech logos strip */
.tech-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.tech-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all 0.2s ease;
}
.tech-pill:hover { border-color: var(--ink-muted); transform: translateY(-1px); }
.tech-pill .tech-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Build metadata strip — under the code window */
.build-meta {
  background: #1c1b22;
  padding: 10px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: 'SF Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
}
.build-meta .bm-item { display: inline-flex; align-items: center; gap: 6px; }
.build-meta .bm-icon { width: 11px; height: 11px; opacity: 0.7; }
.build-meta .bm-key { color: rgba(255,255,255,0.4); }
.build-meta .bm-val { color: rgba(255,255,255,0.85); }

@media (max-width: 1000px) {
  .dev-showcase { grid-template-columns: 1fr; gap: 40px; }
  .code-stats { grid-template-columns: 1fr 1fr; }
  .code-content { font-size: 12px; }
}

/* ========================================
   v7 — Real screenshot integration
   ======================================== */

/* Real screenshot in hero/showcase - replaces fake phone mockup */
.real-shot {
  max-width: 320px;
  width: 100%;
  border-radius: 32px;
  box-shadow:
    0 30px 60px -15px rgba(0,0,0,0.35),
    0 60px 100px -30px rgba(0,0,0,0.25);
  transition: transform 0.6s var(--ease);
}
.real-shot.tilt { transform: rotate(-3deg); }
.app-bleed:hover .real-shot.tilt { transform: rotate(-1deg) translateY(-8px); }

.real-shot-no-frame {
  /* For App Store style images that already have phone frame baked in */
  max-width: 360px;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}

/* Screenshot gallery — App Store style horizontal scroll */
.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0;
  margin: 48px 0;
}
.screenshot-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1242 / 2688;
  background: #000;
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  cursor: pointer;
}
.screenshot-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.screenshot-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Featured screenshot — large single image */
.featured-screenshot {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  max-width: 360px;
  margin: 0 auto;
  box-shadow:
    0 30px 80px -15px rgba(20, 184, 166, 0.25),
    0 60px 120px -40px rgba(83, 74, 183, 0.18);
}
.featured-screenshot img {
  width: 100%;
  display: block;
}

/* Hero with real screenshot — split layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0 60px;
}
.hero-split-text { text-align: left; }
.hero-split-text h1 {
  text-align: left;
  margin-left: 0;
  max-width: 14ch;
}
.hero-split-text .hero-sub {
  margin-left: 0;
  text-align: left;
}
.hero-split-text .hero-actions { justify-content: flex-start; }
.hero-split-text .hero-meta { justify-content: flex-start; }

.hero-split-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-split-visual::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at center, rgba(20, 184, 166, 0.25), transparent 65%);
  filter: blur(40px);
  z-index: -1;
}

/* Screenshot grid title bar */
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.gallery-header h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.025em;
  margin: 0;
}
.gallery-header .gallery-meta {
  font-size: 13px;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Mobile responsive for real shots */
@media (max-width: 1000px) {
  .hero-split { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-split-text { text-align: center; }
  .hero-split-text h1 { margin-left: auto; margin-right: auto; text-align: center; }
  .hero-split-text .hero-sub { margin-left: auto; margin-right: auto; text-align: center; }
  .hero-split-text .hero-actions, .hero-split-text .hero-meta { justify-content: center; }
  .screenshot-gallery { grid-template-columns: 1fr 1fr; }
  .real-shot.tilt { transform: rotate(0); }
}

@media (max-width: 600px) {
  .screenshot-gallery { grid-template-columns: 1fr; max-width: 320px; margin: 32px auto; }
}

/* ========================================
   v8 — Studio hero, animated visual orchestra
   ======================================== */

/* Big studio hero - introduces who we are first */
.studio-hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  isolation: isolate;
}

.studio-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 600px;
}

.studio-hero-text { z-index: 2; position: relative; }

.studio-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.studio-eyebrow .studio-eyebrow-tag {
  background: linear-gradient(135deg, #14B8A6, #534AB7);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 999px;
}

.studio-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.045em;
  margin: 0 0 28px;
  max-width: 12ch;
  color: var(--ink);
}

.studio-hero p.lead {
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 0 40px;
}

.studio-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Inline metrics row under CTAs */
.studio-hero-metrics {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 480px;
}
.studio-metric {
  border-left: 2px solid var(--line);
  padding-left: 16px;
}
.studio-metric .num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #14B8A6, #534AB7);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.studio-metric .lab {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 6px;
  font-weight: 500;
}

/* ====== Visual orchestra (right side of studio hero) ====== */
.orchestra {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orchestra::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(20, 184, 166, 0.35), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(83, 74, 183, 0.28), transparent 55%);
  filter: blur(40px);
  z-index: -1;
  animation: orch-blur 12s ease-in-out infinite;
}
@keyframes orch-blur {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(20px, -10px); }
}

/* Floating cards around center */
.orch-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  z-index: 3;
  animation: orch-float 8s ease-in-out infinite;
}
.orch-card-icon {
  width: 32px; height: 32px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.orch-card-icon svg { width: 16px; height: 16px; }
.orch-card .label-tiny {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  font-weight: 600;
}

.orch-card.c-bishop {
  top: 8%; left: -4%;
  animation-delay: -1s;
}
.orch-card.c-bishop .orch-card-icon { background: var(--obpro-bg); color: var(--obpro); }

.orch-card.c-mtx {
  top: 28%; right: -2%;
  animation-delay: -3s;
}
.orch-card.c-mtx .orch-card-icon { background: var(--gyn-bg); color: var(--gyn); }

.orch-card.c-fetal {
  bottom: 18%; left: 0%;
  animation-delay: -5s;
}
.orch-card.c-fetal .orch-card-icon { background: linear-gradient(135deg, var(--obpro-bg), var(--gyn-bg)); color: var(--obpro); }

.orch-card.c-emergency {
  bottom: 4%; right: 4%;
  animation-delay: -2s;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(254, 226, 226, 0.85));
}
.orch-card.c-emergency .orch-card-icon { background: #FEE2E2; color: #DC2626; }

@keyframes orch-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Center stage: OBPro logo + GYNStat letter mark */
.orch-center {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.orch-app-icon {
  width: 160px; height: 160px;
  border-radius: 36px;
  box-shadow:
    0 30px 60px -15px rgba(0,0,0,0.25),
    0 60px 100px -30px rgba(0,0,0,0.18),
    0 0 0 1px rgba(0,0,0,0.04);
  position: absolute;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.orch-app-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.orch-app-icon.obpro {
  top: 20%; left: 0;
  transform: rotate(-8deg);
  animation: orch-tilt-1 10s ease-in-out infinite;
}
.orch-app-icon.gyn {
  bottom: 12%; right: 0;
  background: linear-gradient(135deg, #2A2466 0%, #3C3489 50%, #7F77DD 100%);
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
  transform: rotate(7deg);
  animation: orch-tilt-2 10s ease-in-out infinite;
}
.orch-app-icon.gyn:has(img) {
  background: transparent;
}
.orch-app-icon.gyn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.25), transparent 60%);
}
.orch-app-icon.gyn:has(img)::before {
  display: none;
}
.orch-app-icon.gyn span { position: relative; z-index: 2; }

@keyframes orch-tilt-1 {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-6deg) translateY(-8px); }
}
@keyframes orch-tilt-2 {
  0%, 100% { transform: rotate(7deg) translateY(0); }
  50% { transform: rotate(5deg) translateY(-8px); }
}

/* Connection lines between app icons - decorative */
.orch-connect {
  position: absolute;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Star-like specks around orchestra */
.orch-speck {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #14B8A6, #534AB7);
  opacity: 0.4;
  animation: speck-twinkle 3s ease-in-out infinite;
}
.orch-speck.s1 { top: 14%; left: 50%; animation-delay: 0s; }
.orch-speck.s2 { top: 30%; left: 38%; animation-delay: -1s; width: 6px; height: 6px; }
.orch-speck.s3 { bottom: 38%; right: 42%; animation-delay: -2s; }
.orch-speck.s4 { bottom: 22%; left: 36%; animation-delay: -1.5s; width: 5px; height: 5px; }
.orch-speck.s5 { top: 48%; right: 28%; animation-delay: -0.5s; }
@keyframes speck-twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.3); }
}

/* Marquee strip - moving values band */
.marquee-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 24px 0;
  overflow: hidden;
  position: relative;
}
.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-soft), transparent);
}
.marquee-strip::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-soft), transparent);
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
  align-items: center;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
  flex-shrink: 0;
}
.marquee-item.gradient {
  background: linear-gradient(135deg, #14B8A6, #534AB7);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.marquee-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #14B8A6, #534AB7);
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Capability cards on hero - 3 small ones */
.capability-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 80px;
}
.capability-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.capability-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.9);
  border-color: var(--ink-muted);
  box-shadow: var(--shadow-lg);
}
.capability-card .cap-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.capability-card .cap-icon svg { width: 18px; height: 18px; }
.capability-card.cap-apps .cap-icon { background: var(--obpro-bg); color: var(--obpro); }
.capability-card.cap-games .cap-icon { background: linear-gradient(135deg, #FEE2E2, #FEF3C7); color: #DC2626; }
.capability-card.cap-tools .cap-icon { background: var(--gyn-bg); color: var(--gyn); }
.capability-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.capability-card p {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.5;
  margin: 0;
}
.capability-card .cap-arrow {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--ink-faint);
  transition: transform 0.2s ease, color 0.2s ease;
}
.capability-card:hover .cap-arrow {
  transform: translate(3px, -3px);
  color: var(--ink);
}

/* "What we make" preview row - showcase preview */
.preview-row {
  padding: 80px 0 0;
}
.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* Hide old hero section styles that we're replacing */
.hero-v4 + section.trust-strip { display: none; }

@media (max-width: 1100px) {
  .studio-hero-grid { grid-template-columns: 1fr; gap: 48px; min-height: auto; }
  .orchestra { height: 480px; }
  .capability-row { grid-template-columns: 1fr; }
  .preview-grid { grid-template-columns: 1fr; }
  .studio-hero-metrics { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .studio-hero { padding: 60px 0 70px; }
  .orchestra { height: 380px; }
  .orch-center { width: 220px; height: 220px; }
  .orch-app-icon { width: 110px; height: 110px; border-radius: 26px; }
  .orch-app-icon.gyn { font-size: 38px; }
  .orch-card { font-size: 11px; padding: 10px 14px; }
  .orch-card-icon { width: 26px; height: 26px; }
  .orch-card-icon svg { width: 13px; height: 13px; }
  .studio-hero-metrics { grid-template-columns: 1fr 1fr 1fr; gap: 12px; max-width: 100%; }
  .studio-metric .num { font-size: 22px; }
  .marquee-item { font-size: 18px; }
}

/* ========================================
   v9 — STELLAXE game theme
   Dark space + neon cyan/yellow/magenta
   ======================================== */

:root {
  --stx-bg:        #050810;
  --stx-bg-2:      #0a1020;
  --stx-surface:   #0e1828;
  --stx-cyan:      #00e5ff;
  --stx-cyan-soft: #4dd5e5;
  --stx-yellow:    #ffd23f;
  --stx-magenta:   #ff2d8f;
  --stx-green:     #39ff8c;
  --stx-red:       #ff3d52;
  --stx-line:      rgba(0, 229, 255, 0.18);
  --stx-line-soft: rgba(0, 229, 255, 0.08);
  --stx-text:      #e8f4ff;
  --stx-text-soft: #94a8c0;
  --stx-text-mute: #5a6b85;
}

/* Body class for stellaxe pages */
.stx-page {
  background: var(--stx-bg);
  color: var(--stx-text);
}

.stx-page .bg-mesh { display: none; }

/* Stellaxe-specific space backdrop */
.stx-page::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(0, 229, 255, 0.08), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(255, 45, 143, 0.06), transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 210, 63, 0.04), transparent 60%);
  pointer-events: none;
}

/* Star field */
.stx-stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.stx-star {
  position: absolute;
  width: 2px; height: 2px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.8;
  animation: twinkle 4s ease-in-out infinite;
}
.stx-star.big { width: 3px; height: 3px; box-shadow: 0 0 8px #fff; }
.stx-star.cyan { background: var(--stx-cyan); box-shadow: 0 0 6px var(--stx-cyan); }
.stx-star.yellow { background: var(--stx-yellow); box-shadow: 0 0 6px var(--stx-yellow); }
.stx-star.magenta { background: var(--stx-magenta); box-shadow: 0 0 6px var(--stx-magenta); }
@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

/* Stellaxe header override - keep light when on stellaxe page */
.stx-page .site-header {
  background: rgba(5, 8, 16, 0.7);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}
.stx-page .brand { color: var(--stx-text); }
.stx-page .site-nav a { color: var(--stx-text-soft); }
.stx-page .site-nav a:hover {
  color: var(--stx-cyan);
  background: rgba(0, 229, 255, 0.08);
}
.stx-page .site-nav a.is-active {
  color: var(--stx-cyan);
  background: rgba(0, 229, 255, 0.12);
}
.stx-page .header-cta {
  background: var(--stx-cyan);
  color: var(--stx-bg);
}
.stx-page .header-cta:hover { background: #4dffff; color: var(--stx-bg); }

/* ====== Stellaxe HERO ====== */
.stx-hero {
  position: relative;
  padding: 80px 0 64px;
  overflow: hidden;
  border-bottom: 1px solid var(--stx-line);
}

.stx-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 540px;
}

.stx-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  border: 1px solid var(--stx-cyan);
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.05);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stx-cyan);
  margin-bottom: 28px;
  box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.06), inset 0 0 20px rgba(0, 229, 255, 0.08);
}
.stx-hero-tag .stx-tag-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--stx-cyan);
  box-shadow: 0 0 10px var(--stx-cyan);
  animation: pulse 1.4s ease-in-out infinite;
}

.stx-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
  color: var(--stx-text);
  text-transform: uppercase;
}
.stx-hero h1 .stx-glow {
  color: var(--stx-cyan);
  text-shadow:
    0 0 20px rgba(0, 229, 255, 0.55),
    0 0 40px rgba(0, 229, 255, 0.35);
}

.stx-hero-sub {
  font-size: clamp(17px, 1.7vw, 21px);
  color: var(--stx-text-soft);
  line-height: 1.55;
  max-width: 50ch;
  margin: 0 0 36px;
}

.stx-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.stx-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.18s var(--ease);
  font-family: var(--font-display);
  border: none;
  position: relative;
}
.stx-btn-primary {
  background: var(--stx-yellow);
  color: var(--stx-bg);
  box-shadow: 0 0 0 1px var(--stx-yellow), 0 0 30px rgba(255, 210, 63, 0.35);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.stx-btn-primary:hover {
  background: #ffe066;
  color: var(--stx-bg);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px #ffe066, 0 0 40px rgba(255, 210, 63, 0.5);
}
.stx-btn-ghost {
  background: transparent;
  color: var(--stx-cyan);
  border: 1px solid var(--stx-cyan);
  box-shadow: inset 0 0 20px rgba(0, 229, 255, 0.06), 0 0 0 1px rgba(0, 229, 255, 0.3);
}
.stx-btn-ghost:hover {
  background: rgba(0, 229, 255, 0.1);
  color: var(--stx-cyan);
}

/* Hero stats grid - resource bar style */
.stx-resource-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 56px;
  max-width: 480px;
}
.stx-resource {
  border: 1px solid var(--stx-line);
  border-radius: 6px;
  padding: 14px 16px;
  background: rgba(0, 229, 255, 0.03);
  position: relative;
}
.stx-resource::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 2px;
  background: var(--stx-cyan);
  opacity: 0.4;
}
.stx-resource.gem::before { background: var(--stx-magenta); }
.stx-resource.coin::before { background: var(--stx-yellow); }
.stx-resource.dust::before { background: var(--stx-cyan); }
.stx-resource-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.stx-resource.gem .stx-resource-label { color: var(--stx-magenta); }
.stx-resource.coin .stx-resource-label { color: var(--stx-yellow); }
.stx-resource.dust .stx-resource-label { color: var(--stx-cyan); }
.stx-resource-value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--stx-text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.stx-resource-icon {
  font-size: 18px;
  display: inline-block;
}
.stx-resource.gem .stx-resource-icon { color: var(--stx-magenta); }
.stx-resource.coin .stx-resource-icon { color: var(--stx-yellow); }
.stx-resource.dust .stx-resource-icon { color: var(--stx-cyan); }

/* Hero art - the spaceship illustration */
.stx-hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stx-hero-art-frame {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.25);
  box-shadow:
    0 0 0 1px rgba(0, 229, 255, 0.1),
    0 30px 80px -10px rgba(0, 229, 255, 0.25),
    0 60px 120px -30px rgba(255, 45, 143, 0.15);
}
.stx-hero-art-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), transparent 50%);
  pointer-events: none;
  z-index: 2;
}
.stx-hero-art-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Decorative corners */
.stx-hero-art-frame::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 6px;
  pointer-events: none;
  z-index: 3;
}
.stx-corner-tl, .stx-corner-tr, .stx-corner-bl, .stx-corner-br {
  position: absolute;
  width: 24px; height: 24px;
  border: 2px solid var(--stx-cyan);
  z-index: 4;
}
.stx-corner-tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.stx-corner-tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.stx-corner-bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.stx-corner-br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

/* Stat banner — wide section showing pilot stats */
.stx-stat-banner {
  padding: 48px 0;
  border-bottom: 1px solid var(--stx-line);
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.02), transparent);
}
.stx-stat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.stx-stat-cell {
  text-align: center;
  padding: 12px;
  border-right: 1px solid var(--stx-line-soft);
}
.stx-stat-cell:last-child { border-right: none; }
.stx-stat-cell-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stx-text-mute);
  margin-bottom: 8px;
}
.stx-stat-cell-value {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--stx-cyan);
  line-height: 1;
}
.stx-stat-cell-meta {
  font-size: 11px;
  color: var(--stx-text-mute);
  margin-top: 6px;
  font-weight: 500;
}

/* Section headings on stellaxe page */
.stx-section { padding: 100px 0; position: relative; }
.stx-section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stx-cyan);
  margin-bottom: 14px;
  padding-left: 14px;
  position: relative;
}
.stx-section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  background: var(--stx-cyan);
  box-shadow: 0 0 8px var(--stx-cyan);
}
.stx-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 0 0 22px;
  color: var(--stx-text);
  text-transform: uppercase;
}
.stx-section-title .stx-glow {
  color: var(--stx-yellow);
  text-shadow: 0 0 20px rgba(255, 210, 63, 0.5);
}
.stx-section-sub {
  font-size: 18px;
  color: var(--stx-text-soft);
  line-height: 1.55;
  max-width: 60ch;
  margin: 0 0 56px;
}

/* Feature blocks for stellaxe — alternating */
.stx-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--stx-line-soft);
}
.stx-feature:last-child { border-bottom: none; }
.stx-feature.reverse .stx-feature-text { order: 2; }
.stx-feature.reverse .stx-feature-visual { order: 1; }
.stx-feature-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 14px;
}
.stx-feature.cyan .stx-feature-eyebrow { color: var(--stx-cyan); }
.stx-feature.yellow .stx-feature-eyebrow { color: var(--stx-yellow); }
.stx-feature.magenta .stx-feature-eyebrow { color: var(--stx-magenta); }
.stx-feature.green .stx-feature-eyebrow { color: var(--stx-green); }
.stx-feature h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  text-transform: uppercase;
  color: var(--stx-text);
}
.stx-feature p {
  font-size: 17px;
  color: var(--stx-text-soft);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 50ch;
}
.stx-feature ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.stx-feature ul li {
  padding: 12px 0;
  font-size: 14.5px;
  color: var(--stx-text);
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--stx-line-soft);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.stx-feature ul li::before {
  content: '▸';
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
}
.stx-feature.cyan ul li::before { color: var(--stx-cyan); text-shadow: 0 0 6px var(--stx-cyan); }
.stx-feature.yellow ul li::before { color: var(--stx-yellow); text-shadow: 0 0 6px var(--stx-yellow); }
.stx-feature.magenta ul li::before { color: var(--stx-magenta); text-shadow: 0 0 6px var(--stx-magenta); }
.stx-feature.green ul li::before { color: var(--stx-green); text-shadow: 0 0 6px var(--stx-green); }

/* Phone screenshot in feature */
.stx-screenshot-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  max-width: 320px;
  margin: 0 auto;
  border: 1px solid rgba(0, 229, 255, 0.25);
  box-shadow:
    0 0 0 1px rgba(0, 229, 255, 0.1),
    0 30px 80px -15px rgba(0, 229, 255, 0.3);
}
.stx-screenshot-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 18px;
  pointer-events: none;
}
.stx-screenshot-frame img {
  width: 100%;
  display: block;
}

/* Gallery grid */
.stx-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stx-gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1242 / 2688;
  border: 1px solid var(--stx-line);
  background: var(--stx-bg-2);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.stx-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(0, 229, 255, 0.1);
  border-radius: 14px;
  pointer-events: none;
  transition: box-shadow 0.3s ease;
}
.stx-gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--stx-cyan);
  box-shadow: 0 20px 40px -10px rgba(0, 229, 255, 0.4);
}
.stx-gallery-item:hover::after {
  box-shadow: inset 0 0 0 1px rgba(0, 229, 255, 0.4);
}
.stx-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Stats showcase — like in-game profile */
.stx-archive {
  border: 1px solid var(--stx-line);
  border-radius: 12px;
  padding: 32px;
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.04), transparent);
  position: relative;
}
.stx-archive::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--stx-cyan), transparent);
}
.stx-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.stx-archive-cell {
  border: 1px solid var(--stx-line);
  border-radius: 6px;
  padding: 18px;
  position: relative;
  background: rgba(0, 229, 255, 0.02);
}
.stx-archive-cell.cyan { border-left: 2px solid var(--stx-cyan); }
.stx-archive-cell.yellow { border-left: 2px solid var(--stx-yellow); }
.stx-archive-cell.magenta { border-left: 2px solid var(--stx-magenta); }
.stx-archive-cell-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stx-text-mute);
  margin-bottom: 6px;
}
.stx-archive-cell-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--stx-text);
}

/* CTA bottom section */
.stx-cta {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stx-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0, 229, 255, 0.12), transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(255, 210, 63, 0.08), transparent 60%);
  pointer-events: none;
}
.stx-cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
  text-transform: uppercase;
  color: var(--stx-text);
  position: relative;
}
.stx-cta h2 .stx-glow {
  color: var(--stx-yellow);
  text-shadow: 0 0 30px rgba(255, 210, 63, 0.6);
}
.stx-cta p {
  font-size: 19px;
  color: var(--stx-text-soft);
  max-width: 50ch;
  margin: 0 auto 40px;
  position: relative;
}

/* Footer for stellaxe page */
.stx-page .site-footer {
  background: var(--stx-bg-2);
  border-top: 1px solid var(--stx-line);
  margin-top: 0;
}
.stx-page .footer-brand-v4 { color: var(--stx-text); }
.stx-page .footer-tagline { color: var(--stx-text-soft); }
.stx-page .footer-col h4 { color: var(--stx-text-mute); }
.stx-page .footer-col a { color: var(--stx-text-soft); }
.stx-page .footer-col a:hover { color: var(--stx-cyan); }
.stx-page .footer-bottom {
  border-top: 1px solid var(--stx-line);
  color: var(--stx-text-mute);
}

/* ====== Games card on home page (for the capability) ====== */
.games-preview-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--stx-bg);
  border: 1px solid rgba(0, 229, 255, 0.2);
  display: block;
  transition: all 0.3s var(--ease);
  isolation: isolate;
  min-height: 280px;
  padding: 32px;
}
.games-preview-card:hover {
  transform: translateY(-4px);
  border-color: var(--stx-cyan);
  box-shadow: 0 30px 60px -15px rgba(0, 229, 255, 0.35);
}
.games-preview-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/img/stellaxe/hero-art.png');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}
.games-preview-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 8, 16, 0.85) 0%, rgba(5, 8, 16, 0.4) 100%);
  z-index: 1;
}
.games-preview-card > * { position: relative; z-index: 2; }
.games-preview-card .gp-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 4px;
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.08);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stx-cyan);
  margin-bottom: 16px;
}
.games-preview-card .gp-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--stx-cyan);
  box-shadow: 0 0 6px var(--stx-cyan);
  animation: pulse 1.4s ease-in-out infinite;
}
.games-preview-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.games-preview-card p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 16px;
  max-width: 36ch;
}
.games-preview-card .gp-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stx-yellow);
}
.games-preview-card .gp-cta::after { content: '→'; transition: transform 0.2s ease; }
.games-preview-card:hover .gp-cta::after { transform: translateX(4px); }

/* HUD-style metric pulse */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@media (max-width: 1000px) {
  .stx-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .stx-hero-art { order: -1; }
  .stx-stat-grid { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .stx-stat-cell:nth-child(3) { border-right: none; }
  .stx-stat-cell:nth-child(n+4) { border-top: 1px solid var(--stx-line-soft); }
  .stx-feature { grid-template-columns: 1fr; gap: 48px; padding: 56px 0; }
  .stx-feature.reverse .stx-feature-text { order: 1; }
  .stx-feature.reverse .stx-feature-visual { order: 0; }
  .stx-gallery { grid-template-columns: 1fr 1fr; }
  .stx-archive-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .stx-stat-grid { grid-template-columns: 1fr 1fr; }
  .stx-stat-cell:nth-child(2) { border-right: none; }
  .stx-resource-bar { grid-template-columns: 1fr; }
  .stx-gallery { grid-template-columns: 1fr; }
}

/* ========================================
   v9.1 — Real logo + STELLAXE banners
   ======================================== */

/* Header logo */
.brand-logo {
  height: 28px;
  width: auto;
  display: block;
}
.brand {
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
}

/* Footer logo */
.footer-logo {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  opacity: 0.95;
}

/* ============================================
   STELLAXE big banner — for games.html
   ============================================ */

/* ============================================================
   STELLAXE MEGA BANNER — sinematik HUD-tactical premium tasarım
   ============================================================ */

.stx-mega-banner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 75% 50%, rgba(15, 25, 50, 0.9), transparent 70%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(80, 20, 80, 0.4), transparent 60%),
    linear-gradient(135deg, #050810 0%, #0a0e1f 50%, #050810 100%);
  min-height: 720px;
  display: block;
  isolation: isolate;
  border: 1px solid rgba(0, 229, 255, 0.18);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
}
.stx-mega-banner:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 255, 0.6);
  box-shadow:
    0 40px 100px -20px rgba(0, 229, 255, 0.35),
    0 80px 160px -40px rgba(255, 45, 143, 0.25),
    inset 0 0 60px rgba(0, 229, 255, 0.05);
}
.stx-mega-banner:hover .stx-mega-spacecraft {
  transform: translateY(calc(-50% - 22px)) rotate(6deg) scale(1.04);
}
.stx-mega-banner:hover .stx-mega-cta {
  background: #fff;
  color: #000;
  box-shadow: 0 0 50px rgba(255, 210, 63, 0.7), 0 0 100px rgba(0, 229, 255, 0.3);
}

/* ============= HUD CORNER MARKERS — tactical frame ============= */
.stx-hud-corner {
  position: absolute;
  width: 48px;
  height: 48px;
  z-index: 6;
  pointer-events: none;
}
.stx-hud-corner::before,
.stx-hud-corner::after {
  content: '';
  position: absolute;
  background: var(--stx-cyan);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}
.stx-hud-corner.tl { top: 20px; left: 20px; }
.stx-hud-corner.tl::before { top: 0; left: 0; width: 24px; height: 2px; }
.stx-hud-corner.tl::after { top: 0; left: 0; width: 2px; height: 24px; }
.stx-hud-corner.tr { top: 20px; right: 20px; }
.stx-hud-corner.tr::before { top: 0; right: 0; width: 24px; height: 2px; }
.stx-hud-corner.tr::after { top: 0; right: 0; width: 2px; height: 24px; }
.stx-hud-corner.bl { bottom: 20px; left: 20px; }
.stx-hud-corner.bl::before { bottom: 0; left: 0; width: 24px; height: 2px; }
.stx-hud-corner.bl::after { bottom: 0; left: 0; width: 2px; height: 24px; }
.stx-hud-corner.br { bottom: 20px; right: 20px; }
.stx-hud-corner.br::before { bottom: 0; right: 0; width: 24px; height: 2px; }
.stx-hud-corner.br::after { bottom: 0; right: 0; width: 2px; height: 24px; }

/* ============= SCANLINE SWEEP ============= */
.stx-mega-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 40%,
    rgba(0, 229, 255, 0.06) 50%,
    transparent 60%,
    transparent 100%
  );
  background-size: 100% 200%;
  animation: stx-scanline 8s linear infinite;
}
@keyframes stx-scanline {
  0% { background-position: 0% -100%; }
  100% { background-position: 0% 100%; }
}

/* ============= NOISE TEXTURE OVERLAY ============= */
.stx-mega-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ============= ANIMATED STARFIELD ============= */
.stx-mega-stars {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.stx-mega-stars span {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: twinkle 4s ease-in-out infinite;
}
.stx-mega-stars span.cyan { background: var(--stx-cyan); box-shadow: 0 0 8px var(--stx-cyan); }
.stx-mega-stars span.yellow { background: var(--stx-yellow); box-shadow: 0 0 8px var(--stx-yellow); }
.stx-mega-stars span.magenta { background: var(--stx-magenta); box-shadow: 0 0 8px var(--stx-magenta); }

/* ============= NEBULA / AURA — moving gradients ============= */
.stx-mega-aura {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 90%;
  height: 130%;
  background:
    radial-gradient(ellipse 50% 50% at 30% 50%, rgba(0, 229, 255, 0.4), transparent 60%),
    radial-gradient(ellipse 40% 40% at 70% 30%, rgba(255, 45, 143, 0.35), transparent 60%),
    radial-gradient(ellipse 35% 35% at 40% 70%, rgba(255, 210, 63, 0.2), transparent 60%);
  filter: blur(50px);
  z-index: 1;
  animation: stx-aura-pulse 10s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes stx-aura-pulse {
  0%, 100% { opacity: 0.7; transform: translateY(-50%) scale(1); }
  50% { opacity: 1; transform: translateY(-48%) scale(1.1); }
}

/* ============= PERSPECTIVE GRID FLOOR ============= */
.stx-mega-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.07) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, transparent 0%, transparent 55%, rgba(0,0,0,0.7) 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 55%, rgba(0,0,0,0.7) 100%);
  perspective: 800px;
  transform-origin: center bottom;
}

/* ============= DATA STREAM LINES (right side telemetry) ============= */
.stx-mega-data {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  z-index: 3;
  display: none;
}
.stx-mega-data::before,
.stx-mega-data::after {
  content: '';
  position: absolute;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--stx-cyan), transparent);
  animation: stx-data-flow 3s linear infinite;
}
.stx-mega-data::before { height: 30%; top: 0; }
.stx-mega-data::after { height: 30%; top: 50%; animation-delay: -1.5s; }
@keyframes stx-data-flow {
  0% { transform: translateY(-100%); opacity: 0; }
  20%, 80% { opacity: 1; }
  100% { transform: translateY(300%); opacity: 0; }
}

/* ============= SPACECRAFT — bigger, more dramatic ============= */
.stx-mega-spacecraft {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%) rotate(8deg);
  width: 60%;
  max-width: 720px;
  z-index: 3;
  filter:
    drop-shadow(0 40px 100px rgba(0, 229, 255, 0.45))
    drop-shadow(0 80px 160px rgba(255, 45, 143, 0.3))
    drop-shadow(0 0 40px rgba(255, 210, 63, 0.15));
  animation: stx-float 9s ease-in-out infinite;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.stx-mega-spacecraft img {
  width: 100%;
  display: block;
  border-radius: 20px;
}
@keyframes stx-float {
  0%, 100% { transform: translateY(-50%) rotate(8deg); }
  50% { transform: translateY(calc(-50% - 22px)) rotate(7deg); }
}

/* Concentric scanner ring around spacecraft */
.stx-mega-scanner {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, 0.15);
  z-index: 2;
  pointer-events: none;
}
.stx-mega-scanner::before,
.stx-mega-scanner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(0, 229, 255, 0.18);
}
.stx-mega-scanner::before {
  inset: -50px;
  animation: stx-rotate 60s linear infinite;
}
.stx-mega-scanner::after {
  inset: 60px;
  animation: stx-rotate 40s linear infinite reverse;
  border-style: dotted;
  border-color: rgba(255, 45, 143, 0.18);
}
@keyframes stx-rotate {
  to { transform: rotate(360deg); }
}

/* ============= CONTENT LAYER ============= */
.stx-mega-content {
  position: relative;
  z-index: 4;
  padding: 80px 64px 64px;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 720px;
}

/* ============= TOP STATUS BAR ============= */
.stx-mega-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}
.stx-mega-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px 9px 12px;
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 4px;
  background: rgba(0, 229, 255, 0.06);
  backdrop-filter: blur(10px);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stx-cyan);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.stx-mega-tag-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--stx-cyan);
  box-shadow: 0 0 12px var(--stx-cyan);
  animation: pulse 1.4s ease-in-out infinite;
}
.stx-mega-status {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stx-yellow);
  padding: 8px 16px;
  border: 1px solid rgba(255, 210, 63, 0.4);
  background: rgba(255, 210, 63, 0.04);
  backdrop-filter: blur(10px);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

/* ============= MIDDLE: TITLE BLOCK ============= */
.stx-mega-middle {
  padding: 56px 0 40px;
}

/* Pre-title coordinate readout */
.stx-mega-coord {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 229, 255, 0.5);
}
.stx-mega-coord span::before {
  content: '◆ ';
  color: var(--stx-cyan);
  margin-right: 4px;
}

.stx-mega-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(64px, 11vw, 148px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 24px;
  position: relative;
}
.stx-mega-title .glow {
  background: linear-gradient(180deg, #fff 0%, var(--stx-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 30px rgba(0, 229, 255, 0.4),
    0 0 60px rgba(0, 229, 255, 0.25);
  position: relative;
}
/* chromatic aberration on title */
.stx-mega-title .glow::before,
.stx-mega-title .glow::after {
  content: attr(data-text);
  position: absolute;
  left: 0; top: 0;
  -webkit-background-clip: text;
  background-clip: text;
  mix-blend-mode: screen;
  pointer-events: none;
}
.stx-mega-title .glow::before {
  color: rgba(255, 45, 143, 0.5);
  -webkit-text-fill-color: rgba(255, 45, 143, 0.5);
  transform: translate(-2px, 0);
  filter: blur(0.5px);
}
.stx-mega-title .glow::after {
  color: rgba(0, 229, 255, 0.5);
  -webkit-text-fill-color: rgba(0, 229, 255, 0.5);
  transform: translate(2px, 0);
  filter: blur(0.5px);
}

.stx-mega-tagline {
  font-size: clamp(18px, 1.7vw, 22px);
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
  max-width: 46ch;
  margin: 0 0 32px;
  font-family: var(--font-body);
}

/* ============= GENRE PILLS — tactical badges ============= */
.stx-mega-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.stx-mega-pill {
  padding: 7px 14px;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
}
.stx-mega-pill.cyan { color: var(--stx-cyan); border-color: rgba(0, 229, 255, 0.5); }
.stx-mega-pill.yellow { color: var(--stx-yellow); border-color: rgba(255, 210, 63, 0.5); }
.stx-mega-pill.magenta { color: var(--stx-magenta); border-color: rgba(255, 45, 143, 0.5); }
.stx-mega-pill.green { color: var(--stx-green); border-color: rgba(57, 255, 140, 0.5); }

/* ============= BOTTOM: STATS + CTA ============= */
.stx-mega-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 229, 255, 0.15);
  position: relative;
}
.stx-mega-stats::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 80px;
  height: 1px;
  background: var(--stx-cyan);
  box-shadow: 0 0 8px var(--stx-cyan);
}
.stx-mega-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stx-mega-stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}
.stx-mega-stat-num.cyan { color: var(--stx-cyan); text-shadow: 0 0 14px rgba(0, 229, 255, 0.5); }
.stx-mega-stat-num.yellow { color: var(--stx-yellow); text-shadow: 0 0 14px rgba(255, 210, 63, 0.5); }
.stx-mega-stat-num.magenta { color: var(--stx-magenta); text-shadow: 0 0 14px rgba(255, 45, 143, 0.5); }
.stx-mega-stat-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.stx-mega-cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  background: var(--stx-yellow);
  color: var(--stx-bg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 0;
  box-shadow:
    0 0 30px rgba(255, 210, 63, 0.45),
    0 0 60px rgba(255, 210, 63, 0.2);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: all 0.3s ease;
}
.stx-mega-cta::after {
  content: '→';
  font-weight: 700;
  font-size: 16px;
}

/* ============= STELLAXE on HOMEPAGE — full-bleed wrapper ============= */
.stx-home-section {
  padding: 80px 0 40px;
}

@media (max-width: 1100px) {
  .stx-mega-banner { min-height: 640px; }
  .stx-mega-spacecraft {
    width: 80%;
    right: -25%;
    opacity: 0.45;
  }
  .stx-mega-scanner { display: none; }
  .stx-mega-content { padding: 64px 40px 48px; min-height: 640px; }
  .stx-mega-stats { gap: 20px; }
  .stx-mega-cta { margin-left: 0; margin-top: 16px; width: 100%; justify-content: center; }
}
@media (max-width: 600px) {
  .stx-mega-banner { min-height: 560px; border-radius: 22px; }
  .stx-mega-spacecraft { display: none; }
  .stx-mega-content { padding: 48px 24px 32px; min-height: 560px; }
  .stx-mega-middle { padding: 32px 0 24px; }
  .stx-mega-coord { font-size: 9px; gap: 16px; }
  .stx-mega-stats { gap: 16px; }
  .stx-mega-stat { gap: 2px; }
  .stx-mega-stat-num { font-size: 20px; }
  .stx-hud-corner { width: 28px; height: 28px; }
  .stx-hud-corner.tl, .stx-hud-corner.tr { top: 14px; }
  .stx-hud-corner.bl, .stx-hud-corner.br { bottom: 14px; }
  .stx-hud-corner.tl, .stx-hud-corner.bl { left: 14px; }
  .stx-hud-corner.tr, .stx-hud-corner.br { right: 14px; }
  .stx-hud-corner::before, .stx-hud-corner::after { width: 16px !important; height: 16px !important; }
  .stx-hud-corner.tl::before, .stx-hud-corner.tr::before, .stx-hud-corner.bl::before, .stx-hud-corner.br::before { height: 2px !important; }
  .stx-hud-corner.tl::after, .stx-hud-corner.tr::after, .stx-hud-corner.bl::after, .stx-hud-corner.br::after { width: 2px !important; }
}
