/* Leadry — section styles (dark) */

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 12, 15, 0.7);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--rule-soft);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--gutter);
  gap: 24px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-mark {
  width: 22px; height: 22px;
  background: var(--ink); color: var(--paper);
  border-radius: 6px;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 13px;
  letter-spacing: -0.04em;
}
.nav-mark::before { content: "L"; }
.nav-mark::after {
  content: ""; position: absolute; right: -3px; bottom: -3px;
  width: 8px; height: 8px; background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--paper);
}
.nav-word { font-family: var(--display); font-weight: 600; font-size: 19px; letter-spacing: -0.035em; color: var(--ink); }
.nav-meta { font-size: 10px; color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase; margin-left: 4px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14px; color: var(--ink-2); transition: color .15s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { padding: 10px 16px; font-size: 13px; }

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

/* HERO */
.hero { padding: 72px 0 96px; border-top: 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; flex-wrap: wrap; }
.hero-h1 { margin: 0 0 24px; }
.hero-h1 br { display: block; }
.hero-h1 strong {
  font-weight: 600;
  background: linear-gradient(180deg, var(--accent) 0%, #ffaa7c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-rule {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid var(--rule);
  padding-top: 12px;
  margin-bottom: 28px;
  gap: 16px; flex-wrap: wrap;
}
.hero-rule-l { font-size: 13px; color: var(--ink-2); }
.hero-rule-r { font-size: 10px; color: var(--ink-3); letter-spacing: 0.12em; }
.hero-lede { margin: 0 0 36px; font-size: 19px; max-width: 52ch; }
.hero-ctas { display: flex; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; }
.hero-hairlines {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid var(--rule-soft);
  padding-top: 20px;
}
.hero-hairlines li {
  display: flex; gap: 12px; align-items: center;
  color: var(--ink-2);
  font-size: 14px;
}
.hero-hairlines svg { width: 16px; height: 16px; color: var(--accent); flex: 0 0 auto; }

.hero-visual { display: flex; flex-direction: column; gap: 8px; }
.hero-visual-meta { display: flex; justify-content: space-between; align-items: end; }
.hero-visual-meta-r { color: var(--accent-2); }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding-top: 48px; }
}

/* STRIP */
.strip { padding: 32px 0; background: var(--paper-2); border-top: 1px solid var(--rule-soft); border-bottom: 1px solid var(--rule-soft); }
.strip-inner { display: flex; gap: 24px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.strip-list { display: flex; gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--ink-3); letter-spacing: 0.04em; }
.strip-list em { font-style: normal; opacity: 0.6; color: var(--accent-2); }

/* SECTION HEAD */
.sec-head { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; margin-bottom: 56px; }
.sec-head-l { display: flex; flex-direction: column; gap: 12px; border-left: 1px solid var(--rule); padding-left: 18px; align-self: start; }
.sec-head-num { font-size: 13px; color: var(--ink-3); }
.sec-head-r .h-section { margin: 0 0 16px; max-width: 18ch; }
.sec-head-sub { margin: 0; }

@media (max-width: 800px) {
  .sec-head { grid-template-columns: 1fr; gap: 18px; }
  .sec-head-l { border-left: 0; padding-left: 0; flex-direction: row; gap: 16px; }
}

/* PIPELINE */
.stages { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.stage {
  display: grid;
  grid-template-columns: 60px 60px 1fr 40px;
  align-items: start;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--rule-soft);
  position: relative;
}
.stage:first-child { border-top: 1px solid var(--rule); }
.stage:last-child { border-bottom: 1px solid var(--rule); }
.stage-num { font-size: 13px; color: var(--ink-3); padding-top: 4px; }
.stage-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--rule); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-2);
  background: var(--paper-2);
  transition: all .2s ease;
}
.stage-icon svg { width: 22px; height: 22px; }
.stage:hover .stage-icon {
  background: var(--accent); color: #fff; border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,92,42,0.12);
}
.stage-body { padding-top: 6px; max-width: 64ch; }
.stage-title { font-family: var(--display); font-weight: 600; font-size: 24px; letter-spacing: -0.025em; line-height: 1.1; margin: 0 0 6px; color: var(--ink); }
.stage-desc { margin: 0 0 8px; color: var(--ink-2); }
.stage-meta { font-size: 11px; color: var(--ink-3); letter-spacing: 0.06em; }
.stage-arrow { align-self: center; color: var(--rule); transition: color .15s ease, transform .2s ease; }
.stage:hover .stage-arrow { color: var(--accent); transform: translateX(4px); }
.stage-arrow svg { width: 22px; height: 22px; }

@media (max-width: 720px) {
  .stage { grid-template-columns: 36px 44px 1fr; gap: 14px; }
  .stage-arrow { display: none; }
  .stage-title { font-size: 21px; }
}

