:root {
  --bg: #0b1020;
  --bg-deep: #111936;
  --bg-dark: #0a0e1a;
  --teal: #00d1b2;
  --teal-soft: rgba(0, 209, 178, 0.15);
  --orange: #ff7a00;
  --orange-soft: rgba(255, 122, 0, 0.12);
  --lime: #b7ff3c;
  --text: #f5f7ff;
  --muted: #a8b3d1;
  --muted-2: rgba(168, 179, 209, 0.6);
  --border: #111936;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans KR", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 100% - 160px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: var(--bg);
  font-size: 20px;
}

.logo.small .logo-icon {
  width: 28px;
  height: 28px;
  font-size: 16px;
}

.logo-title {
  font-weight: 700;
  letter-spacing: 2px;
}

.logo-sub {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--teal);
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--teal);
  color: var(--bg);
}

.btn-ghost {
  border: 1px solid rgba(168, 179, 209, 0.25);
  color: var(--muted);
}

.btn-lg {
  padding: 18px 48px;
  font-size: 18px;
}

.btn-xl {
  padding: 22px 60px;
  font-size: 20px;
}

.icon {
  width: 20px;
  height: 20px;
}

.hero {
  background: radial-gradient(circle at top, #111936 0%, #0b1020 70%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 209, 178, 0.2);
  color: var(--teal);
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 1px;
  margin: 0 auto;
}

.badge .dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
}

.hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -2px;
  margin: 0;
  text-wrap: balance;
}

.hero-title.accent {
  color: var(--teal);
}

.hero-sub {
  font-size: 22px;
  color: var(--muted);
}

.hero-desc {
  font-size: 16px;
  color: rgba(168, 179, 209, 0.5);
}

.hero-aha {
  font-size: 17px;
  color: var(--muted);
}

.trust-strip {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #111936;
  padding: 12px 32px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
  margin: 0 auto;
}

.trust-strip .sep {
  color: rgba(168, 179, 209, 0.4);
}

.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.seat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 500;
  justify-content: center;
}

.seat .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--bg);
}

.section-deep {
  background: var(--bg-deep);
}

.section-cta {
  background: linear-gradient(180deg, #111936 0%, #0b1020 70%, rgba(0, 209, 178, 0.1) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.eyebrow {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
}

.eyebrow.orange {
  color: var(--orange);
}

.eyebrow.teal {
  color: var(--teal);
}

.eyebrow.lime {
  color: var(--lime);
}

.eyebrow.muted {
  color: var(--muted);
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  text-align: center;
  font-size: 42px;
  margin: 0 0 24px;
  text-wrap: balance;
}

.section-title.small {
  font-size: 36px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 48px;
}

.stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.card {
  background: #111936;
  padding: 28px 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.card p,
.desc,
.faq-a,
.hero-sub,
.hero-desc,
.hero-aha,
.section-sub {
  text-wrap: pretty;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card-solid {
  background: #0b1020;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card-outlined {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-accent {
  background: rgba(0, 209, 178, 0.08);
  border: 1px solid rgba(0, 209, 178, 0.15);
}

.card-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: rgba(255, 122, 0, 0.4);
  margin-bottom: 8px;
}

.card-num.teal {
  color: rgba(0, 209, 178, 0.4);
}

.card-num.orange {
  color: rgba(255, 122, 0, 0.4);
}

.card-num.lime {
  color: rgba(183, 255, 60, 0.4);
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 12px;
}

.tag.orange {
  background: rgba(255, 122, 0, 0.2);
  color: var(--orange);
}

.tag.teal {
  background: rgba(0, 209, 178, 0.2);
  color: var(--teal);
}

.grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 800px) {
  .stack-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}

.icon-circle.teal {
  background: rgba(0, 209, 178, 0.15);
  color: var(--teal);
}

.icon-circle.orange {
  background: rgba(255, 122, 0, 0.15);
  color: var(--orange);
}

.icon-circle.lime {
  background: rgba(183, 255, 60, 0.15);
  color: var(--lime);
}

.metric {
  font-family: "Space Grotesk", sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--teal);
}

