/* ==========================================================================
   AtllasRE — the brokerage, in the Atllas parent design system.
   Same paper/ink base, same type, same rhythm as atllas.com. The only thing
   that changes is the accent: AtllasRE's cyan, taken from the original mark.
   ========================================================================== */

:root {
  --re:        #0c0d10;   /* monochrome: ink on paper */
  --re-soft:   #ffffff;   /* white on night */
  --re-fill:   rgba(12, 13, 16, .06);
}

/* ------------------------------------------------------------- accents --- */

/* The eyebrow dot and every accent surface adopt the brokerage cyan. */
.eyebrow::before { background: var(--re); box-shadow: 0 0 0 4px rgba(255, 255, 255, .1); }
.eyebrow--onDark { color: rgba(255, 255, 255, .55); }
.eyebrow--onDark::before { background: var(--re-soft); box-shadow: 0 0 0 4px rgba(255, 255, 255, .14); }

.btn--re { background: var(--re); color: #fff; }
.btn--re:hover { background: #26282e; color: #fff; }


/* ----------------------------------------------------------------- nav --- */

.nav__links {
  display: flex; align-items: center; gap: 24px;
  margin-left: auto; margin-right: 6px;
  font: 500 13.5px var(--sans); color: rgba(255, 255, 255, .68);
}
.nav.is-scrolled .nav__links { color: var(--ink-2); }
.nav__links a:hover { color: #fff; }
.nav.is-scrolled .nav__links a:hover { color: var(--re); }
.nav__right { display: flex; align-items: center; gap: 16px; }

.tlink { font-size: 13.5px; color: rgba(255, 255, 255, .7); border-bottom: 1px solid rgba(255, 255, 255, .28); padding-bottom: 1px; }
.tlink:hover { color: #fff; }
.nav.is-scrolled .tlink { color: var(--ink-2); border-bottom-color: var(--line); }

@media (max-width: 899px) { .nav__links, .nav__right .tlink { display: none; } }

/* ---------------------------------------------------------------- hero --- */

.hero--re { min-height: 0; }
.hero--re .hero__base { background: linear-gradient(180deg, #15161b 0%, #101115 48%, #0b0c0f 100%); }

.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: 54px; align-items: center;
  padding-top: 104px; padding-bottom: 84px;
}
.hero__grid > * { min-width: 0; }

.hero--re .hero__title { font-size: clamp(2.7rem, 5.2vw, 4.1rem); max-width: 13ch; }
.hero--re .hero__sub strong { color: #fff; font-weight: 600; }

.hero__ctas { margin-top: 30px; }

.trust {
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  margin-top: 26px;
  font: 400 12px var(--mono);
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .5);
}
.trust span { display: inline-flex; align-items: center; gap: 7px; }
.trust span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--re-soft); }

@media (max-width: 959px) {
  .hero__grid { grid-template-columns: 1fr; gap: 38px; padding-top: 92px; padding-bottom: 60px; }
}

/* ------------------------------------------------------------ the call --- */

/* Signature element. A dark instrument panel that sits on the night hero and
   later reads as the same object the portal shows. */
.call {
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: rgba(255, 255, 255, .045);
  backdrop-filter: blur(6px);
  overflow: hidden;
  box-shadow: 0 40px 90px -60px #000;
}

.call__bar {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line-dark-2);
  background: rgba(255, 255, 255, .03);
}
.call__live {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  animation: axpulse 2.4s ease-out infinite;
}
.call__who { font: 500 13.5px var(--sans); color: #fff; }
.call__meta { margin-left: auto; font: 400 11px var(--mono); letter-spacing: .06em; text-transform: uppercase; color: rgba(255, 255, 255, .6); }

.call__wave {
  display: flex; align-items: center; gap: 15px;
  padding: 17px 16px;
  border-bottom: 1px solid var(--line-dark-2);
}

.play {
  flex: none; width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, .07);
  color: #fff;
  display: grid; place-items: center; cursor: pointer;
  transition: background .16s ease, border-color .16s ease;
}
.play:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .3); }
.play svg { width: 14px; height: 14px; }
.play .ico-pause { display: none; }
.play.is-playing .ico-play { display: none; }
.play.is-playing .ico-pause { display: block; }