/* INSIDE */
.inside-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule-soft);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
}
.inside-item {
  padding: 28px 24px 32px;
  display: flex; flex-direction: column; gap: 10px;
  background: var(--paper);
  position: relative;
  transition: background .2s ease;
}
.inside-item:hover { background: var(--paper-2); }
.inside-item::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.inside-item:hover::after { transform: scaleX(1); }
.inside-num { font-size: 11px; color: var(--ink-3); letter-spacing: 0.06em; font-family: var(--mono); }
.inside-icon { color: var(--ink-2); transition: color .2s ease; }
.inside-icon svg { width: 26px; height: 26px; }
.inside-item:hover .inside-icon { color: var(--accent); }
.inside-title { font-family: var(--display); font-weight: 600; font-size: 18px; letter-spacing: -0.02em; line-height: 1.25; margin: 4px 0 4px; color: var(--ink); }
.inside-body { font-size: 14px; color: var(--ink-2); margin: 0; }

@media (max-width: 980px) { .inside-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .inside-grid { grid-template-columns: 1fr; } }

/* COMPARE */
.compare-table-wrap { border: 1px solid var(--rule); background: var(--paper-2); border-radius: 10px; overflow: hidden; }
table.compare th:first-child, table.compare td:first-child { width: 26%; }

@media (max-width: 700px) {
  .compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 8px; }
  table.compare { min-width: 560px; }
}

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; }
.pricing-l .h-section { margin: 12px 0 18px; }
.pricing-lede { margin: 0 0 24px; }
.pricing-foot { border-top: 1px solid var(--rule-soft); padding-top: 16px; max-width: 50ch; display: block; }
.pricing-card {
  border: 1px solid var(--rule);
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
  padding: 36px;
  position: relative;
  border-radius: 14px;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,92,42,0.08) inset;
}
.pricing-card::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255,92,42,0.5), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.pricing-head { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--rule-soft); padding-bottom: 18px; }
.pricing-seat { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; color: var(--accent); }
.pricing-seat-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 1.6s infinite; box-shadow: 0 0 0 3px rgba(255,92,42,0.18); }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.pricing-price { display: grid; grid-template-columns: 1fr auto 1fr; gap: 14px; align-items: end; padding: 24px 0 8px; }
.pricing-price-row { display: flex; flex-direction: column; gap: 2px; }
.pricing-amt { font-family: var(--display); font-weight: 600; font-size: 60px; line-height: 0.95; letter-spacing: -0.045em; color: var(--ink); }
.pricing-unit { font-size: 12px; color: var(--ink-3); }
.pricing-plus { font-family: var(--display); font-weight: 300; font-size: 36px; color: var(--ink-3); padding-bottom: 8px; }
.pricing-list { list-style: none; padding: 0; margin: 18px 0 24px; display: flex; flex-direction: column; gap: 11px; }
.pricing-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--ink-2); }
.pricing-list svg { width: 16px; height: 16px; color: var(--accent-2); margin-top: 2px; flex: 0 0 auto; }
.pricing-soon { color: var(--ink-3); }
.pricing-soon svg { color: var(--ink-3); }
.pricing-cta { width: 100%; justify-content: center; padding: 16px; }

@media (max-width: 880px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 32px; }
  .pricing-price { grid-template-columns: 1fr; gap: 10px; }
  .pricing-plus { display: none; }
}

/* FOUNDER */
.founder-grid { display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: start; }
.founder-card {
  border: 1px solid var(--rule);
  background: var(--paper-2);
  padding: 24px;
  border-radius: 12px;
  position: sticky; top: 96px;
}
.founder-photo {
  width: 100%; aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--paper-3), var(--paper));
  color: var(--ink-3);
  border: 1px solid var(--rule);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.founder-photo svg { width: 80px; height: 80px; }
.founder-name { font-family: var(--display); font-weight: 600; font-size: 22px; margin: 0 0 6px; line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); }
.founder-loc { display: flex; gap: 6px; align-items: center; font-size: 13px; color: var(--ink-3); margin: 0 0 16px; }
.founder-loc svg { width: 14px; height: 14px; }
.founder-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--ink-2); }

.founder-letter { max-width: 60ch; }
.founder-letter .h-section { margin: 14px 0 24px; }
.founder-letter p { font-size: 17px; line-height: 1.6; color: var(--ink-2); margin: 0 0 18px; }
.founder-letter em { font-style: normal; color: var(--ink); font-weight: 500; }
.founder-sign { font-family: var(--display); font-weight: 500; font-style: italic; font-size: 22px; color: var(--accent); margin-top: 28px; letter-spacing: -0.02em; }

@media (max-width: 880px) {
  .founder-grid { grid-template-columns: 1fr; gap: 28px; }
  .founder-card { position: static; }
}