.agitation {
  max-width: 900px;
  margin: 20px auto 0;
  padding: 40px 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 122, 0, 0.2);
  background: linear-gradient(180deg, rgba(255, 122, 0, 0.06), rgba(11, 16, 32, 0));
  text-align: center;
}

.agitation-strong {
  color: var(--orange);
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.agitation-ask {
  font-weight: 600;
}

.break-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.break-cta {
  display: flex;
  gap: 16px;
  align-items: center;
}

.seat-text {
  color: var(--orange);
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(0, 209, 178, 0.05);
  border-radius: 16px;
  overflow: hidden;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 24px 1fr;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 209, 178, 0.2);
  align-items: start;
}

.timeline-item.highlight {
  background: rgba(0, 209, 178, 0.08);
}

.timeline .time {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: var(--teal);
}

.timeline .time.orange {
  color: var(--orange);
}

.timeline .time.lime {
  color: var(--lime);
}

.timeline .time.muted {
  color: var(--muted);
}

.timeline .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 6px;
}

.timeline .dot.teal {
  background: var(--teal);
}

.timeline .dot.orange {
  background: var(--orange);
}

.timeline .dot.lime {
  background: var(--lime);
}

.timeline .dot.muted {
  background: rgba(168, 179, 209, 0.4);
}

.timeline .title {
  font-weight: 600;
  font-family: "Space Grotesk", sans-serif;
}

.timeline .desc {
  color: var(--muted);
  font-size: 13px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 209, 178, 0.2);
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
  margin-left: 8px;
}

.center {
  text-align: center;
}

.muted {
  color: var(--muted-2);
}

.muted-card {
  opacity: 0.8;
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 209, 178, 0.6), rgba(0, 209, 178, 0.1));
  border: 2px solid rgba(0, 209, 178, 0.3);
  margin: 0 auto;
}

.avatar.muted {
  background: #111936;
  border-color: rgba(168, 179, 209, 0.2);
}

.avatar.small {
  width: 40px;
  height: 40px;
}

img.avatar {
  object-fit: cover;
}

.role {
  color: var(--teal);
  font-size: 14px;
  margin-bottom: 8px;
}

.testimonial {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  margin: 32px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 32px 0;
}

.testimonial-card {
  display: grid;
  gap: 24px;
  background: #0b1020;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
}

.video-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 209, 178, 0.2);
  background: linear-gradient(135deg, rgba(0, 209, 178, 0.2), rgba(11, 16, 32, 0.8));
}

.video-frame.orange {
  border-color: rgba(255, 122, 0, 0.2);
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.2), rgba(11, 16, 32, 0.8));
}

.video-frame video {
  width: 100%;
  height: auto;
  display: block;
}

.video-thumb {
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 209, 178, 0.3), rgba(11, 16, 32, 0.8));
  height: 315px;
  position: relative;
  border: 1px solid rgba(0, 209, 178, 0.2);
}

.video-thumb.orange {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.3), rgba(11, 16, 32, 0.8));
  border-color: rgba(255, 122, 0, 0.2);
}

.play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 209, 178, 0.9);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-thumb.orange .play {
  background: rgba(255, 122, 0, 0.9);
}

.info-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--orange);
  font-weight: 600;
}

.label.teal {
  color: var(--teal);
}

.name-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.name-row .name {
  font-weight: 500;
}

.name-row .role {
  color: var(--muted);
  font-size: 12px;
}

.name-row .tag {
  font-size: 11px;
}

.quote {
  background: rgba(0, 209, 178, 0.1);
  border-radius: 16px;
  padding: 32px 40px;
  text-align: center;
}

.quote span {
  color: var(--muted);
  font-size: 14px;
}

