/* ═══════════════════════════════════════════
   GLACIR AI — styles.css
   Clean. Bold. No visual noise.
═══════════════════════════════════════════ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black:   #030608;
  --dark:    #070d16;
  --navy:    #0a1220;
  --navy2:   #0d1829;
  --border:  #14253d;
  --blue:    #3b82f6;
  --blue2:   #60a5fa;
  --green:   #22c55e;
  --red:     #f87171;
  --white:   #ffffff;
  --text:    #c8d8ee;
  --muted:   #5a7595;
  --faint:   #263d57;
  --grad:    linear-gradient(135deg, #3b82f6, #0ea5e9);
  --font:    -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 3rem;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: rgba(3, 6, 8, 0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.nav-logo img { height: 26px; width: auto; }
.nav-logo-text { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; color: var(--white); }
.nav-logo-text span { color: var(--blue2); }

.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #2563eb !important; color: var(--white) !important; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh; min-height: 600px; max-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.video-wrap {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; overflow: hidden;
}

.video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Layered overlay: heavy vignette + bottom fade to site bg */
.video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 120% 100% at 50% 50%, rgba(3,6,8,0.3) 0%, rgba(3,6,8,0.7) 100%),
    linear-gradient(to bottom, rgba(3,6,8,0.15) 0%, rgba(3,6,8,0.45) 60%, rgba(3,6,8,1) 100%);
}

.hero-inner {
  position: relative; z-index: 10;
  text-align: center;
  padding: 6rem 2rem 4rem;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue2);
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero-inner h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.97;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 2rem;
  text-shadow: 0 4px 60px rgba(0,0,0,0.6);
}

.hero-inner h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 60%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-body {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 3rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 1;
}

.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ── STATEMENT STRIP ── */
.statement-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--navy);
  padding: 2.5rem 2rem;
}

.statement {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; }
section { padding: 8rem 2rem; }

.eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
}

.section-header { margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em; color: var(--white); line-height: 1.06; }

h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -0.03em; color: var(--white); line-height: 1.08; }
h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 0 30px rgba(59,130,246,0.3);
}
.btn-primary:hover { background: #2563eb; box-shadow: 0 0 44px rgba(59,130,246,0.5); transform: translateY(-1px); }
.btn-xl { padding: 1.1rem 2.75rem; font-size: 1.1rem; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.75);
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

/* ── SERVICES ── */
.services-section { background: var(--dark); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.service-card {
  background: var(--navy);
  padding: 3rem;
  transition: background 0.25s;
}

.service-card:hover { background: var(--navy2); }
.service-card--accent { background: linear-gradient(135deg, var(--navy) 0%, rgba(59,130,246,0.08) 100%); }
.service-card--accent:hover { background: linear-gradient(135deg, var(--navy2) 0%, rgba(59,130,246,0.12) 100%); }

.service-num {
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.14em;
  color: var(--faint); margin-bottom: 1.5rem;
}

.service-card h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.service-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 2rem; }

.service-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.price { color: var(--blue2); font-weight: 700; font-size: 0.9rem; }
.duration { color: var(--faint); font-size: 0.8rem; }

/* ── CALCULATOR ── */
.calc-section { background: var(--black); }

.calc-layout {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: center;
}

.calc-left h2 { margin-bottom: 1.25rem; }
.calc-left p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

.calc-widget {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
}

.calc-sliders { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 2.5rem; }

.calc-field-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 0.75rem;
}

.calc-field label {
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted);
}

.calc-val { font-size: 1.1rem; font-weight: 800; color: var(--blue2); }

input[type="range"] {
  width: 100%; accent-color: var(--blue);
  height: 3px; cursor: pointer;
}

.calc-output {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; margin-bottom: 1.5rem;
}

.calc-stat { background: var(--navy2); padding: 1.25rem; text-align: center; }
.calc-stat-val { font-size: 1.5rem; font-weight: 800; line-height: 1; margin-bottom: 0.3rem; }
.calc-stat-val.red { color: var(--red); }
.calc-stat-val.green { color: var(--green); }
.calc-stat-label { font-size: 0.72rem; color: var(--muted); }

