/* ═══════════════════════════════════════════
   HOMEPAGE SPECIFIC STYLES
   CygnusAlpha Production Theme
   ═══════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
  /* min-height: 100vh; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 5vw 20px;
  position: relative;
  overflow: hidden;
}

#constellation {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(92, 98, 229, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(246, 231, 96, 0.03) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s var(--ease) 0.2s forwards;
}

.hero-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--primary-glow);
}

.hero h1 {
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 700;
  max-width: 1000px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s var(--ease) 0.35s forwards;
}

.hero h1 .accent {
  display: inline;
  background: linear-gradient(135deg, var(--accent), #5eecc7, var(--accent));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 4s linear infinite;
  font-style: italic;
}

@keyframes shimmerText {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s var(--ease) 0.5s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s var(--ease) 0.6s forwards;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px var(--primary-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 400;
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: var(--bg-card);
}

.btn-ghost .arrow {
  transition: transform 0.3s var(--ease);
}

.btn-ghost:hover .arrow {
  transform: translateX(4px);
}

.hero-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s var(--ease) 0.75s forwards;
}

.stat-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 28px;
  min-width: 180px;
  transition: all 0.4s var(--ease);
}

.stat-card:hover {
  border-color: var(--primary-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════
   MARQUEE TICKER
   ═══════════════════════════════════════════ */
.marquee-wrapper {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(90deg, transparent, var(--bg));
}

.marquee-track {
  display: flex;
  gap: 0;
  width: fit-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.marquee-item::after {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════════
   SHARED SECTION STYLES
   ═══════════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 28px;
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

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

.reveal-d1 {
  transition-delay: 0.1s;
}
.reveal-d2 {
  transition-delay: 0.2s;
}
.reveal-d3 {
  transition-delay: 0.3s;
}
.reveal-d4 {
  transition-delay: 0.4s;
}

/* ═══════════════════════════════════════════
   PROBLEM SECTION
   ═══════════════════════════════════════════ */
.problem {
  background: var(--bg);
}

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

.problem-left {
  position: sticky;
  top: 120px;
}

.problem-left h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 24px;
}

.problem-left h2 em {
  color: var(--accent);
  font-style: normal;
}

.problem-left > p {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 16px;
}

.problem-left > p:last-of-type {
  color: var(--text);
  font-weight: 400;
}

.problem-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(
    135deg,
    transparent,
    var(--primary-border),
    transparent
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  border-color: transparent;
}

.flow-step {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.flow-step:last-child {
  border-bottom: none;
}

.flow-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.flow-icon.ok {
  background: var(--green-dim);
  border: 1px solid rgba(52, 211, 153, 0.15);
}

.flow-icon.warn {
  background: rgba(251, 191, 36, 0.06);
  border: 1px solid rgba(251, 191, 36, 0.15);
}

.flow-icon.bad {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.12);
}

.flow-step h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.flow-step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   PULLQUOTE
   ═══════════════════════════════════════════ */
.pullquote-section {
  padding: 64px 0;
  display: flex;
  justify-content: center;
}

.pullquote {
  max-width: 900px;
  position: relative;
  padding: 0 5vw 0 calc(5vw + 40px);
  border-left: 3px solid var(--primary);
}

.pullquote::before {
  content: '201C';
  font-family: 'Space Grotesk', sans-serif;
  font-size: 100px;
  line-height: 0.6;
  color: var(--primary-dim);
  position: absolute;
  top: -10px;
  left: 5vw;
  pointer-events: none;
}

.pullquote blockquote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 500;
  line-height: 1.45;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.pullquote blockquote em {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
  font-weight: 700;
}

/* ═══════════════════════════════════════════
   SOLUTION PILLARS
   ═══════════════════════════════════════════ */
.solution {
  background: var(--bg);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.solution-header {
  position: sticky;
  top: 120px;
}

.solution-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 20px;
}

.solution-header p {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.8;
}

.not-labels {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.not-label {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  text-decoration: line-through;
  text-decoration-color: var(--text-dim);
}

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

.pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 36px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}

.pillar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s;
}

.pillar:hover::after {
  opacity: 1;
}

.pillar:hover {
  transform: translateX(4px);
  border-color: var(--primary-border);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.3),
    0 0 0 1px var(--primary-border);
}

.pillar-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pillar-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
}

.pillar-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-dim);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

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

.pillar p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   HOW WE WORK
   ═══════════════════════════════════════════ */
.how-section {
  background: linear-gradient(
    180deg,
    var(--bg) 0%,
    rgba(92, 98, 229, 0.02) 50%,
    var(--bg) 100%
  );
}

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

.how-left h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 20px;
}

.how-left > p {
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 48px;
}

.phases {
  display: flex;
  flex-direction: column;
  position: relative;
}

.phases::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 36px;
  bottom: 36px;
  width: 1px;
  background: linear-gradient(
    180deg,
    var(--primary),
    var(--primary-border),
    transparent
  );
}

.phase {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  position: relative;
}

.phase-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  transition: all 0.3s;
}

.phase-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.phase:hover .phase-dot {
  background: var(--primary);
  box-shadow: 0 0 20px var(--primary-glow);
}

.phase:hover .phase-dot::after {
  background: #fff;
}

.phase h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.phase p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

.how-right {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  position: sticky;
  top: 120px;
}

.how-right-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
  display: block;
}

.how-right h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.how-right > p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 32px;
}

.principle-item {
  padding: 16px 0;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
  font-weight: 300;
  transition: color 0.3s;
}

