/* Landing-specific body override */
body { overflow-x: hidden; }

/* ===== 3D CUBE CANVAS (fixed full-screen background) ===== */
#cube-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 1;
  pointer-events: none; /* events handled via window listeners in cubes.js */
}

/* All sections stack above the canvas */
.hero-section, .stats-bar, .features, .how, .examples,
.testimonials, .faq, .login-section, .footer {
  position: relative;
  z-index: 2;
}
.nav         { z-index: 100 !important; }
.start-popup { z-index: 200 !important; }

/* Semi-transparent backgrounds applied at the source rules below */

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #3b82f6);
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

.section-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 56px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-logo .logo-text { font-size: 1.35rem; font-weight: 800; color: var(--accent); letter-spacing: -0.5px; }

.nav-links { display: flex; gap: 28px; }
.nav-links a { text-decoration: none; font-size: .88rem; font-weight: 500; color: var(--text-muted); transition: color .15s; }
.nav-links a:hover { color: var(--accent); }

.btn-nav {
  padding: 8px 20px;
  border: 1.5px solid var(--accent);
  border-radius: 20px;
  color: var(--accent);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  transition: all .18s;
}
.btn-nav:hover { background: var(--accent); color: #fff; }

/* ===== HERO SECTION WRAPPER ===== */
.hero-section {
  background-color: rgba(255,255,255,0.55);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hb-a {
  width: 750px; height: 750px;
  background: radial-gradient(circle, rgba(10,102,194,0.18) 0%, rgba(10,102,194,0.08) 40%, transparent 68%);
  top: -180px; right: -80px;
  animation: blobDrift 14s ease-in-out infinite;
}
.hb-b {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(59,130,246,0.14) 0%, rgba(59,130,246,0.06) 40%, transparent 68%);
  bottom: -120px; left: -60px;
  animation: blobDrift 18s ease-in-out infinite reverse;
}
@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(50px, -40px) scale(1.07); }
  66%       { transform: translate(-30px, 25px) scale(0.94); }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 96px 40px 80px;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 580px; }

.hero-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 4px 12px;
  background: var(--accent-light);
  border-radius: 4px;
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 20px;
}

.accent-text {
  background: linear-gradient(100deg, #0a66c2 0%, #2563eb 55%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== HERO LOAD ANIMATIONS ===== */
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-eyebrow          { animation: heroSlideUp .55s ease-out backwards .05s; }
.hero-content h1       { animation: heroSlideUp .65s ease-out backwards .2s; }
.hero-sub              { animation: heroSlideUp .65s ease-out backwards .38s; }
.hero-ctas             { animation: heroSlideUp .65s ease-out backwards .54s; }
.hero-social-proof     { animation: heroSlideUp .55s ease-out backwards .68s; }
.hero-visual           { animation: heroSlideRight .75s ease-out backwards .3s; }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }

/* Hero CTA buttons — link buttons, larger than app .btn */
.btn-primary {
  padding: 13px 26px;
  background: var(--accent);
  color: #fff;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  transition: all .18s;
  border: 2px solid var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-1px); }

.btn-ghost {
  padding: 13px 26px;
  border: 1.5px solid var(--border2);
  color: var(--text);
  border-radius: 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  transition: all .18s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }

.hero-social-proof { font-size: .82rem; color: var(--text-dim); }
.hero-social-proof strong { color: var(--text-muted); }


/* ===== SCROLL REVEAL ===== */
.reveal-hidden {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-hidden.revealed {
  opacity: 1;
  transform: translateY(0);
}


/* ===== STATS BAR ===== */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 40px;
  background: var(--accent);
  flex-wrap: wrap;
  gap: 0;
}
.stat { display: flex; flex-direction: column; align-items: center; padding: 0 44px; }
.stat strong { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.stat span { font-size: .78rem; color: rgba(255,255,255,.75); margin-top: 4px; }
.stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,.25); }