.bars { flex: 1; display: flex; align-items: center; gap: 3px; height: 38px; }
.bars i {
  flex: 1; min-width: 2px; border-radius: 2px;
  background: rgba(255, 255, 255, .2); height: 14%;
  transition: height .12s linear, background .12s linear;
}
.bars i.on { background: var(--re-soft); }

.call__time { flex: none; font: 400 11.5px var(--mono); color: rgba(255, 255, 255, .6); min-width: 34px; text-align: right; }

.script { padding: 6px 16px 16px; display: flex; flex-direction: column; }

.line {
  display: grid; grid-template-columns: 58px 1fr; gap: 12px;
  padding: 9px 0;
  transition: opacity .35s ease, transform .35s ease;
}
/* Hidden only once the script has taken control — a dead script must never
   blank the transcript. */
.js-call .line { opacity: 0; transform: translateY(5px); }
.js-call .line.in { opacity: 1; transform: none; }

.line__who {
  font: 400 10px var(--mono); letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255, 255, 255, .6); padding-top: 3px;
}
.line--ai .line__who { color: var(--re-soft); }
.line__txt { font-size: 14px; line-height: 1.5; color: rgba(255, 255, 255, .62); }
.line--ai .line__txt { color: #fff; }

.call__foot {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 12px;
  padding: 13px 16px;
  border-top: 1px solid var(--line-dark-2);
  background: rgba(15, 169, 104, .09);
  font: 400 11.5px var(--mono);
  line-height: 1.5;
  color: rgba(255, 255, 255, .58);
}
.call__stamp { color: var(--green-soft); }

/* ---------------------------------------------------------- calculator --- */

.calc {
  display: grid; grid-template-columns: 1fr 1fr;
  margin-top: 38px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 26px 64px -48px rgba(11, 12, 16, .5);
}
.calc__in { padding: 32px; border-right: 1px solid var(--line); }
.calc__out { padding: 32px; background: var(--paper-2); }

.field { margin-bottom: 28px; }
.field:last-child { margin-bottom: 0; }
.field__top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 13px; }
.field__lab { font: 500 13px var(--sans); letter-spacing: -.01em; color: var(--ink-3); }
.field__val { font: 700 20px var(--sans); letter-spacing: -.025em; font-variant-numeric: tabular-nums; }

input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; border-radius: 2px;
  background: #e4e3de; outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--re); border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--re), 0 2px 6px rgba(11,12,16,.2);
  cursor: grab;
}
input[type="range"]::-webkit-slider-thumb:active { cursor: grabbing; }

.seg { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; padding: 3px; background: var(--paper-2); border: 1px solid var(--line-soft); border-radius: 999px; }
.seg button {
  min-height: 36px; border: 1px solid transparent; border-radius: 999px;
  background: transparent; color: var(--ink-4);
  font: 500 13px var(--sans); cursor: pointer;
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}
.seg button:hover { color: var(--ink); }
.seg button[aria-pressed="true"] {
  background: #fff; color: var(--ink); font-weight: 600;
  border-color: rgba(12, 13, 16, .08);
  box-shadow: 0 1px 2px rgba(12, 13, 16, .09);
}

.row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.row__k { font-size: 14.5px; color: var(--ink-2); }
.row__v { font: 600 19px var(--sans); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }

.keep { padding-top: 22px; }
.keep__k { font: 500 13px var(--sans); letter-spacing: -.01em; color: var(--ink-3); }
.keep__v {
  font: 700 clamp(2.5rem, 5.4vw, 3.6rem) var(--sans);
  letter-spacing: -.045em; line-height: 1;
  color: var(--re); margin-top: 10px;
  font-variant-numeric: tabular-nums;
}
.keep__note { font-size: 13.5px; line-height: 1.5; color: var(--ink-3); margin-top: 12px; max-width: 40ch; }

