:root {
  --ink: #081f3d;
  --muted: #5d6c80;
  --bg: #f5f1e8;
  --bg-soft: #fbf8f1;
  --panel: #ffffff;
  --line: #ded7c7;
  --green: #073f35;
  --green-2: #11584b;
  --gold: #f0c66b;
  --gold-soft: #fff3d4;
  --blue: #135cff;
  --shadow: 0 22px 70px rgba(8, 31, 61, 0.12);
  --shadow-soft: 0 14px 38px rgba(8, 31, 61, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(240, 198, 107, 0.20), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(17, 88, 75, 0.12), transparent 34%),
    var(--bg);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 16px clamp(22px, 4vw, 70px);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(222, 215, 199, 0.9);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: white;
  background: linear-gradient(145deg, var(--green), var(--green-2));
  box-shadow: 0 10px 24px rgba(7, 63, 53, 0.22);
  font-weight: 950;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  line-height: 1;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #40516b;
  font-weight: 800;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--green);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: white !important;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(7, 63, 53, 0.18);
}

main {
  width: min(1240px, calc(100% - 44px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  min-height: calc(92vh - 78px);
  padding: 58px 0 68px;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.35rem, 5.7vw, 6.65rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.subhead {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 15px;
  font-weight: 950;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: white;
  background: var(--green);
  box-shadow: 0 14px 28px rgba(7, 63, 53, 0.22);
}

.button.primary:hover {
  background: #052f28;
}

.button.secondary {
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(8, 31, 61, 0.06);
}

.microcopy {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-points span {
  padding: 9px 12px;
  border: 1px solid rgba(7, 63, 53, 0.15);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  font-weight: 900;
}

.hero-panel {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(222, 215, 199, 0.9);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at top right, rgba(240, 198, 107, 0.30), transparent 34%);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(7, 63, 53, 0.16), rgba(240, 198, 107, 0.20));
  filter: blur(2px);
}

.panel-header,
.sms-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.panel-header {
  margin-bottom: 20px;
}

.panel-header small {
  margin-left: auto;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--green);
  background: var(--gold-soft);
  font-weight: 900;
}

.live-dot,
.status-dot {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: #18a765;
  box-shadow: 0 0 0 8px rgba(24, 167, 101, 0.13);
}

.lead-card,
.info-card,
.step-card,
.trade-card,
.sms-preview,
.alert-copy,
.faq details {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.lead-card {
  padding: 24px;
}

.lead-details {
  display: grid;
  gap: 12px;
  margin: 0;
}

.lead-details div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
}

.lead-details dt {
  color: var(--muted);
  font-weight: 850;
}

.lead-details dd {
  margin: 0;
  font-weight: 950;
  text-align: right;
}

.lead-note {
  margin: 20px 0 0;
  padding: 16px;
  border-radius: 18px;
  color: var(--green);
  background: #edf6f1;
  font-weight: 780;
}

.mini-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 14px;
}

.mini-flow span {
  padding: 12px 10px;
  border-radius: 16px;
  color: #46566d;
  background: rgba(245, 241, 232, 0.9);
  font-size: 0.85rem;
  font-weight: 900;
  text-align: center;
}

.section-block {
  padding: 84px 0;
  border-top: 1px solid rgba(11, 31, 58, 0.08);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 32px;
}

.section-heading h2,
.demo-band h2,
.final-cta h2 {
  margin: 0 0 16px;
  font-size: clamp(2.45rem, 4.7vw, 4.65rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

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

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.info-card,
.step-card {
  padding: 28px;
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--green);
  font-weight: 950;
  letter-spacing: 0.12em;
}

.info-card h3,
.step-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: var(--green);
  background: var(--gold);
  font-weight: 950;
}

.demo-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin: 52px 0;
  padding: 42px;
  border-radius: 34px;
  color: white;
  background:
    radial-gradient(circle at 80% 20%, rgba(240, 198, 107, 0.28), transparent 26%),
    linear-gradient(135deg, #081f3d, #073f35);
  box-shadow: var(--shadow);
}

.demo-band .eyebrow,
.final-cta .eyebrow {
  color: var(--gold);
}