/* ===== FEATURES ===== */
.features { padding: 88px 0; background: #ffffff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features .section-wrap { text-align: center; }

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.features h2, .how h2, .examples h2, .testimonials h2, .faq h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.6px;
  color: var(--text);
  margin-bottom: 12px;
}
.section-sub { color: var(--text-muted); font-size: .95rem; margin-bottom: 52px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  text-align: left;
  margin-top: 52px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .18s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.feature-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

/* ===== HOW IT WORKS ===== */
.how { padding: 88px 0; background: rgba(255, 255, 255, 0.55); }
.how .section-wrap { text-align: center; }
.how h2 { margin-bottom: 52px; }

.steps { display: flex; align-items: flex-start; justify-content: center; gap: 20px; flex-wrap: wrap; }

.step-card {
  flex: 1; min-width: 210px; max-width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .18s;
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.step-num { font-size: .7rem; font-weight: 700; letter-spacing: .08em; color: var(--accent); margin-bottom: 8px; text-transform: uppercase; }
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 7px; color: var(--text); }
.step-card p { font-size: .86rem; color: var(--text-muted); line-height: 1.6; }
.step-arrow { flex-shrink: 0; }

/* ===== EXAMPLES ===== */
.examples { padding: 88px 0; background: #ffffff; border-top: 1px solid var(--border); }
.examples .section-wrap { text-align: center; }
.examples-sub { color: var(--text-muted); font-size: .9rem; margin-top: -4px; margin-bottom: 48px; }

/* ── Source card ── */
.ex-flow { max-width: 900px; margin: 0 auto; text-align: left; }

.ex-source {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 0;
}
.ex-source-label {
  display: flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px;
}
.ex-source-label .lucide { width: 13px; height: 13px; stroke: var(--text-dim); }
.ex-source-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.ex-source-meta  { font-size: .8rem; color: var(--text-dim); }
.ex-source-arrow {
  display: flex; align-items: center; gap: 6px;
  margin-top: 16px; padding-top: 14px;
  border-top: 1px dashed var(--border);
  font-size: .78rem; font-weight: 600; color: var(--accent);
}
.ex-source-arrow .lucide { width: 14px; height: 14px; stroke: var(--accent); }

/* ── Output cards grid ── */
.ex-outputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.ex-out {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .18s, box-shadow .18s;
}
.ex-out:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.ex-out-x    { border-left: 3px solid #1d2226; }
.ex-out-li   { border-left: 3px solid #0a66c2; }
.ex-out-ig   { border-left: 3px solid #e1306c; }
.ex-out-blog { border-left: 3px solid #057642; }

.ex-out-platform {
  padding: 10px 14px 8px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 7px;
}
.ex-out-platform .brand-icon { width: 15px; height: 15px; }
.ex-out-platform-name { font-size: .72rem; font-weight: 700; color: var(--text-muted); letter-spacing: .04em; text-transform: uppercase; }

.ex-out-body { padding: 14px; display: flex; flex-direction: column; gap: 6px; }
.ex-out-body p { font-size: .84rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.ex-out-body strong { color: var(--text); }
.ex-tags { color: var(--accent) !important; font-size: .76rem !important; }

.ex-blog-h { font-weight: 700; color: var(--text) !important; font-size: .9rem !important; line-height: 1.4 !important; }
.ex-blog-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 6px; }
.ex-blog-chips span {
  padding: 2px 8px; border-radius: 3px;
  background: #e6f4ea; color: #057642;
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 88px 0; background: rgba(243,242,239,0.72); border-top: 1px solid var(--border); }
.testimonials .section-wrap { text-align: center; }
.testimonials h2 { margin-bottom: 48px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  text-align: left;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .2s, transform .18s;
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.testi-featured {
  border-color: var(--accent);
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-md);
}

.testi-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }
.testi-card > p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; flex: 1; font-style: italic; }

.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .8rem; color: #fff; flex-shrink: 0;
}
.testi-author strong { font-size: .9rem; display: block; color: var(--text); }
.testi-author span { font-size: .78rem; color: var(--text-dim); }

/* ===== FAQ ===== */
.faq { padding: 88px 0; background: #ffffff; border-top: 1px solid var(--border); }

.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.faq h2 { margin-bottom: 10px; }
.faq .section-sub { margin-bottom: 0; }

.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color .15s;
}
.faq-q:hover { color: var(--accent); }
.faq-q[aria-expanded="true"] { color: var(--accent); }
.faq-icon { font-size: 1.3rem; color: var(--text-dim); flex-shrink: 0; font-weight: 300; transition: transform .2s; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: var(--accent); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-a.open { max-height: 200px; padding-bottom: 16px; }
.faq-a p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }

/* ===== LOGIN ===== */
.login-section {
  padding: 88px 40px;
  background: rgba(243,242,239,0.90);
  border-top: 1px solid var(--border);
}

.login-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.login-info h2 { font-size: 1.9rem; font-weight: 800; letter-spacing: -.5px; margin-bottom: 12px; color: var(--text); }
.login-info > p { font-size: .95rem; color: var(--text-muted); margin-bottom: 28px; }
.login-perks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.login-perks li { font-size: .9rem; color: var(--text-muted); }
.login-perks li::before { content: ''; }

.login-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
}
.login-header { margin-bottom: 24px; }
.login-header h2 { font-size: 1.2rem; font-weight: 700; color: var(--text); }

/* Auth tabs */
.auth-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--border);
}
.auth-tab {
  flex: 1;
  background: none;
  border: none;
  padding: 10px 0;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .18s, border-color .18s;
}
.auth-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.auth-tab:hover:not(.active) { color: var(--text); }