/* FAQ */
.faq-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule-soft); }
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q {
  display: grid;
  grid-template-columns: 60px 1fr 24px;
  gap: 16px;
  align-items: center;
  width: 100%;
  padding: 22px 0;
  text-align: left;
  font-family: var(--display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink);
}
.faq-num { font-family: var(--mono); font-size: 12px; color: var(--ink-3); }
.faq-q:hover { color: var(--accent); }
.faq-toggle { color: var(--ink-3); }
.faq-toggle svg { width: 20px; height: 20px; }
.faq-a { padding: 0 24px 26px 76px; max-width: 72ch; color: var(--ink-2); font-size: 15px; line-height: 1.6; }
.faq-item--open .faq-q { color: var(--accent); }
.faq-item--open .faq-toggle { color: var(--accent); }

@media (max-width: 600px) {
  .faq-q { grid-template-columns: 32px 1fr 22px; gap: 10px; font-size: 17px; }
  .faq-a { padding-left: 42px; }
}

/* ROADMAP */
.road { list-style: none; padding: 0; margin: 0; }
.road-item {
  display: grid;
  grid-template-columns: 80px 32px 1fr 100px;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.road-item:first-child { border-top: 1px solid var(--rule); }
.road-item:last-child { border-bottom: 1px solid var(--rule); }
.road-when { font-size: 13px; color: var(--accent); letter-spacing: 0.04em; font-weight: 500; }
.road-bar { position: relative; height: 1px; background: var(--rule); }
.road-dot {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 11px; height: 11px;
  background: var(--paper); border: 1.5px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255,92,42,0.16);
}
.road-title { font-family: var(--display); font-size: 19px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 4px; color: var(--ink); }
.road-desc { font-size: 14px; color: var(--ink-2); margin: 0; }
.road-state { font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.1em; text-align: right; font-family: var(--mono); }

@media (max-width: 700px) {
  .road-item { grid-template-columns: 60px 1fr; }
  .road-bar, .road-state { display: none; }
}

/* APPLY */
.apply {
  background: linear-gradient(180deg, var(--paper) 0%, #06070a 100%);
  border-top: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.apply::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 0%, rgba(255,92,42,0.16), transparent 60%);
  pointer-events: none;
}
.apply > .wrap { position: relative; }
.apply-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; }
.apply-l .h-section { margin: 12px 0 16px; }
.apply-l .lede { color: var(--ink-2); }
.apply-points { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 10px; }
.apply-points li { display: flex; gap: 12px; align-items: center; font-size: 14px; color: var(--ink-2); }
.apply-points svg { width: 16px; height: 16px; color: var(--accent-2); }

.apply-form {
  display: flex; flex-direction: column; gap: 16px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 28px;
}
.apply-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.apply-form label {
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-3);
}
.apply-form input, .apply-form textarea {
  font-family: var(--sans); font-size: 15px;
  background: transparent;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 8px 0;
  letter-spacing: normal; text-transform: none;
}
.apply-form input::placeholder, .apply-form textarea::placeholder { color: var(--ink-3); opacity: 0.7; }
.apply-form input:focus, .apply-form textarea:focus { outline: 0; border-bottom-color: var(--accent); }
.apply-foot { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.apply-foot .btn--primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.apply-foot .btn--primary:hover { background: #ff7449; border-color: #ff7449; }
.apply-foot .caption { color: var(--ink-3); }
.apply-thanks { padding: 24px 0; }
.apply-thanks h3 { font-family: var(--display); font-weight: 600; font-size: 28px; letter-spacing: -0.025em; margin: 0 0 10px; color: var(--ink); }
.apply-thanks p { color: var(--ink-2); }

@media (max-width: 880px) {
  .apply-grid { grid-template-columns: 1fr; gap: 32px; }
  .apply-row { grid-template-columns: 1fr; }
}

/* FOOTER */
.foot { background: #06070a; border-top: 1px solid var(--rule-soft); padding: 56px 0 24px; }
.foot-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; padding-bottom: 36px; border-bottom: 1px solid var(--rule-soft); }
.foot-brand { font-family: var(--display); font-weight: 600; font-size: 28px; letter-spacing: -0.035em; margin-bottom: 8px; color: var(--ink); }
.foot-by { color: var(--ink-3); font-size: 13px; margin: 0; }
.foot-r { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.foot-col { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.foot-col .caption { margin-bottom: 4px; }
.foot-col a { color: var(--ink-2); }
.foot-col a:hover { color: var(--accent); }
.foot-bottom { display: flex; justify-content: space-between; padding-top: 18px; font-size: 11px; color: var(--ink-3); letter-spacing: 0.04em; }

@media (max-width: 720px) {
  .foot-inner { grid-template-columns: 1fr; }
  .foot-r { grid-template-columns: repeat(3, 1fr); }
  .foot-bottom { flex-direction: column; gap: 8px; }
}

/* density */
body.density-tight section { padding: 64px 0; }
body.density-tight .hero { padding: 40px 0 64px; }
body.density-tight .sec-head { margin-bottom: 36px; }
body.density-tight .stage { padding: 18px 0; }
body.no-shadows .pricing-card { box-shadow: none; }
body.no-shadows .pm { box-shadow: none; }