.calc-link { color: var(--blue2); font-size: 0.875rem; text-decoration: none; transition: color 0.2s; }
.calc-link:hover { color: var(--white); }

/* ── PROCESS ── */
.process-section { background: var(--dark); }

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.process-step { padding: 0 1rem; }
.process-connector {
  width: 2px; height: 48px;
  background: var(--border);
  align-self: start;
  margin-top: 23px;
}

.step-n {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: var(--blue2);
  margin-bottom: 1.5rem;
}

.process-step h3 { margin-bottom: 0.6rem; font-size: 1rem; }
.process-step p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ── OPERATOR ── */
.operator-section { background: var(--black); }

.operator-layout {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: center;
}

.operator-left h2 { margin-bottom: 1.5rem; }
.operator-left p { color: var(--muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }

.operator-right {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
}

.op-card {
  background: var(--navy); padding: 2rem;
  transition: background 0.2s;
}
.op-card:hover { background: var(--navy2); }

.op-num {
  font-size: 2rem; font-weight: 900; letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.op-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }

/* ── FAQ ── */
.faq-section { background: var(--dark); }

.faq-layout {
  display: grid; grid-template-columns: 1fr 1.8fr; gap: 5rem; align-items: start;
}

.faq-left h2 { margin-bottom: 1rem; }
.faq-left p { color: var(--muted); font-size: 0.9rem; }

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

.faq-item { border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.faq-q { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem; }
.faq-a { font-size: 0.875rem; color: var(--muted); line-height: 1.75; }

/* ── FINAL CTA ── */
.final-cta {
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(59,130,246,0.1) 0%, transparent 60%), var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 8rem 2rem;
}

.final-cta h2 { font-size: clamp(2.2rem, 4.5vw, 3.75rem); margin-bottom: 1.25rem; }
.final-cta p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; max-width: 520px; margin: 0 auto 3rem; }

/* ── CONTACT ── */
.contact-section { background: var(--black); }

.contact-layout {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start;
}

.contact-left h2 { margin-bottom: 1rem; }
.contact-left p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 0.5rem; }
.contact-email a { color: var(--blue2); text-decoration: none; font-size: 1rem; font-weight: 600; }
.contact-email a:hover { text-decoration: underline; }

.contact-form {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 0; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }

.form-group label {
  font-size: 0.72rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-size: 0.95rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--faint); }
.form-group select option { background: var(--navy); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%; background: var(--blue); color: var(--white);
  border: none; padding: 0.9rem; border-radius: 8px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: all 0.2s; font-family: var(--font);
}
.form-submit:hover { background: #2563eb; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }

.blog-card {
  background: var(--navy); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.75rem;
  text-decoration: none; display: block;
  transition: all 0.25s;
}
.blog-card:hover { border-color: rgba(59,130,246,0.5); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(59,130,246,0.1); }

.blog-tag {
  display: inline-block;
  background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.25);
  color: var(--blue2); font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  padding: 0.2rem 0.6rem; border-radius: 4px; margin-bottom: 0.85rem;
}
.blog-card h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 0.6rem; line-height: 1.4; }
.blog-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.25rem; }
.blog-meta { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--faint); border-top: 1px solid var(--border); padding-top: 1rem; }

/* ── POST ── */
.post-hero { padding: 9rem 2rem 4rem; border-bottom: 1px solid var(--border); }
.post-meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; font-size: 0.85rem; color: var(--faint); }
.post-body { max-width: 720px; margin: 0 auto; padding: 4rem 2rem; }
.post-body h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; }
.post-body h3 { font-size: 1.1rem; color: var(--blue2); margin: 2rem 0 0.75rem; }
.post-body p { font-size: 1rem; color: var(--muted); line-height: 1.85; margin-bottom: 1.25rem; }
.post-body ul, .post-body ol { margin: 0 0 1.25rem 1.5rem; color: var(--muted); font-size: 1rem; line-height: 1.8; }
.post-body li { margin-bottom: 0.3rem; }
.post-body strong { color: var(--text); }
.post-body blockquote { border-left: 3px solid var(--blue); padding: 1rem 1.5rem; margin: 2rem 0; background: var(--navy); border-radius: 0 8px 8px 0; color: var(--text); font-size: 1.05rem; font-style: italic; }
.post-cta { background: var(--navy); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; margin: 3rem 0; text-align: center; }
.post-cta h3 { margin-bottom: 0.75rem; }
.post-cta p { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.5rem; }