.demo-band p {
  max-width: 800px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.demo-button {
  flex: 0 0 auto;
  color: #073f35;
  background: var(--gold);
}

.alert-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.sms-preview,
.alert-copy {
  padding: 28px;
}

.sms-top {
  margin-bottom: 22px;
}

.alert-copy h3 {
  margin: 0 0 16px;
  font-size: 1.5rem;
}

.alert-copy ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.trade-card {
  display: grid;
  min-height: 104px;
  place-items: center;
  padding: 20px;
  font-weight: 950;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq details {
  padding: 22px 24px;
  box-shadow: none;
}

.faq summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 950;
}

.faq details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.final-cta {
  margin: 52px 0 86px;
  padding: 46px;
  border-radius: 34px;
  color: white;
  background:
    radial-gradient(circle at 80% 0%, rgba(240, 198, 107, 0.20), transparent 30%),
    #081f3d;
  box-shadow: var(--shadow);
}

.final-cta p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.button.secondary.light {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(22px, 4vw, 70px);
  color: var(--muted);
  background: white;
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: var(--ink);
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 900px;
  }

  .hero-panel {
    max-width: 720px;
  }

  .grid.three,
  .steps,
  .alert-layout {
    grid-template-columns: 1fr;
  }

  .grid.six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  main {
    width: min(100% - 34px, 1240px);
  }

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

  h1 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .demo-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .demo-button {
    width: 100%;
  }

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

@media (max-width: 560px) {
  .brand-text small {
    max-width: 210px;
  }

  .site-nav a:not(.nav-cta) {
    font-size: 0.92rem;
  }

  .button {
    width: 100%;
  }

  .section-block {
    padding: 58px 0;
  }

  .section-heading h2,
  .demo-band h2,
  .final-cta h2 {
    font-size: 2.48rem;
  }

  .lead-details div {
    display: block;
  }

  .lead-details dd {
    margin-top: 4px;
    text-align: left;
  }

  .mini-flow,
  .grid.six {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .demo-band,
  .final-cta {
    padding: 26px;
    border-radius: 26px;
  }

  .site-footer {
    display: block;
  }

  .site-footer span {
    display: block;
    margin-top: 8px;
  }
}

/* BEGIN PHASE 3.2 HERO POLISH */

@media (max-width: 1080px) {
  .hero {
    gap: 34px;
    padding-top: 46px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-panel {
    width: min(100%, 660px);
  }
}

@media (max-width: 820px) {
  h1 {
    font-size: clamp(2.95rem, 11vw, 4.65rem);
    line-height: 0.94;
    letter-spacing: -0.065em;
  }

  .subhead {
    font-size: 1.06rem;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-points {
    margin-top: 22px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.85rem, 13vw, 3.75rem);
  }

  .hero-panel {
    padding: 20px;
  }

  .lead-card {
    padding: 20px;
  }

  .panel-header small {
    font-size: 0.76rem;
  }
}

/* END PHASE 3.2 HERO POLISH */

/* BEGIN PHASE 4 CONVERSION POLISH */

.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  max-width: 760px;
}

.trust-strip div {
  padding: 16px 18px;
  border: 1px solid rgba(7, 63, 53, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 4px;
  color: var(--green);
  font-size: 0.94rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand span {
  margin-top: 5px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 850;
}

.footer-links a {
  color: var(--green);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

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

  .footer-links {
    margin-top: 14px;
  }
}

/* END PHASE 4 CONVERSION POLISH */

/* BEGIN FOUNDING 100 PRICING CSS */

.pricing {
  position: relative;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.founding-card {
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 82% 8%, rgba(240, 198, 107, 0.30), transparent 28%),
    linear-gradient(135deg, #081f3d, #073f35);
  border-color: rgba(240, 198, 107, 0.35);
  box-shadow: var(--shadow);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  margin-bottom: 20px;
  border-radius: 999px;
  color: #073f35;
  background: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-badge.muted {
  color: var(--green);
  background: var(--gold-soft);
}

.pricing-card h3 {
  margin: 0 0 18px;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 16px;
}

.price .currency {
  align-self: flex-start;
  padding-top: 13px;
  color: var(--gold);
  font-size: 1.55rem;
  font-weight: 950;
}

.price strong {
  color: #ffffff;
  font-size: clamp(4rem, 8vw, 6.4rem);
  line-height: 0.85;
  letter-spacing: -0.07em;
}

.price .period {
  padding-bottom: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.pricing-subtitle {
  max-width: 640px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.pricing-list {
  display: grid;
  gap: 11px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.pricing-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 750;
}

.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 950;
}

.pricing-cta {
  width: 100%;
}

.founding-card .button.primary {
  color: #073f35;
  background: var(--gold);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.20);
}

.founding-card .button.primary:hover {
  background: #ffd987;
}

.pricing-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.future-card .pricing-note {
  color: var(--muted);
}

.future-plans {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.plan-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbf8f1;
}

.plan-row span {
  color: var(--muted);
  font-weight: 900;
}

.plan-row strong {
  color: var(--ink);
  font-size: 1.25rem;
}

.plan-row.featured {
  border-color: rgba(7, 63, 53, 0.22);
  background: #edf6f1;
}

.plan-row.featured span,
.plan-row.featured strong {
  color: var(--green);
}

.savings-callout {
  padding: 18px;
  border-radius: 20px;
  color: var(--green);
  background: var(--gold-soft);
}

.savings-callout strong,
.savings-callout span {
  display: block;
}

.savings-callout strong {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.savings-callout span {
  color: #70613a;
  font-weight: 750;
}

.future-card .button.secondary {
  width: 100%;
  margin-top: 20px;
}

@media (max-width: 980px) {
  .pricing-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .pricing-card {
    padding: 24px;
    border-radius: 26px;
  }

  .price strong {
    font-size: 4.3rem;
  }

  .plan-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

/* END FOUNDING 100 PRICING CSS */


/* BEGIN INTERACTIVE_LEAD_SOURCE_PILLS */
.lead-source-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.lead-source-pill-row > * {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.interactive-pill {
  cursor: pointer;
  position: relative;
  outline: none;
}

.interactive-pill:hover,
.interactive-pill:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(8, 33, 26, 0.08);
}

.interactive-pill.is-active {
  background: #0f4f43 !important;
  color: #ffffff !important;
  border-color: #0f4f43 !important;
  box-shadow: 0 10px 24px rgba(8, 33, 26, 0.16);
}

.interactive-pill.is-active * {
  color: inherit !important;
}

.lead-source-explainer {
  margin-top: 16px;
  max-width: 720px;
  border: 1px solid #cfd4c7;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 0 12px 30px rgba(12, 29, 22, 0.08);
}

.lead-source-explainer__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: #0f4f43;
  margin-bottom: 10px;
}

.lead-source-explainer__eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #35a86b;
  display: inline-block;
}

.lead-source-explainer__title {
  font-size: 1.08rem;
  line-height: 1.3;
  font-weight: 800;
  color: #082d26;
  margin: 0 0 8px 0;
}

.lead-source-explainer__body {
  margin: 0;
  color: #4d5f5a;
  line-height: 1.65;
  font-size: 0.98rem;
}

@media (max-width: 640px) {
  .lead-source-explainer {
    padding: 16px;
    border-radius: 18px;
  }

  .lead-source-explainer__title {
    font-size: 1rem;
  }

  .lead-source-explainer__body {
    font-size: 0.95rem;
  }
}
/* END INTERACTIVE_LEAD_SOURCE_PILLS */

/* BEGIN HERO FOUNDING TEASER */

.founder-teaser {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px 12px;
  max-width: 760px;
  margin-top: 24px;
  padding: 10px 12px;
  border: 1px solid rgba(240, 198, 107, 0.58);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 243, 212, 0.78);
  box-shadow: 0 12px 28px rgba(8, 31, 61, 0.07);
  text-decoration: none;
}

.founder-teaser:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(8, 31, 61, 0.1);
}

.founder-teaser__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #073f35;
  background: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-teaser__main {
  color: var(--ink);
  font-weight: 850;
}

.founder-teaser__main strong {
  color: var(--green);
  font-weight: 950;
}

.founder-teaser__save {
  color: #6c5b2d;
  font-size: 0.9rem;
  font-weight: 850;
}

@media (max-width: 640px) {
  .founder-teaser {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 20px;
    padding: 14px;
  }

  .founder-teaser__save {
    font-size: 0.86rem;
  }
}

/* END HERO FOUNDING TEASER */

/* BEGIN BRAND LOCKUP POLISH */

.brand {
  gap: 13px;
  min-height: 54px;
  padding: 5px 8px 5px 5px;
  border-radius: 18px;
  transition: background-color 160ms ease, transform 160ms ease;
}

.brand:hover {
  background: rgba(7, 63, 53, 0.045);
  transform: translateY(-1px);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 14px 30px rgba(7, 63, 53, 0.22);
}

.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-mark-bg {
  fill: url("#brandGradient");
}

.brand-mark svg .brand-mark-bg {
  fill: #073f35;
}

.brand-mark-dot {
  fill: #f0c66b;
}

.brand-mark-path,
.brand-mark-check {
  fill: none;
  stroke: #ffffff;
  stroke-width: 3.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark-check {
  stroke: #f0c66b;
}

.brand-text {
  display: grid;
  gap: 4px;
}

.brand-text strong {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.025em;
}

.brand-text strong span {
  color: var(--green);
}

.brand-text small {
  margin-top: 0;
  color: #526478;
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.2;
}

@media (max-width: 560px) {
  .brand {
    gap: 11px;
    padding-right: 4px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .brand-text strong {
    font-size: 0.98rem;
  }

  .brand-text small {
    max-width: 190px;
    font-size: 0.8rem;
  }
}

/* END BRAND LOCKUP POLISH */

/* BEGIN FULL LOGO HEADER */

.brand.brand--image {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 58px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  text-decoration: none;
  flex-shrink: 0;
}

.brand.brand--image:hover {
  background: transparent;
  transform: none;
}

.brand-logo-image {
  display: block;
  width: 300px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 900px) {
  .brand-logo-image {
    width: 255px;
  }
}

@media (max-width: 640px) {
  .brand-logo-image {
    width: 220px;
  }
}

/* END FULL LOGO HEADER */

/* BEGIN MOBILE NAV CTA POLISH */

.nav-cta {
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta-mobile {
  display: none;
}

@media (max-width: 700px) {
  .site-nav {
    gap: 10px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.92rem;
    line-height: 1;
  }

  .nav-cta-desktop {
    display: none;
  }

  .nav-cta-mobile {
    display: inline;
  }
}

@media (max-width: 420px) {
  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .nav-cta {
    padding: 0 14px;
  }
}

/* END MOBILE NAV CTA POLISH */

/* BEGIN HERO FOUNDING TEASER POLISH */

.founder-teaser {
  display: inline-grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 18px;
  row-gap: 2px;
  width: fit-content;
  max-width: 100%;
  padding: 13px 20px 13px 14px;
  border-radius: 999px;
}

.founder-teaser__badge {
  grid-column: 1;
  grid-row: 1 / span 2;
  white-space: nowrap;
}

.founder-teaser__main {
  grid-column: 2;
  grid-row: 1;
  line-height: 1.15;
  white-space: nowrap;
}

.founder-teaser__save {
  grid-column: 2;
  grid-row: 2;
  line-height: 1.15;
  white-space: nowrap;
  opacity: 0.92;
}

@media (max-width: 760px) {
  .founder-teaser {
    display: grid !important;
    grid-template-columns: 1fr;
    width: 100%;
    border-radius: 22px;
    padding: 14px;
  }

  .founder-teaser__badge,
  .founder-teaser__main,
  .founder-teaser__save {
    grid-column: 1;
    grid-row: auto;
    white-space: normal;
  }
}

/* END HERO FOUNDING TEASER POLISH */


/* BEGIN MOBILE HEADER CTA FIX */

@media (max-width: 760px) {
  .site-header .button,
  .site-header .nav-cta,
  .site-header .header-cta,
  .main-nav .button {
    min-height: 42px !important;
    padding: 10px 16px !important;
    border-radius: 999px !important;
    font-size: 0.95rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .nav-cta-desktop {
    display: none !important;
  }

  .nav-cta-mobile {
    display: inline !important;
  }
}

/* END MOBILE HEADER CTA FIX */


/* BEGIN EXACT MOBILE NAV CTA FIX */

@media (max-width: 760px) {
  .site-header {
    align-items: center !important;
  }

  .site-nav .nav-cta,
  .nav-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 38px !important;
    flex: 0 0 auto !important;
    padding: 9px 13px !important;
    border-radius: 999px !important;
    font-size: 0.78rem !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 430px) {
  .site-nav .nav-cta,
  .nav-cta {
    min-height: 36px !important;
    padding: 8px 12px !important;
    font-size: 0.74rem !important;
  }
}

/* END EXACT MOBILE NAV CTA FIX */