.row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.stat-card {
  background: #111936;
  padding: 32px;
  text-align: center;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(168, 179, 209, 0.7);
}

.stat-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.stat-value.orange {
  color: var(--orange);
}

.stat-sub {
  font-size: 14px;
  color: var(--muted);
}

.includes {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
  color: rgba(168, 179, 209, 0.7);
  font-size: 13px;
}

.faq {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(168, 179, 209, 0.12);
}

.faq-item.highlight {
  background: #111936;
  padding: 24px 24px;
  margin-left: -24px;
  margin-right: -24px;
  border-radius: 12px;
  border: none;
}

.faq-q {
  font-weight: 600;
  margin-bottom: 8px;
}

.faq-a {
  color: var(--muted);
  font-size: 15px;
}

.guarantee {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.shield {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: rgba(0, 209, 178, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.cta-final {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.cta-divider {
  width: 60px;
  height: 3px;
  background: var(--teal);
}

.cta-final .accent {
  color: var(--teal);
}

.cta-final .question {
  font-weight: 600;
}

.pill.info {
  background: rgba(0, 209, 178, 0.15);
  color: var(--teal);
  padding: 10px 24px;
  font-size: 13px;
}

.footer {
  background: var(--bg-dark);
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 24px;
  color: rgba(168, 179, 209, 0.7);
  font-size: 13px;
}

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

.footer-bottom {
  color: rgba(168, 179, 209, 0.5);
  font-size: 12px;
}

.top-gap {
  margin-top: 80px;
}

/* LinkedIn icon hover */
.linkedin-link {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  vertical-align: middle;
}

.linkedin-link svg {
  transition: fill 0.2s ease, transform 0.2s ease;
}

.linkedin-link:hover svg {
  fill: #0a66c2;
  transform: scale(1.15);
}

/* ============================================================
   v3 ADDITIONS: Abstract Backgrounds, Floating Nav, Noise
   ============================================================ */

/* --- Abstract Gradient Blobs --- */

.has-blobs {
  position: relative;
  overflow: hidden;
}

.has-blobs > .container,
.has-blobs > .cta-final,
.has-blobs > .hero-inner {
  position: relative;
  z-index: 1;
}

.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
  will-change: transform;
}

/* Hero blobs */
.hero .blob-1 {
  width: 500px;
  height: 500px;
  top: -10%;
  right: -8%;
  background: radial-gradient(circle, rgba(0, 209, 178, 0.35) 0%, transparent 70%);
  opacity: 0.12;
  animation: blob-float-1 20s ease-in-out infinite;
}

.hero .blob-2 {
  width: 400px;
  height: 400px;
  bottom: -15%;
  left: -10%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.4) 0%, transparent 70%);
  opacity: 0.08;
  animation: blob-float-2 25s ease-in-out infinite;
}

.hero .blob-3 {
  width: 300px;
  height: 300px;
  top: 30%;
  left: 5%;
  background: radial-gradient(circle, rgba(183, 255, 60, 0.3) 0%, transparent 70%);
  opacity: 0.05;
  animation: blob-float-3 18s ease-in-out infinite;
}

/* Philosophy blobs */
#philosophy .blob-1 {
  width: 450px;
  height: 450px;
  top: -15%;
  left: -10%;
  background: radial-gradient(circle, rgba(0, 209, 178, 0.35) 0%, transparent 70%);
  opacity: 0.10;
  animation: blob-float-2 22s ease-in-out infinite;
}

#philosophy .blob-2 {
  width: 350px;
  height: 350px;
  bottom: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(183, 255, 60, 0.3) 0%, transparent 70%);
  opacity: 0.06;
  animation: blob-float-1 19s ease-in-out infinite;
}

/* CTA blobs */
.section-cta .blob-1 {
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 209, 178, 0.4) 0%, transparent 60%);
  opacity: 0.15;
  animation: blob-pulse 15s ease-in-out infinite;
}