/* Auth panels */
.login-form { display: flex; flex-direction: column; gap: 14px; }

/* Auth panels — must come after .login-form to override display */
.auth-panel { display: none !important; }
.auth-panel.active { display: flex !important; }

.btn-login {
  margin-top: 4px;
  padding: 13px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 24px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s;
  width: 100%;
}
.btn-login:hover { background: var(--accent-hover); }
.btn-login:disabled { opacity: .5; cursor: not-allowed; }

.btn-forgot {
  display: block;
  margin-top: 10px;
  background: none; border: none;
  color: var(--text-muted);
  font-size: .81rem;
  cursor: pointer;
  padding: 0;
  text-align: center;
  width: 100%;
  transition: color .15s;
}
.btn-forgot:hover { color: var(--accent); text-decoration: underline; }

.forgot-desc {
  font-size: .84rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.demo-hint {
  margin-top: 16px;
  padding: 10px 13px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: .78rem;
  color: var(--text-muted);
  text-align: center;
}
.demo-hint code {
  background: var(--accent-light);
  color: var(--accent);
  padding: 1px 5px;
  border-radius: 3px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: .76rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.7);
}

.footer-top {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 40px 40px;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
}

.footer-logo {
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
}
.footer-logo .logo-text { font-size: 1.35rem; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
.footer-brand p { font-size: .86rem; line-height: 1.7; max-width: 260px; }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col strong { font-size: .82rem; font-weight: 700; color: #fff; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 4px; }
.footer-col a { font-size: .84rem; color: rgba(255,255,255,.6); text-decoration: none; transition: color .15s; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 40px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .15s; }
.footer-legal a:hover { color: #fff; }

/* ===== START FREE POPUP ===== */
.start-popup {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 20px 18px;
  width: 260px;
  box-shadow: var(--shadow-lg);
  animation: popupIn .35s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popupIn {
  from { opacity: 0; transform: translateY(20px) scale(.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.popup-close {
  position: absolute;
  top: 10px; right: 12px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-dim);
  cursor: pointer;
  line-height: 1;
  padding: 2px;
}
.popup-close:hover { color: var(--text); }

.popup-icon { font-size: 1.8rem; margin-bottom: 8px; }
.popup-title { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.popup-sub { font-size: .8rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 14px; }
.popup-cta {
  display: block;
  text-align: center;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
  transition: background .18s;
}
.popup-cta:hover { background: var(--accent-hover); }

/* ===== Icons ===== */
/* Feature icon containers */
.feature-icon {
  width: 48px; height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.feature-icon .lucide { width: 24px; height: 24px; }

/* Step icon containers */
.step-icon {
  width: 44px; height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  color: var(--accent);
}
.step-icon .lucide { width: 22px; height: 22px; }

/* Step arrow */
.step-arrow .lucide { width: 20px; height: 20px; stroke: var(--border2); }
.step-arrow { display: flex; align-items: center; padding-top: 52px; }

/* Input demo arrow */
.input-demo-arrow .lucide { width: 18px; height: 18px; stroke: var(--text-dim); }
.input-demo-arrow { display: flex; justify-content: center; margin-bottom: 14px; animation: bounce .9s ease-in-out infinite; }

/* Platform badges in demo */
.plat-badge { display: inline-flex; align-items: center; gap: 5px; }
.plat-badge .brand-icon { width: 14px; height: 14px; flex-shrink: 0; }

/* Hero floating card icons */
.fc-icon { display: flex; align-items: center; }
.fc-icon .brand-icon { width: 22px; height: 22px; }

/* Example card platform badges */
.ex-platform-badge { display: inline-flex; align-items: center; gap: 6px; }
.ex-platform-badge .brand-icon { width: 16px; height: 16px; }

/* Example reactions */
.ex-reactions .lucide { width: 13px; height: 13px; stroke: var(--text-dim); vertical-align: middle; }
.ex-photo-placeholder .lucide { display: block; }

/* Popup icon */
.popup-icon .lucide { width: 32px; height: 32px; stroke: var(--accent); }
.popup-icon { margin-bottom: 10px; }

/* Popup close */
.popup-close .lucide { width: 16px; height: 16px; }

/* FAQ icons */
.faq-icon .lucide { width: 18px; height: 18px; stroke: var(--text-dim); }
.faq-q[aria-expanded="true"] .faq-icon .lucide { stroke: var(--accent); transform: rotate(45deg); display: inline-block; }

/* Login perks */
.login-perks li { display: flex; align-items: center; gap: 8px; }
.login-perks .lucide { width: 16px; height: 16px; stroke: var(--success); flex-shrink: 0; }

/* Brand icons in X examples */
.av-x { background: #1d2226; }

/* ===== PLATFORMS STRIP ===== */
.platforms-strip {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.92);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.platforms-strip-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.platforms-strip-label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
  flex-shrink: 0;
}
.platforms-logos {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.plat-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: .78rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color .15s, box-shadow .15s;
  cursor: default;
}
.plat-pill:hover {
  border-color: var(--border2);
  box-shadow: var(--shadow-sm);
}
.plat-pill svg { flex-shrink: 0; }
.plat-sep {
  width: 1px;
  height: 22px;
  background: var(--border);
  margin: 0 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { padding: 100px 24px 64px; text-align: center; }
  .hero-content {
    max-width: 100%;
    background: rgba(243, 242, 239, 0.85);
    border-radius: 16px;
    padding: 32px 24px;
  }
  .hero-sub { margin: 0 auto 28px; }
  .hero-ctas { justify-content: center; }
  .hero-social-proof { text-align: center; }
  .hb-a { width: 400px; height: 400px; top: -100px; right: -100px; }
  .hb-b { width: 300px; height: 300px; }
  .faq-wrap { grid-template-columns: 1fr; gap: 32px; }
  .login-wrap { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .stats-bar { gap: 16px; }
  .stat { padding: 0 18px; }
  .section-wrap { padding: 0 20px; }
  .features, .how, .examples, .testimonials, .faq { padding: 60px 0; }
  .start-popup { bottom: 16px; right: 16px; width: 240px; }
  .platforms-strip-inner { padding: 0 20px; gap: 12px; }
  .plat-sep { display: none; }
  .ex-outputs { grid-template-columns: 1fr; }
}
