:root {
  --navy: #06111d;
  --navy2: #0b1d2f;
  --green: #0b8743;
  --green2: #20d789;
  --gold: #f2c94c;
  --cream: #f4f7f3;
  --ink: #071810;
  --muted: #5c6f64;
  --line: #dbe5de;
  --shell: min(1180px, calc(100% - 40px));
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--cream);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
}
a {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  letter-spacing: -0.04em;
}
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 100;
  background: #fff;
  padding: 10px;
}
.site-header {
  height: 84px;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 35px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  background: #07131f;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-phone {
  color: var(--gold);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.25px;
  white-space: nowrap;
  text-decoration: none;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 9px;
  white-space: nowrap;
}
.brand img {
  width: 190px;
  height: 58px;
  object-fit: contain;
  animation: marketer-glow 3.8s ease-in-out infinite;
}
@keyframes marketer-glow {
  0%, 100% { filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 5px rgba(45, 201, 255, 0.25)); }
  50% { filter: drop-shadow(0 7px 17px rgba(0, 0, 0, 0.34)) drop-shadow(0 0 11px rgba(45, 201, 255, 0.72)) drop-shadow(0 0 16px rgba(233, 177, 14, 0.28)); }
}
@media (prefers-reduced-motion: reduce) {
  .brand img { animation: none; filter: drop-shadow(0 7px 16px rgba(45, 201, 255, 0.38)); }
}
.brand > span { display: none; }
.brand strong {
  font-size: 21px;
  line-height: 1;
}
.brand strong span {
  display: inline;
  color: var(--gold);
}
.brand small {
  font-size: 9px;
  letter-spacing: 2.4px;
  color: #9db2a5;
}
.site-header nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.site-header nav a {
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
  color: #bdc9d4;
}
.site-header nav a:hover {
  color: var(--gold);
}
.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 49px;
  padding: 12px 19px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
}
.header-cta {
  background: var(--gold);
  color: #0b1c15;
}
.pricing-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 75px;
  align-items: center;
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(
      circle at 72% 45%,
      rgba(32, 215, 137, 0.16),
      transparent 27%
    ),
    linear-gradient(135deg, #07131f, #0b2434);
  color: #fff;
}
.pricing-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
}
.hero-orbit {
  position: absolute;
  right: -180px;
  top: -170px;
  width: 670px;
  height: 670px;
  border: 1px solid rgba(242, 201, 76, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(32, 215, 137, 0.025),
    0 0 0 160px rgba(242, 201, 76, 0.018);
  z-index: -1;
}
.eyebrow {
  color: var(--green);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 2.2px;
}
.pricing-hero .eyebrow,
.included-section .eyebrow,
.closing-cta .eyebrow {
  color: var(--gold);
}
.hero-copy h1 {
  font-size: clamp(52px, 6.3vw, 85px);
  line-height: 0.96;
  max-width: 750px;
  margin-bottom: 26px;
}
.hero-copy h1 em {
  color: var(--green2);
  font-style: normal;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 670px;
  color: #bac9d4;
  font-size: 18px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 31px;
}
.button.primary {
  background: linear-gradient(100deg, #0b8743, #13a956);
  color: #fff;
}
.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}
.button.dark {
  background: #092619;
  color: #fff;
}
.button.gold {
  background: var(--gold);
  color: #0a1a12;
}
.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}
.rejection-focus {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-top: 3px solid var(--gold);
  border-radius: 16px;
  background: rgba(9, 28, 42, 0.78);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.27);
  backdrop-filter: blur(12px);
}
.rejection-focus > p {
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 2px;
  color: #8fa3b1;
}
.rejection-focus article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.rejection-focus article span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  background: rgba(32, 215, 137, 0.1);
  border: 1px solid rgba(32, 215, 137, 0.34);
  color: var(--green2);
  font-size: 11px;
  font-weight: 950;
}
.rejection-focus b,
.rejection-focus small {
  display: block;
}
.rejection-focus b {
  font-size: 17px;
}
.rejection-focus small {
  margin-top: 4px;
  color: #91a5b4;
  line-height: 1.4;
}
.plan-section,
.included-section,
.questions {
  padding: 105px max(24px, calc((100vw - 1180px) / 2));
}
.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}
.section-heading h2,
.volume-copy h2,
.questions h2 {
  font-size: clamp(39px, 4.4vw, 58px);
  line-height: 1.02;
  margin-bottom: 18px;
}
.section-heading > p:last-child,
.volume-copy > p,
.questions > div > p {
  color: var(--muted);
  line-height: 1.65;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
}
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 33px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(10, 52, 30, 0.08);
}
.plan-card.featured {
  background: linear-gradient(155deg, #0c7139, #064523);
  color: #fff;
  border-color: #168e49;
  transform: translateY(-13px);
  box-shadow: 0 26px 65px rgba(7, 96, 47, 0.22);
}
.plan-card.enterprise {
  background: #e8efe9;
}
.popular {
  position: absolute;
  top: 0;
  right: 23px;
  transform: translateY(-50%);
  padding: 7px 10px;
  border-radius: 5px;
  background: var(--gold);
  color: #132119;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 1.4px;
}
.plan-top > p {
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 1.8px;
  color: var(--green);
}
.featured .plan-top > p {
  color: var(--gold);
}
.plan-top h3 {
  font-size: 29px;
  line-height: 1.05;
  min-height: 63px;
}
.price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: 30px;
}
.price strong {
  font-size: 49px;
  line-height: 0.9;
  letter-spacing: -0.06em;
}
.price span {
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
}
.featured .price span {
  color: #c8e7d3;
}
.plan-top > small {
  display: block;
  margin-top: 12px;
  min-height: 34px;
  color: #73867a;
  font-size: 11px;
  line-height: 1.45;
}
.featured .plan-top > small {
  color: #bee0ca;
}
.plan-card ul {
  list-style: none;
  padding: 25px 0;
  margin: 25px 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  flex: 1;
}
.featured ul {
  border-color: rgba(255, 255, 255, 0.18);
}
.plan-card li {
  position: relative;
  padding-left: 26px;
  font-size: 13px;
  line-height: 1.4;
}
.plan-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 950;
}
.featured li:before {
  color: var(--gold);
}
.plan-card .button {
  width: 100%;
}
.agent-pay-section {
  padding: 105px max(24px, calc((100vw - 1180px) / 2));
  background: #07131f;
  color: #fff;
}
.agent-pay-section .section-heading > p:last-child { color: #9cb0bc; }
.agent-pay-section .eyebrow { color: var(--gold); }
.agent-pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
}
.agent-pay-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: #0a1b2a;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.2);
}
.agent-pay-card.hourly { border-top: 3px solid var(--green2); }
.agent-pay-card.flat-fee { background: #f4f7f3; color: var(--ink); }
.agent-pay-card.commission {
  border-color: rgba(242, 201, 76, 0.45);
  background: linear-gradient(155deg, #0c7139, #064523);
}
.agent-pay-card > p {
  margin-bottom: 13px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 1.8px;
}
.agent-pay-card.flat-fee > p { color: var(--green); }
.agent-pay-card h3 {
  min-height: 64px;
  margin-bottom: 25px;
  font-size: 29px;
  line-height: 1.06;
}
.pay-rate {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  min-height: 51px;
}
.pay-rate strong {
  color: var(--gold);
  font-size: 48px;
  line-height: 0.9;
  letter-spacing: -0.06em;
}
.flat-fee .pay-rate strong { color: var(--green); font-size: 40px; }
.pay-rate span { color: #a7bac5; font-size: 12px; font-weight: 800; }
.flat-fee .pay-rate span { color: var(--muted); }
.agent-pay-card ul {
  display: grid;
  flex: 1;
  gap: 14px;
  margin: 26px 0;
  padding: 25px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  list-style: none;
}
.flat-fee ul { border-color: var(--line); }
.agent-pay-card li {
  position: relative;
  padding-left: 24px;
  color: #c2d0d8;
  font-size: 13px;
  line-height: 1.5;
}
.flat-fee li { color: var(--muted); }
.agent-pay-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 950;
}
.pay-example {
  padding: 18px;
  border: 1px solid rgba(32, 215, 137, 0.24);
  border-radius: 10px;
  background: rgba(32, 215, 137, 0.08);
}
.pay-example span,
.pay-example small { display: block; color: #9fb2bc; font-size: 10px; }
.pay-example strong {
  display: block;
  margin: 6px 0;
  color: var(--green2);
  font-size: 24px;
}
.commission-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}
.commission-steps div {
  padding: 13px 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.12);
  text-align: center;
}
.commission-steps span,
.commission-steps small { display: block; color: #c4dfce; font-size: 8px; font-weight: 800; }
.commission-steps strong {
  display: block;
  margin: 5px 0;
  color: var(--gold);
  font-size: 28px;
}
.agent-pay-note {
  max-width: 970px;
  margin: 28px auto 0;
  color: #8299a6;
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}
.volume-section {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 80px;
  align-items: center;
  padding: 100px max(24px, calc((100vw - 1180px) / 2));
  background: #e9f1eb;
  border-block: 1px solid #d2dfd5;
}
.tier-table {
  margin-top: 33px;
  border: 1px solid #cddbd0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.tier-table > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 15px 19px;
  border-top: 1px solid #e1e9e3;
}
.tier-table > div:first-child {
  border: 0;
  background: #082a1a;
  color: #fff;
}
.tier-table b {
  text-align: right;
  color: var(--green);
}
.tier-table .table-head span:last-child {
  text-align: right;
}
.calculator {
  padding: 36px;
  border-radius: 18px;
  background: linear-gradient(150deg, #071827, #0c2c2b);
  color: #fff;
  box-shadow: 0 25px 65px rgba(5, 39, 23, 0.24);
}
.calculator h3 {
  font-size: 32px;
}
.calculator label {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 13px;
  margin: 26px 0;
  color: #b8c7d0;
  font-size: 12px;
  font-weight: 800;
}
.calculator output {
  color: var(--gold);
  font-size: 22px;
}
.calculator input {
  grid-column: 1/-1;
  width: 100%;
  accent-color: var(--green2);
}
.calc-result {
  padding: 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.calc-result span,
.calc-result small {
  display: block;
  color: #9db1bd;
}
.calc-result strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--gold);
  font-size: 48px;
  letter-spacing: -0.05em;
}
.calc-annual {
  display: flex;
  justify-content: space-between;
  padding: 17px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}
.calc-annual b {
  color: #fff;
}
.calc-note {
  margin: 17px 0 22px;
  color: #8299a6;
  font-size: 10px;
  line-height: 1.55;
}
.calculator .button {
  width: 100%;
}
.included-section {
  background: #07131f;
  color: #fff;
}
.section-heading.light > p:last-child {
  color: #9cb0bc;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.included-grid article {
  padding: 35px;
  background: #0a1b2a;
}
.included-grid span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 950;
}
.included-grid h3 {
  margin: 16px 0 10px;
  font-size: 23px;
}
.included-grid p {
  margin: 0;
  color: #94a8b6;
  font-size: 13px;
  line-height: 1.6;
}
.questions {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 85px;
}
.questions > div:first-child {
  position: sticky;
  top: 110px;
  align-self: start;
}
.questions a {
  color: var(--green);
  font-weight: 850;
}
.faq-list details {
  border-top: 1px solid #cedbd1;
}
.faq-list details:last-child {
  border-bottom: 1px solid #cedbd1;
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 22px 4px;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: var(--green);
  font-size: 23px;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list p {
  margin: -4px 48px 23px 4px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}
.closing-cta {
  display: grid;
  grid-template-columns: 135px 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 55px max(24px, calc((100vw - 1180px) / 2));
  background: linear-gradient(100deg, #06351e, #0b7e3d);
  color: #fff;
}
.closing-cta img {
  width: 125px;
  height: 125px;
  object-fit: cover;
  border-radius: 50%;
}
.closing-cta h2 {
  font-size: 39px;
  margin-bottom: 10px;
}
.closing-cta p:not(.eyebrow) {
  margin: 0;
  color: #c3e4ce;
}
.closing-cta .button {
  min-width: 190px;
}
footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 45px;
  padding: 50px max(24px, calc((100vw - 1180px) / 2));
  background: #03090e;
  color: #fff;
}
footer > div:first-child > p {
  margin: 13px 0 0;
  color: #81929d;
  font-size: 12px;
}
footer > div:nth-child(2) {
  display: grid;
  gap: 7px;
  text-align: right;
}
footer > div:nth-child(2) a {
  color: #c4d0d8;
  font-size: 12px;
}
footer > p {
  grid-column: 1/-1;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #6f818e;
  font-size: 10px;
  line-height: 1.55;
}
@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .site-header nav {
    display: none;
  }
  .pricing-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 75px;
  }
  .rejection-focus {
    max-width: 650px;
  }
  .plan-grid {
    grid-template-columns: 1fr;
  }
  .agent-pay-grid {
    grid-template-columns: 1fr;
  }
  .plan-card.featured {
    transform: none;
  }
  .volume-section,
  .questions {
    grid-template-columns: 1fr;
  }
  .included-grid {
    grid-template-columns: 1fr 1fr;
  }
  .questions > div:first-child {
    position: static;
  }
  .closing-cta {
    grid-template-columns: 95px 1fr;
  }
  .closing-cta img {
    width: 90px;
    height: 90px;
  }
  .closing-cta .button {
    grid-column: 2;
    justify-self: start;
  }
}
@media (max-width: 620px) {
  .site-header {
    height: 72px;
    padding-inline: 14px;
  }
  .brand img {
    width: 145px;
    height: 46px;
  }
  .brand strong {
    font-size: 18px;
  }
  .header-phone { display: none; }
  .header-cta {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 11px;
  }
  .pricing-hero {
    padding: 58px 20px;
  }
  .hero-copy h1 {
    font-size: 47px;
  }
  .hero-actions {
    display: grid;
  }
  .plan-section,
  .agent-pay-section,
  .included-section,
  .questions,
  .volume-section {
    padding: 74px 20px;
  }
  .plan-card {
    padding: 27px 23px;
  }
  .included-grid {
    grid-template-columns: 1fr;
  }
  .closing-cta {
    grid-template-columns: 1fr;
    padding: 45px 20px;
  }
  .closing-cta img {
    width: 78px;
    height: 78px;
  }
  .closing-cta .button {
    grid-column: auto;
  }
  .closing-cta h2 {
    font-size: 33px;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 42px 20px;
  }
  footer > div:nth-child(2) {
    text-align: left;
  }
  .price strong {
    font-size: 44px;
  }
}
/* Multi-page mobile navigation override */
.nav-toggle {
  display: none;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-weight: 800;
}
@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }
  .site-header > .header-phone { display: none; }
  .nav-toggle {
    display: block;
  }
  .site-header nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 84px;
    padding: 18px 24px;
    background: #07131f;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  }
  .site-header nav.is-open {
    display: grid;
    justify-content: start;
    gap: 15px;
  }
}

/* Keep the existing pricing design usable on narrow screens. */
section[id], main[id] { scroll-margin-top: 100px; }
:focus-visible { outline: 3px solid #e9b10e; outline-offset: 4px; }
.plan-card, .agent-pay-card { min-width: 0; }
.price, .pay-rate { flex-wrap: wrap; }
@media (max-width: 980px) {
  .site-header nav { top: 100%; max-height: calc(100dvh - 100px); overflow-y: auto; }
  .site-header nav a { min-height: 36px; display: inline-flex; align-items: center; }
}
@media (max-width: 620px) {
  .plan-grid, .agent-pay-grid { grid-template-columns: minmax(0, 1fr); }
  .agent-pay-card { padding: 27px 23px; }
  .commission-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .commission-steps div { padding-inline: 4px; }
  .commission-steps strong { font-size: clamp(20px, 7vw, 28px); }
  .site-header { gap: 10px; grid-template-columns: minmax(0, 1fr) auto; }
  .site-header > .header-cta { display: none; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

.site-header nav .mobile-signin { display:none; }
@media(max-width:620px) { .site-header nav .mobile-signin { display:inline-flex; } }
