/* Alcor Industries B2B cohort landing pages — v1 */

.b2b-page { background: var(--void); }
.b2b-header .nav-links { gap: 24px; }

.b2b-hero {
  min-height: 94svh;
  padding-top: 126px;
  padding-bottom: 52px;
}

.b2b-hero .hero-content {
  width: min(1120px, 100%);
  gap: 24px;
}

.b2b-hero h1 {
  max-width: 1040px;
  font-size: clamp(58px, 7.6vw, 112px);
  line-height: .93;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.b2b-hero .hero-subhead {
  max-width: 860px;
  font-size: clamp(20px, 2.1vw, 27px);
  line-height: 1.36;
  text-wrap: pretty;
}

.b2b-trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(179,140,255,.04), rgba(83,217,212,.025), rgba(255,94,196,.04));
}

.b2b-trust-band > div {
  min-height: 132px;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid var(--line);
}

.b2b-trust-band > div:last-child { border-right: 0; }
.b2b-trust-band strong { font-size: 17px; }
.b2b-trust-band span { color: var(--muted); font-size: 13px; line-height: 1.45; }

.b2b-problem-section,
.b2b-solution-section,
.b2b-proof-section,
.b2b-process-section,
.b2b-faq-section {
  padding-top: clamp(84px, 9vw, 140px);
  padding-bottom: clamp(84px, 9vw, 140px);
}

.b2b-problem-section .section-inner > h2,
.b2b-solution-section .section-inner > h2,
.b2b-process-section .section-inner > h2,
.b2b-faq-layout h2,
.b2b-proof-copy h2 {
  max-width: 980px;
  margin-top: 12px;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: .98;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.b2b-problem-section .section-lede,
.b2b-proof-copy .section-lede {
  max-width: 820px;
  margin-top: 24px;
}

.b2b-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.b2b-card {
  position: relative;
  min-height: 280px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.035), transparent 48%),
    rgba(15,17,25,.7);
  box-shadow: 0 30px 80px rgba(0,0,0,.16);
}

.b2b-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(179,140,255,.14);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(179,140,255,.05);
}

.b2b-card h3 {
  max-width: 360px;
  margin-top: 52px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.02;
  letter-spacing: -.025em;
}

.b2b-card p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

.b2b-card-index {
  position: absolute;
  top: 26px;
  left: 30px;
  color: var(--magenta);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  letter-spacing: .14em;
}

.b2b-outcome-card { border-color: rgba(83,217,212,.16); }
.b2b-outcome-card h3 { margin-top: 26px; }
.b2b-tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(83,217,212,.26);
  border-radius: 999px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: .12em;
}

.b2b-example-panel {
  margin-top: 18px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 10%, rgba(179,140,255,.1), transparent 36%),
    rgba(8,9,14,.72);
}

.b2b-example-panel h3 {
  margin-top: 14px;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1;
  letter-spacing: -.03em;
}

.b2b-example-panel > div > p {
  max-width: 520px;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.b2b-example-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  align-content: start;
}

.b2b-example-list li {
  position: relative;
  padding: 17px 12px 17px 34px;
  border-bottom: 1px solid var(--line);
  color: rgba(246,240,228,.92);
  line-height: 1.45;
}

.b2b-example-list li::before {
  content: "↗";
  position: absolute;
  left: 4px;
  color: var(--violet);
}