.principle-item:hover {
  color: var(--text);
}

.principle-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════
   PROOF SECTION
   ═══════════════════════════════════════════ */
.proof-section {
  background: var(--bg);
}

.proof-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 32px;
}

.proof-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 16px;
}

.proof-header p {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.proof-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.4s var(--ease);
  text-align: center;
}

.proof-card:hover {
  border-color: var(--primary-border);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.proof-card .big-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.proof-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.proof-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

.cert-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  flex-wrap: wrap;
}

.cert-item {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cert-item::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  font-size: 12px;
}

.cert-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
}

/* ═══════════════════════════════════════════
   FOUNDER SECTION
   ═══════════════════════════════════════════ */
.founder-section {
  background: linear-gradient(
    180deg,
    var(--bg) 0%,
    rgba(92, 98, 229, 0.02) 50%,
    var(--bg) 100%
  );
}

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

.founder-left h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 16px;
}

.founder-left p {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
}

.founder-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.founder-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
}

.founder-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-dim);
  border: 1px solid var(--primary-border);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
}

.founder-card blockquote {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  font-weight: 300;
  margin-bottom: 36px;
  font-style: italic;
}

.founder-card blockquote strong {
  color: var(--accent);
  font-weight: 500;
  font-style: normal;
}

.founder-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.founder-name h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.founder-name p {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 300;
}

.linkedin-link {
  font-size: 13px;
  color: var(--primary);
  border: 1px solid var(--primary-border);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  transition: all 0.3s var(--ease);
  font-weight: 500;
}

.linkedin-link:hover {
  background: var(--primary-dim);
  box-shadow: 0 4px 16px var(--primary-glow);
}

/* ═══════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════ */
.cta-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 5vw;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(92, 98, 229, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.cta-section h2 {
  font-size: clamp(36px, 5.5vw, 68px);
  margin-bottom: 24px;
  line-height: 1.15;
}

.cta-section h2 em {
  color: var(--accent);
  font-style: normal;
}

.cta-section > .cta-inner > p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 48px;
  font-weight: 300;
  line-height: 1.7;
}

.btn-large {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 600;
  padding: 20px 48px;
  border-radius: var(--radius-pill);
  transition: all 0.3s var(--ease);
  position: relative;
}

.btn-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--accent-glow);
}

.cta-fine {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE - TABLET
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .how-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .how-right {
    position: static;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .problem-left {
    position: static;
  }

  .solution-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .solution-header {
    position: static;
  }

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

/* ═══════════════════════════════════════════
   RESPONSIVE - MOBILE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero {
    padding: 140px 5vw 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 56px);
  }

  .hero-actions {
    margin-bottom: 60px;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .proof-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pullquote {
    padding-left: calc(5vw + 24px);
  }

  .pullquote blockquote {
    font-size: clamp(18px, 5vw, 24px);
  }

  .how-right {
    padding: 32px 24px;
  }

  .founder-card {
    padding: 32px 24px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 120px 5vw 48px;
  }

  .hero-label {
    font-size: 11px;
    margin-bottom: 32px;
  }

  .hero h1 {
    font-size: clamp(28px, 9vw, 36px);
    margin-bottom: 24px;
  }

  .hero-sub {
    font-size: 16px;
    margin-bottom: 36px;
  }

  .hero-actions {
    margin-bottom: 48px;
    gap: 12px;
  }

  .btn-primary {
    padding: 14px 28px;
    font-size: 14px;
  }

  .btn-ghost {
    padding: 14px 20px;
    font-size: 14px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .stat-card {
    min-width: auto;
    width: 100%;
    padding: 18px 24px;
  }

  .stat-num {
    font-size: 32px;
  }

  .stat-label {
    font-size: 12px;
  }

  .marquee-item {
    font-size: 12px;
    padding: 0 20px;
  }

  .problem-left h2,
  .solution-header h2,
  .how-left h2,
  .founder-left h2 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .founder-card {
    padding: 24px 20px;
  }

  .founder-card blockquote {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .founder-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .cert-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
  }

  .cert-divider {
    width: 100%;
    height: 1px;
  }

  .cert-item {
    font-size: 12px;
  }

  .pillar {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 20px;
  }

  .pillar-left {
    flex-direction: row;
    gap: 16px;
  }

  .pillar h3 {
    font-size: 16px;
  }

  .pillar p {
    font-size: 13px;
  }

  .pullquote-section {
    padding: 40px 0;
  }

  .pullquote {
    padding-left: calc(5vw + 20px);
  }

  .pullquote blockquote {
    font-size: clamp(16px, 5vw, 20px);
  }

  .cta-section {
    padding: 60px 5vw;
  }

  .cta-section h2 {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 20px;
  }

  .cta-section > .cta-inner > p {
    font-size: 16px;
    margin-bottom: 36px;
  }

  .btn-large {
    font-size: 15px;
    padding: 16px 36px;
    width: 100%;
  }

  .cta-fine {
    font-size: 12px;
  }

  .phase h4 {
    font-size: 15px;
  }

  .phase p {
    font-size: 13px;
  }

  .how-right h3 {
    font-size: 22px;
  }

  .how-right > p {
    font-size: 14px;
  }

  .principle-item {
    font-size: 13px;
  }

  .proof-card {
    padding: 24px 20px;
  }

  .proof-card .big-num {
    font-size: 40px;
  }

  .proof-card h4 {
    font-size: 15px;
  }

  .proof-card p {
    font-size: 13px;
  }
}