/* ── FOOTER ── */
footer { padding: 3rem 2rem; border-top: 1px solid var(--border); background: var(--dark); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.footer-logo img { height: 22px; width: auto; }
.footer-logo-text { font-size: 1.15rem; font-weight: 700; color: var(--white); }
.footer-logo-text span { color: var(--blue2); }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { color: var(--faint); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--muted); }
.footer-copy { font-size: 0.8rem; color: var(--faint); }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .operator-layout, .calc-layout, .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-connector { display: none; }
  .process-step { padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
  .operator-right { grid-template-columns: 1fr 1fr; }
  section { padding: 5rem 1.5rem; }
  .final-cta { padding: 5rem 1.5rem; }
}

@media (max-width: 600px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links a:not(.nav-cta) { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .operator-right { grid-template-columns: 1fr; }
  .calc-output { grid-template-columns: 1fr; }
  .hero-inner h1 { font-size: clamp(3rem, 12vw, 5rem); }
}


/* ── OUTCOMES ── */
.outcomes-section { background: var(--dark); }

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.outcome-card {
  background: var(--navy);
  padding: 2.5rem;
  transition: background 0.2s;
}
.outcome-card:hover { background: var(--navy2); }

.outcome-icon { font-size: 1.75rem; margin-bottom: 1.25rem; }
.outcome-card h3 { margin-bottom: 0.75rem; font-size: 1.05rem; }
.outcome-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

@media (max-width: 700px) {
  .outcomes-grid { grid-template-columns: 1fr; }
}

/* v1774935996 */

/* ══════════════════════════════════════
   HERO 2-COL + ACTIVITY FEED
══════════════════════════════════════ */

/* Override single-col hero when feed is present */
.hero-split {
  position: relative; z-index: 10;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
  max-width: 1140px;
  width: 100%;
  padding: 6rem 3rem 4rem;
  margin: 0 auto;
}

.hero-split .hero-text { text-align: left; }

.hero-split .hero-text .hero-eyebrow { margin-bottom: 1.5rem; }

/* Constrained H1 for 2-col */
.hero-split h1 {
  font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.hero-split h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 60%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-split .hero-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 440px;
  text-shadow: none;
}

.hero-split .hero-actions { justify-content: flex-start; }

/* ── ACTIVITY FEED ── */
.activity-feed {
  background: rgba(7, 14, 26, 0.82);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 24px 60px rgba(0,0,0,0.55),
    0 0 80px rgba(59,130,246,0.07);
}

.feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
}

.feed-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
}

.feed-live {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #22c55e;
}

.feed-live-dot {
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: feedPulse 2s ease-in-out infinite;
}

@keyframes feedPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50%       { opacity: 0.7; box-shadow: 0 0 0 4px rgba(34,197,94,0); }
}

.feed-rows {
  padding: 0.5rem 0;
  min-height: 300px;
}

.feed-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.feed-row.visible {
  opacity: 1;
  transform: translateY(0);
}

.feed-row:last-child { border-bottom: none; }

.feed-avatar {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.feed-avatar.blue   { background: rgba(59,130,246,0.18); }
.feed-avatar.green  { background: rgba(34,197,94,0.15); }
.feed-avatar.purple { background: rgba(139,92,246,0.18); }
.feed-avatar.amber  { background: rgba(245,158,11,0.15); }

.feed-content { flex: 1; min-width: 0; }

.feed-row-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.2rem;
  gap: 0.5rem;
}

.feed-agent {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}

.feed-time {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
  flex-shrink: 0;
}