.b2b-proof-section {
  background:
    linear-gradient(180deg, transparent, rgba(179,140,255,.035) 45%, transparent),
    #07080c;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.b2b-proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}

.b2b-proof-actions { margin-top: 30px; }

.b2b-proof-stack {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(9,10,15,.72);
  box-shadow: 0 40px 100px rgba(0,0,0,.22);
}

.b2b-proof-stack article {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 4px 20px;
  padding: 24px 26px;
  border-bottom: 1px solid var(--line);
}

.b2b-proof-stack article:last-child { border-bottom: 0; }
.b2b-proof-stack span {
  grid-row: 1 / span 2;
  align-self: start;
  color: var(--magenta);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: .1em;
}
.b2b-proof-stack strong { font-size: 18px; }
.b2b-proof-stack p { color: var(--muted); font-size: 13px; line-height: 1.5; }

.b2b-process {
  list-style: none;
  margin: 52px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.b2b-process li {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.b2b-process li > span {
  color: var(--violet);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  letter-spacing: .12em;
}

.b2b-process h3 { font-size: clamp(26px, 3vw, 40px); line-height: 1; }
.b2b-process p { max-width: 760px; margin-top: 10px; color: var(--muted); line-height: 1.6; }

.b2b-faq-section { background: rgba(10,11,17,.7); }
.b2b-faq-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.b2b-faq details { padding: 22px 0; border-bottom: 1px solid var(--line); }
.b2b-faq details:first-child { border-top: 1px solid var(--line); }
.b2b-faq summary {
  position: relative;
  padding-right: 34px;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}
.b2b-faq summary::-webkit-details-marker { display: none; }
.b2b-faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 0;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 400;
}
.b2b-faq details[open] summary::after { content: "−"; }
.b2b-faq details p { max-width: 680px; margin-top: 13px; color: var(--muted); line-height: 1.65; }

.b2b-closing { border-top: 1px solid var(--line); }
.b2b-closing .closing-inner { max-width: 980px; }
.b2b-closing h2 { max-width: 900px; }
.b2b-closing-form { margin-top: 38px; }

.b2b-audience-switcher {
  padding: 42px 0 54px;
  border-top: 1px solid var(--line);
  background: #050608;
}
.b2b-audience-switcher .section-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
}
.b2b-audience-switcher span {
  color: var(--quiet);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.b2b-audience-switcher .section-inner > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.b2b-audience-switcher a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
}
.b2b-audience-switcher a:hover { color: var(--paper); border-color: var(--violet); }

.b2b-mobile-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 45;
  min-height: 52px;
  display: none;
  place-items: center;
  border: 1px solid rgba(246,240,228,.2);
  border-radius: 10px;
  background: rgba(16,18,26,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0,0,0,.38);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.b2b-mobile-cta.show { display: grid; }

/* Cohort accent changes are intentionally subtle; the galaxy remains the brand. */
.b2b-professional-services .b2b-card-index,
.b2b-professional-services .b2b-tag { color: var(--cyan); }
.b2b-operations .b2b-card-index { color: var(--gold); }
.b2b-growing-companies .b2b-card-index { color: var(--green); }
.b2b-ai-infrastructure .b2b-card-index { color: var(--violet); }

@media (max-width: 980px) {
  .b2b-header .nav-links { display: none; }
  .b2b-header { grid-template-columns: 1fr auto; }
  .b2b-trust-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .b2b-trust-band > div:nth-child(2) { border-right: 0; }
  .b2b-trust-band > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .b2b-card-grid { grid-template-columns: 1fr; }
  .b2b-card { min-height: 0; }
  .b2b-example-panel,
  .b2b-proof-layout,
  .b2b-faq-layout { grid-template-columns: 1fr; }
  .b2b-example-panel { gap: 34px; }
  .b2b-proof-stack { max-width: 720px; }
}

@media (max-width: 700px) {
  .b2b-header { min-height: 64px; padding: 12px 18px; }
  .b2b-header .header-cta { display: none; }
  .b2b-header { grid-template-columns: 1fr; }
  .b2b-hero { min-height: 92svh; padding: 104px 22px 28px; }
  .b2b-hero .screen-border { inset: 82px 14px 18px; }
  .b2b-hero h1 { font-size: clamp(48px, 13.2vw, 72px); letter-spacing: -.05em; }
  .b2b-hero .hero-subhead { font-size: 19px; line-height: 1.42; }
  .b2b-hero .hero-actions { align-items: stretch; }
  .b2b-hero .hero-actions a { width: 100%; justify-content: center; text-align: center; }
  .b2b-hero .hero-readout { grid-template-columns: 1fr; }
  .b2b-trust-band { grid-template-columns: 1fr; }
  .b2b-trust-band > div { min-height: 0; padding: 20px 22px; border-right: 0; border-bottom: 1px solid var(--line); }
  .b2b-trust-band > div:last-child { border-bottom: 0; }
  .b2b-card { padding: 26px 22px; }
  .b2b-example-panel { padding: 28px 22px; }
  .b2b-process li { grid-template-columns: 54px 1fr; gap: 12px; }
  .b2b-proof-stack article { grid-template-columns: 1fr; gap: 7px; }
  .b2b-proof-stack span { grid-row: auto; }
  .b2b-audience-switcher .section-inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .b2b-page * { scroll-behavior: auto !important; }
}