.calc__toggle { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font: 400 11.5px var(--mono); color: var(--ink-4); cursor: pointer; }
.calc__toggle input { accent-color: var(--re); }
.calc__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 24px; }

.tlink--ink { font-size: 13.5px; color: var(--ink-2); border-bottom: 1px solid var(--line); padding-bottom: 1px; }
.tlink--ink:hover { color: var(--re); border-color: var(--re); }

@media (max-width: 859px) {
  .calc { grid-template-columns: 1fr; }
  .calc__in { border-right: 0; border-bottom: 1px solid var(--line); }
  .calc__in, .calc__out { padding: 26px; }
}

/* --------------------------------------------------- calculator (dark) --- */

/* The calculator is the hero. An agent's first question is what this costs
   them versus what they pay now, so they get their own number before they get
   a product tour. On the night hero it reads as an instrument panel. */
.calc--dark {
  grid-template-columns: 1fr;
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, .045);
  backdrop-filter: blur(6px);
  box-shadow: 0 40px 90px -60px #000;
}
.calc--dark .calc__in { border-right: 0; border-bottom: 1px solid var(--line-dark-2); }
.calc--dark .calc__out { background: rgba(255, 255, 255, .1); }

.calc--dark .field__lab,
.calc--dark .keep__k { color: rgba(255, 255, 255, .6); }
.calc--dark .field__val { color: #fff; }

.calc--dark input[type="range"] { background: rgba(255, 255, 255, .16); }
.calc--dark input[type="range"]::-webkit-slider-thumb {
  border-color: #15161b;
  box-shadow: 0 0 0 1px var(--re-soft);
  background: var(--re-soft);
}

.calc--dark .seg { background: rgba(255, 255, 255, .06); border-color: var(--line-dark-2); }
.calc--dark .seg button { color: rgba(255, 255, 255, .6); }
.calc--dark .seg button:hover { color: #fff; }
.calc--dark .seg button[aria-pressed="true"] {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .18);
  color: #fff;
  box-shadow: none;
}

.calc--dark .row { border-bottom-color: var(--line-dark-2); }
.calc--dark .row__k { color: rgba(255, 255, 255, .62); }
.calc--dark .row__v { color: #fff; }
.calc--dark .keep__v { color: var(--re-soft); }
.calc--dark .keep__note { color: rgba(255, 255, 255, .55); }
.calc--dark .calc__toggle { color: rgba(255, 255, 255, .45); }

/* ------------------------------------------------------------- product --- */

.showcase { display: flex; flex-direction: column; gap: 68px; margin-top: 48px; }
.show { display: grid; grid-template-columns: .82fr 1.18fr; gap: 46px; align-items: center; }
.show:nth-child(even) .show__copy { order: 2; }
.show > * { min-width: 0; }
.show__k { font: 400 10.5px var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--re); }
.show h3 { font: 700 24px var(--sans); letter-spacing: -.03em; line-height: 1.2; margin-top: 12px; }
.show p { color: var(--ink-2); font-size: 15.5px; line-height: 1.6; margin-top: 12px; }

.log { display: flex; flex-direction: column; }
.log__r { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.09); font-size: 13.5px; }
.log__r:last-child { border-bottom: 0; }
.log__t { font: 400 11.5px var(--mono); color: rgba(255,255,255,.6); }
.log__n { color: #fff; }
.tag { font: 400 10px var(--mono); letter-spacing: .08em; text-transform: uppercase; padding: 3px 7px; border-radius: 4px; }
.tag--won { color: var(--green-soft); background: rgba(15,169,104,.16); }
.tag--mid { color: rgba(255,255,255,.55); background: rgba(255,255,255,.08); }

.pipe { display: flex; flex-direction: column; gap: 8px; }
.pipe__r { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; padding: 12px 13px; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; background: rgba(255,255,255,.04); }
.pipe__a { font-size: 13.5px; color: #fff; }
.pipe__m { font: 400 11px var(--mono); color: rgba(255,255,255,.6); margin-top: 3px; }
.pipe__s { font: 400 10px var(--mono); letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.bar { height: 4px; border-radius: 2px; background: rgba(255,255,255,.12); margin-top: 9px; overflow: hidden; }
.bar i { display: block; height: 4px; border-radius: 2px; background: var(--re-soft); }

.earn__k { font: 400 11px var(--mono); letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.earn__big { font: 700 38px var(--sans); letter-spacing: -.04em; color: var(--green-soft); margin-top: 6px; font-variant-numeric: tabular-nums; }
.earn__split { display: flex; gap: 9px; margin-top: 18px; }
.earn__c { flex: 1; padding: 12px; border: 1px solid rgba(255,255,255,.1); border-radius: 9px; }
.earn__ck { font: 400 11px var(--mono); letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.earn__cv { font: 700 17px var(--sans); color: #fff; margin-top: 4px; }

@media (max-width: 859px) {
  .show { grid-template-columns: 1fr; gap: 24px; }
  .show:nth-child(even) .show__copy { order: 0; }
  .showcase { gap: 52px; }
}

/* -------------------------------------------------------------- humans --- */

.humans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 40px; }
.human { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 20px 50px -46px rgba(11,12,16,.5); }
.human__i { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 8px; background: var(--re-fill); color: var(--re); }
.human h3 { font: 700 16.5px var(--sans); letter-spacing: -.02em; margin-top: 15px; }
.human p { color: var(--ink-2); font-size: 14px; line-height: 1.55; margin-top: 8px; }


@media (max-width: 1023px) { .humans { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 559px)  { .humans { grid-template-columns: 1fr; } .broker__note { margin-left: 0; } }

/* --------------------------------------------------------------- steps --- */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 40px; border-top: 1px solid var(--line); }
.stp { padding: 26px 26px 0 0; border-right: 1px solid var(--line); }
.stp:last-child { border-right: 0; }
.stp:not(:first-child) { padding-left: 26px; }
.stp__n { font: 500 11px var(--mono); letter-spacing: .16em; color: var(--ink-4); }
.stp h3 { font: 700 18px var(--sans); letter-spacing: -.025em; margin-top: 12px; }
.stp p { font-size: 14px; line-height: 1.55; color: var(--ink-2); margin-top: 8px; }

@media (max-width: 759px) {
  .steps { grid-template-columns: 1fr; }
  .stp { border-right: 0; border-bottom: 1px solid var(--line); padding: 22px 0; }
  .stp:not(:first-child) { padding-left: 0; }
  .stp:last-child { border-bottom: 0; }
}

/* ------------------------------------------------------------- compare --- */

.cmp { margin-top: 36px; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; }
.cmp__scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { text-align: left; padding: 15px 18px; font-size: 14.5px; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th { font: 400 10.5px var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-4); background: var(--paper); }
tbody td { color: var(--ink-2); }
tbody tr:last-child td { border-bottom: 0; }
th.is-us, td.is-us { background: var(--re-fill); }
thead th.is-us { color: var(--re); }
td.is-us { color: var(--ink); font-weight: 500; }

/* ------------------------------------------------------------- pricing --- */

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px; align-items: start; }
.plan { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 22px 56px -48px rgba(11,12,16,.5); }
.plan--best { border-color: rgba(12,13,16,.36); }
.plan--best::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--re); border-radius: 16px 16px 0 0; }
.plan__badge { position: absolute; top: 0; right: 18px; transform: translateY(-50%); font: 400 10px var(--mono); letter-spacing: .12em; text-transform: uppercase; color: #fff; background: var(--re); padding: 4px 9px; border-radius: 5px; }
.plan__k { font: 400 10.5px var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-4); }
.plan__p { font: 700 36px var(--sans); letter-spacing: -.04em; margin-top: 12px; font-variant-numeric: tabular-nums; }
.plan__p span { font: 400 15px var(--sans); color: var(--ink-4); letter-spacing: 0; }
.plan__eq { font-size: 14px; color: var(--ink-2); margin-top: 6px; }
.plan .btn { width: 100%; margin-top: 20px; }
.btn--out { border-color: var(--line); color: var(--ink); background: #fff; }
.btn--out:hover { border-color: var(--ink-4); color: var(--ink); background: var(--paper-2); }

.incl { margin-top: 22px; padding: 20px 22px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.incl__k { font: 400 10.5px var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-4); }
.incl__l { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 14px 0 0; padding: 0; list-style: none; }
.incl__l li { display: flex; align-items: center; gap: 8px; font-size: 14.5px; }
.incl__l li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--re); flex: none; }

.fine { font: 400 12.5px var(--mono); line-height: 1.6; color: var(--ink-4); margin-top: 16px; }
.fine--onDark { color: rgba(255,255,255,.45); }

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

/* ----------------------------------------------------------------- faq --- */

.faq { margin-top: 36px; border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 0; cursor: pointer; list-style: none;
  font: 600 16.5px var(--sans); letter-spacing: -.02em;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: ""; flex: none; width: 9px; height: 9px;
  border-right: 1.5px solid var(--ink-4); border-bottom: 1.5px solid var(--ink-4);
  transform: rotate(45deg) translateY(-2px); transition: transform .2s ease;
}
details[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
details p { color: var(--ink-2); font-size: 15px; line-height: 1.65; padding-bottom: 22px; max-width: 74ch; }

/* ------------------------------------------------------------ last cta --- */

.last { text-align: center; }
.last .h2 { max-width: 20ch; margin: 14px auto 0; }
.last .btn { margin-top: 28px; }
.safety { max-width: 430px; margin: 38px auto 0; padding: 20px; border: 1px solid var(--line-dark); border-radius: 14px; background: rgba(255,255,255,.05); }
.safety__t { font: 600 15px var(--sans); color: #fff; }
.safety__b { font-size: 13.5px; color: rgba(255,255,255,.62); margin-top: 5px; }
.safety a { display: inline-block; margin-top: 12px; }

/* -------------------------------------------------------------- footer --- */

/* The only place this site is allowed to look like a brokerage. Agents check. */
.foot__nav { display: flex; flex-wrap: wrap; gap: 10px 24px; font: 400 13.5px var(--sans); color: var(--ink-2); }
.foot__nav a:hover { color: var(--re); }
.foot__legal { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 18px 36px; align-items: flex-start; }
.foot__legal p { font: 400 12px var(--mono); line-height: 1.75; color: var(--ink-4); max-width: 64ch; }
.eho { display: flex; align-items: center; gap: 10px; font: 400 11px var(--mono); line-height: 1.4; color: var(--ink-4); }
.eho svg { width: 26px; height: 26px; flex: none; }

/* ---------------------------------------------------------------- cols --- */

/* Bordered columns: a mono label, a short headline, one supporting line.
   Same component the parent site uses for its thesis and team. */
.cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.col {
  display: flex; flex-direction: column; gap: 9px;
  padding: 24px 26px 0 0;
  border-right: 1px solid var(--line);
}
.col:last-child { border-right: 0; }
.col:not(:first-child) { padding-left: 26px; }

.col__k { font: 400 10.5px var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--re); }
.col__t { font: 700 19px var(--sans); letter-spacing: -.025em; }
.col__v { font-size: 14.5px; line-height: 1.6; color: var(--ink-2); }

@media (max-width: 859px) {
  .cols { grid-template-columns: 1fr; }
  .col { border-right: 0; border-bottom: 1px solid var(--line); padding: 22px 0; }
  .col:not(:first-child) { padding-left: 0; }
  .col:last-child { border-bottom: 0; }
}

/* ------------------------------------------------------------- lockup --- */

/* The original Atllas A, flattened to a single colour so it sits quietly next
   to the wordmark instead of competing with it. White on night, ink on paper. */
.lock { display: inline-flex; align-items: center; gap: 9px; }
.lock__m { height: 23px; width: auto; flex: none; }
.lock__m--ink { display: none; }
.nav.is-scrolled .lock__m--white { display: none; }
.nav.is-scrolled .lock__m--ink { display: block; }

.lock__w { font: 700 21px var(--sans); letter-spacing: -.045em; color: #fff; }
.nav.is-scrolled .lock__w { color: var(--ink); }

.footer .lock__m--white { display: none; }
.footer .lock__m--ink { display: block; }
.footer .lock__w { color: var(--ink); font-size: 19px; }

/* ------------------------------------------------------- monochrome --- */

/* No colour anywhere. Emphasis comes from weight, size and contrast, which
   is the only thing left once the accent is gone — so it has to be decisive. */

/* A dark button is invisible on the night hero, so it inverts by context. */
.hero .btn--re,
.band-dark .btn--re,
.section.band-dark .btn--re { background: #fff; color: var(--ink); }
.hero .btn--re:hover,
.band-dark .btn--re:hover { background: rgba(255,255,255,.88); color: var(--ink); }

/* The payoff number is the loudest thing on the page by size alone. */
.calc--dark .keep__v { color: #fff; }
.keep__v { color: var(--ink); }

.call__stamp { color: #fff; }
.call__foot { background: rgba(255,255,255,.05); }
.bars i.on { background: #fff; }
.tag--won { color: var(--ink); background: #fff; }
.earn__big { color: #fff; }
.bar i { background: #fff; }

.plan--best::before { background: var(--ink); }
.plan__badge { background: var(--ink); color: #fff; }
.incl__l li::before { background: var(--ink); }

th.is-us, td.is-us { background: var(--paper-2); }
thead th.is-us { color: var(--ink); }

.human__i { background: var(--paper-2); color: var(--ink); }
.trust span::before { background: rgba(255,255,255,.55); }
.eyebrow::before { background: var(--ink); box-shadow: 0 0 0 4px rgba(12,13,16,.07); }
.eyebrow--onDark::before { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.12); }

/* ---------------------------------------------------- audit rebuild --- */

/* Anchored sections stop under the sticky nav instead of behind it. */
section[id] { scroll-margin-top: 72px; }

/* Editable value fields: look like the big number, behave like an input. */
.field__val--edit {
  background: transparent;
  border: 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .28);
  padding: 0 0 2px;
  width: 128px;
  text-align: right;
  color: #fff;
  outline: none;
}
.field__val--edit:focus { border-bottom-color: #fff; border-bottom-style: solid; }

.flat { display: flex; gap: 14px; }
.flat__f { flex: 1; display: flex; flex-direction: column; gap: 9px; }
.flat__f .field__val--edit { width: 100%; text-align: left; }

.seg--5 { grid-template-columns: repeat(5, 1fr); }
.seg--5 button { font-size: 12px; padding: 6px 2px; }

/* Plan control: which AtllasRE price the whole panel is quoting. */
.planseg {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
  padding: 3px; margin-bottom: 18px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--line-dark-2);
  border-radius: 999px;
}
.planseg button {
  min-height: 36px; border: 1px solid transparent; border-radius: 999px;
  background: transparent; color: rgba(255, 255, 255, .62);
  font: 500 12.5px var(--sans); cursor: pointer;
  transition: background .16s ease, color .16s ease;
}
.planseg button:hover { color: #fff; }
.planseg button[aria-pressed="true"] {
  background: #fff; color: var(--ink); font-weight: 600;
}

.keep__yr { font-size: .4em; font-weight: 500; letter-spacing: -.02em; }
.keep__v--flat { font-size: clamp(1.5rem, 3vw, 2rem); color: rgba(255,255,255,.92); }
.keep__cheaper { font-size: .55em; font-weight: 500; color: rgba(255,255,255,.6); }

/* ------------------------------------------------------- mobile nav --- */

.burger {
  display: none;
  width: 40px; height: 40px;
  border: 0; background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span {
  display: block; width: 19px; height: 2px; border-radius: 1px;
  background: #fff;
  transition: transform .22s ease, opacity .22s ease, background .2s ease;
}
.nav.is-scrolled .burger span { background: var(--ink); }
.sheet-open .burger span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.sheet-open .burger span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* dropdown card under the bar — never covers the button that opened it */
.sheet {
  position: fixed; top: 62px; right: 14px; z-index: 48;
  width: min(300px, calc(100vw - 28px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 26px 60px -26px rgba(11, 12, 16, .4);
  padding: 6px 18px;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px) scale(.98);
  transform-origin: top right;
  transition: opacity .18s ease, transform .18s cubic-bezier(.22, .61, .36, 1);
}
.sheet-open .sheet { opacity: 1; pointer-events: auto; transform: none; }

.sheet__nav { display: flex; flex-direction: column; }
.sheet__nav a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft, rgba(12, 13, 16, .07));
  font: 600 16.5px var(--sans); letter-spacing: -.02em; color: var(--ink);
}
.sheet__nav a:last-of-type { border-bottom: 0; }
.sheet__nav .sheet__talk { color: var(--ink-3); font-weight: 500; font-size: 14.5px; }

@media (max-width: 899px) {
  .burger { display: flex; }
  .nav__right .btn { min-height: 36px; padding: 8px 14px; }
}

/* ------------------------------------------------- interaction states --- */

.human, .plans .plan { transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease; }
.human:hover { transform: translateY(-2px); border-color: rgba(12, 13, 16, .2); }
.plans .plan:hover { transform: translateY(-2px); border-color: rgba(12, 13, 16, .24); }

/* --------------------------------------------------- compare highlight --- */

th.is-us, td.is-us {
  background: var(--paper-2);
  border-left: 1px solid rgba(12, 13, 16, .16);
  border-right: 1px solid rgba(12, 13, 16, .16);
}
td.is-us { font-weight: 600; color: var(--ink); }
.cmp__scroll {
  -webkit-mask-image: linear-gradient(90deg, #000 92%, transparent);
  mask-image: linear-gradient(90deg, #000 92%, transparent);
}
@media (min-width: 761px) { .cmp__scroll { -webkit-mask-image: none; mask-image: none; } }

/* --------------------------------------------------------- footer id --- */

.foot__id { display: flex; flex-direction: column; gap: 7px; }
.foot__parent {
  font: 400 11.5px var(--mono); letter-spacing: .06em;
  color: var(--ink-4);
}
.foot__parent:hover { color: var(--ink); }

/* Legal reads as legal, not as terminal decoration. */
.foot__legal p { font: 400 12.5px var(--sans); line-height: 1.65; color: var(--ink-3); max-width: 66ch; }

/* FAQ links */
details a { color: var(--ink); border-bottom: 1px solid var(--line-2, rgba(12,13,16,.2)); }
details a:hover { border-bottom-color: var(--ink); }

/* -------------------------------------------------- mobile compaction --- */

.field__gci { font-style: normal; color: rgba(255, 255, 255, .38); }

@media (max-width: 559px) {
  .calc__in, .calc__out { padding: 22px 18px; }
  /* label above the number: no more three-line wrap beside the input */
  .calc__in .field:first-child .field__top { flex-direction: column; align-items: flex-start; gap: 8px; }
  .calc__in .field:first-child .field__val--edit,
  .calc__in .field:first-child .field__edit { text-align: left; width: 160px; }
  .seg--5 button { font-size: 11px; letter-spacing: -.01em; }
  .keep__v { font-size: clamp(2.2rem, 11vw, 2.9rem); }
}

/* ---------------------------------------------- panel round 2 fixes --- */

.row__yr { font: 500 12px var(--sans); font-style: normal; color: var(--ink-4); margin-left: 2px; }
.calc--dark .row__yr { color: rgba(255, 255, 255, .5); }
.calc__go { width: 100%; }

/* Compare: below 760px the table restacks as per-row cards. The AtllasRE
   answer leads each card; competitors follow with their own labels. */
@media (max-width: 760px) {
  .cmp__scroll { overflow-x: visible; -webkit-mask-image: none; mask-image: none; }
  .cmp table, .cmp tbody, .cmp tr, .cmp td { display: block; min-width: 0; width: 100%; }
  .cmp thead { display: none; }
  .cmp tr { padding: 16px 18px; border-bottom: 1px solid var(--line); }
  .cmp tr:last-child { border-bottom: 0; }
  .cmp td { border: 0; padding: 3px 0; }
  .cmp .cmp__lab {
    font: 400 10.5px var(--mono); letter-spacing: .14em; text-transform: uppercase;
    color: var(--ink-4); padding-bottom: 8px;
  }
  .cmp td.is-us { background: transparent; font-weight: 600; color: var(--ink); font-size: 15px; padding-bottom: 8px; }
  .cmp td[data-col]:not(.is-us) { font-size: 13px; color: var(--ink-3); }
  .cmp td[data-col]:not(.is-us)::before {
    content: attr(data-col) ": ";
    font: 400 10.5px var(--mono); letter-spacing: .08em; text-transform: uppercase;
    color: var(--ink-4);
  }
}

/* Tap targets: the split chips wrap to two comfortable rows on phones. */
@media (max-width: 559px) {
  .seg--5 { grid-template-columns: repeat(3, 1fr); border-radius: 14px; }
  .seg--5 button { min-height: 44px; font-size: 12.5px; border-radius: 10px; }
  .planseg button { min-height: 44px; }
  .trust { font-size: 12.5px; }
}

/* ---------------------------------------------------- new agent plan --- */

.newagent {
  display: block;
  margin-top: 14px;
  padding: 24px 26px;
  border: 1px dashed rgba(12, 13, 16, .3);
  border-radius: 16px;
  background: #fff;
  transition: border-color .16s ease, transform .16s ease;
}
.newagent:hover { border-color: var(--ink); transform: translateY(-2px); }

.newagent__head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.newagent__chip {
  font: 400 10.5px var(--mono); letter-spacing: .14em; text-transform: uppercase;
  color: #fff; background: var(--ink);
  border-radius: 5px; padding: 4px 9px;
}
.newagent__p { font: 700 27px var(--sans); letter-spacing: -.035em; }
.newagent__p i { font: 500 14px var(--sans); font-style: normal; color: var(--ink-4); }
.newagent__t { margin-top: 12px; font-size: 15px; line-height: 1.6; color: var(--ink-2); max-width: 66ch; }
.newagent__go { margin-top: 14px; display: inline-flex; align-items: center; gap: 7px; font: 600 14px var(--sans); color: var(--ink); }

/* ---------------------------------------------------- brand pullquote --- */

.bq {
  font: 600 clamp(1.5rem, 3.6vw, 2.2rem) var(--sans);
  letter-spacing: -.03em; line-height: 1.2;
  color: var(--ink-4);
  max-width: 26ch;
}
.bq__a {
  margin-top: 18px;
  font-size: 17px; line-height: 1.65;
  color: var(--ink);
  max-width: 58ch;
}
.bq__a em { font-style: normal; border-bottom: 2px solid var(--ink); }