.section-cta .blob-2 {
  width: 400px;
  height: 400px;
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.4) 0%, transparent 70%);
  opacity: 0.08;
  animation: blob-float-3 20s ease-in-out infinite;
}

/* Mentors / Testimonials blobs */
#mentors .blob-1 {
  width: 400px;
  height: 400px;
  top: 20%;
  right: -8%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.35) 0%, transparent 70%);
  opacity: 0.08;
  animation: blob-float-1 23s ease-in-out infinite;
}

/* Walkaway section blobs */
#walkaway .blob-1 {
  width: 450px;
  height: 450px;
  top: 10%;
  left: -12%;
  background: radial-gradient(circle, rgba(0, 209, 178, 0.3) 0%, transparent 70%);
  opacity: 0.07;
  animation: blob-float-2 21s ease-in-out infinite;
}

/* Blob animations — organic floating motion */
@keyframes blob-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -25px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

@keyframes blob-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-25px, 20px) scale(1.03); }
  50% { transform: translate(15px, -30px) scale(0.97); }
  75% { transform: translate(20px, 10px) scale(1.02); }
}

@keyframes blob-float-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-15px, -20px) scale(1.06); }
}

@keyframes blob-pulse {
  0%, 100% { opacity: 0.15; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.22; transform: translate(-50%, -50%) scale(1.1); }
}

/* --- Noise / Grain Texture Overlay --- */

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* --- Floating Pill Navigation --- */

.floating-nav {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 100;
  display: flex;
  gap: 4px;
  padding: 6px;
  background: rgba(11, 16, 32, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  opacity: 0;
}

.floating-nav.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.fnav-link {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  font-family: "IBM Plex Sans KR", sans-serif;
}

.fnav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.fnav-cta {
  background: var(--teal);
  color: var(--bg) !important;
  font-weight: 700;
}

.fnav-cta:hover {
  background: #00e8c6;
  color: var(--bg) !important;
}

/* --- Responsive (existing v2 + v3 additions) --- */

@media (max-width: 1100px) {
  .container {
    width: min(100% - 64px, 1000px);
  }

  .hero-title {
    font-size: 56px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 800px) {
  .nav {
    display: none;
  }

  .container {
    width: min(100% - 48px, 900px);
  }

  .hero-title {
    font-size: 52px;
  }

  .section-title {
    font-size: 40px;
  }

  .trust-strip {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
    padding: 10px 20px;
    font-size: 11px;
  }

  .trust-strip .sep {
    display: none;
  }

  .includes {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
  }

  .name-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .container {
    width: min(100% - 32px, 900px);
  }

  .timeline-item {
    grid-template-columns: 56px 16px 1fr;
    gap: 8px;
    padding: 16px 16px;
  }

  .timeline .time {
    font-size: 13px;
  }

  .timeline .desc {
    font-size: 12px;
  }

  .icon-circle {
    width: 36px;
    height: 36px;
    font-size: 16px;
    margin-bottom: 8px;
  }

  .agitation {
    padding: 24px 20px;
  }

  .agitation-strong {
    font-size: 24px;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 64px 0 48px;
  }

  .stat-card {
    padding: 20px 16px;
  }

  /* v3: Floating nav responsive */
  .floating-nav {
    bottom: 16px;
    gap: 2px;
    padding: 5px;
  }

  .fnav-link {
    padding: 8px 14px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 44px;
  }

  .section-title {
    font-size: 36px;
  }

  /* v3: Compact floating nav on small screens */
  .floating-nav {
    bottom: 12px;
    gap: 2px;
    padding: 4px;
  }

  .fnav-link {
    padding: 7px 10px;
    font-size: 11px;
  }

  /* Hide blob backgrounds on very small screens for performance */
  .blob {
    display: none;
  }
}

/* --- Accessibility: Reduced Motion --- */

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

  .floating-nav {
    transition: none;
  }
}