.feed-msg {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.feed-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  margin-left: 0.3rem;
  vertical-align: middle;
}
.feed-badge.success { background: rgba(34,197,94,0.15); color: #22c55e; }
.feed-badge.info    { background: rgba(59,130,246,0.15); color: #60a5fa; }
.feed-badge.warn    { background: rgba(245,158,11,0.15); color: #fbbf24; }

.feed-footer {
  padding: 0.65rem 1.1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.feed-footer-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.15); }

/* Hide feed on narrow viewports */
@media (max-width: 960px) {
  .hero-split {
    grid-template-columns: 1fr;
    padding: 7rem 2rem 4rem;
  }
  .hero-split .hero-text { text-align: center; }
  .hero-split .hero-actions { justify-content: center; }
  .hero-split h1 { font-size: clamp(2.8rem, 8vw, 5rem); }
  .hero-split .hero-body { max-width: 100%; }
  .activity-feed { display: none; }
}

/* ══════════════════════════════════════
   OPPORTUNITY SCORE CALCULATOR
══════════════════════════════════════ */
.opp-section { background: var(--dark); }

.opp-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.opp-copy h2 { margin-bottom: 1rem; }
.opp-copy p  { color: var(--muted); font-size: 0.95rem; line-height: 1.75; }

.opp-widget {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.opp-inputs {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.opp-field label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.opp-field label .opp-val {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--blue2);
  text-transform: none;
  letter-spacing: 0;
}

input[type="range"].opp-range {
  width: 100%;
  height: 4px;
  accent-color: var(--blue);
  cursor: pointer;
}

.opp-select {
  width: 100%;
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  color: var(--text);
  font-size: 0.875rem;
  font-family: var(--font);
  outline: none;
  cursor: pointer;
}
.opp-select:focus { border-color: var(--blue); }
.opp-select option { background: var(--navy); }

.opp-result {
  padding: 2rem;
}

.opp-score-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.opp-score-ring {
  position: relative;
  width: 72px; height: 72px;
  flex-shrink: 0;
}

.opp-score-ring svg {
  transform: rotate(-90deg);
  width: 72px; height: 72px;
}

.opp-ring-bg { fill: none; stroke: var(--border); stroke-width: 6; }
.opp-ring-fill {
  fill: none;
  stroke: var(--blue);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 188.5;
  stroke-dashoffset: 188.5;
  transition: stroke-dashoffset 0.8s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.4s ease;
}

.opp-score-num {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
}

.opp-score-meta { flex: 1; }

.opp-tier {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.opp-tier.foundation { color: #fbbf24; }
.opp-tier.growth     { color: #60a5fa; }
.opp-tier.scale      { color: #22c55e; }

.opp-headline {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.opp-diagnosis {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: 8px;
  border-left: 3px solid var(--blue);
}

.opp-cta {
  display: block;
  width: 100%;
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 0.85rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  font-family: var(--font);
  transition: background 0.2s;
}
.opp-cta:hover { background: #2563eb; }

@media (max-width: 900px) {
  .opp-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Custom range slider styling */
input[type="range"].opp-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  cursor: pointer;
  outline: none;
}
input[type="range"].opp-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.2);
  transition: box-shadow 0.2s;
}
input[type="range"].opp-range::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 5px rgba(59,130,246,0.3);
}
input[type="range"].opp-range::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
  border: none;
}

/* ── HERO BODY ALIGNMENT FIX ── */
.hero-split .hero-body {
  max-width: 100%;   /* match headline width, no indent */
}

/* ── MOBILE MINI-FEED ── */
.mini-feed {
  display: none; /* hidden on desktop */
  margin-top: 2rem;
  background: rgba(7, 14, 26, 0.75);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.mini-feed-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 0.9rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mini-live-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #22c55e;
  animation: feedPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.mini-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mini-item:last-child { border-bottom: none; }
.mini-item.visible { opacity: 1; transform: translateX(0); }

.mini-icon { font-size: 0.9rem; flex-shrink: 0; }
.mini-text { font-size: 0.72rem; color: rgba(255,255,255,0.55); line-height: 1.4; flex: 1; }
.mini-time { font-size: 0.62rem; color: rgba(255,255,255,0.25); white-space: nowrap; flex-shrink: 0; }

@media (max-width: 960px) {
  .mini-feed { display: block; }
}

/* ── CALCULATOR SAVINGS ROW ── */
.opp-savings-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 1.25rem;
}

.opp-saving { flex: 1; text-align: center; }

.opp-saving-val {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}
.opp-saving-val.red   { color: #f87171; }
.opp-saving-val.green { color: #22c55e; }

.opp-saving-label {
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.4;
}

.opp-saving-divider {
  font-size: 1.2rem;
  color: var(--faint);
  flex-shrink: 0;
}

@media (max-width: 500px) {
  .opp-savings-row { flex-direction: column; gap: 0.75rem; }
  .opp-saving-divider { transform: rotate(90deg); }
}

/* ══════════════════════════════════════
   PARTNERS PAGE
══════════════════════════════════════ */

/* ── Partners Hero ── */
.partners-hero {
  padding: 9rem 2rem 6rem;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
}

.partners-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ph-left h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.ph-left h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 60%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ph-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.ph-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.partner-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.partner-stat {
  background: var(--navy);
  padding: 2rem 1.5rem;
  transition: background 0.2s;
}
.partner-stat:hover { background: var(--navy2); }

.ps-val {
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 0.5rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ps-label { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

/* ── Opportunity Cards ── */
.opp-strip { background: var(--black); }

.opp-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.opp-card {
  background: var(--navy);
  padding: 2.5rem;
  transition: background 0.2s;
}
.opp-card:hover { background: var(--navy2); }

.oc-icon { font-size: 1.75rem; margin-bottom: 1.25rem; }
.opp-card h3 { margin-bottom: 0.75rem; }
.opp-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* ── Partner Steps ── */
.partner-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.partner-step { position: relative; }

.ps-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: var(--blue2);
  margin-bottom: 1.5rem;
}

.partner-step h3 { margin-bottom: 0.6rem; }
.partner-step p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ── Resell Grid ── */
.resell-section { background: var(--dark); }

.resell-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.resell-card {
  background: var(--navy);
  padding: 2.5rem;
  transition: background 0.2s;
}
.resell-card:hover { background: var(--navy2); }
.resell-card--accent {
  background: linear-gradient(135deg, var(--navy) 0%, rgba(59,130,246,0.08) 100%);
}

.rc-num {
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.14em;
  color: var(--faint); margin-bottom: 1.25rem;
}

.resell-card h3 { margin-bottom: 0.75rem; }
.resell-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.5rem; }

.rc-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
}

.rc-price { color: var(--blue2); font-weight: 700; }
.rc-time { color: var(--faint); }

.resell-note {
  font-size: 0.78rem;
  color: var(--faint);
  font-style: italic;
}

/* ── Who Section ── */
.who-section { background: var(--black); }

.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.who-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  transition: all 0.2s;
}
.who-card:hover { border-color: rgba(59,130,246,0.4); transform: translateY(-2px); }

.who-icon { font-size: 1.75rem; margin-bottom: 1.25rem; }
.who-card h3 { margin-bottom: 0.75rem; }
.who-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* ── Why Partner ── */
.why-partner-section { background: var(--dark); }

.why-partner-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.wp-left h2 { margin-bottom: 1.5rem; }
.wp-left p { color: var(--muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }

.wp-right {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.wp-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--navy);
  padding: 1.5rem;
  transition: background 0.2s;
}
.wp-card:hover { background: var(--navy2); }

.wp-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: #22c55e;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.wp-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.wp-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ── Partners page responsive ── */
@media (max-width: 960px) {
  .partners-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .why-partner-layout { grid-template-columns: 1fr; gap: 3rem; }
  .partner-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .opp-cards, .resell-grid, .who-grid { grid-template-columns: 1fr; }
  .partner-stat-grid { grid-template-columns: 1fr 1fr; }
  .partner-steps { grid-template-columns: 1fr; }
}
