:root {
  --bg-main: #f8fafc;
  --text-main: #0f172a;
  --text-muted: #475569;
  --accent: #059669;
  --accent-hover: #047857;
  --glass-bg: rgba(255, 255, 255, 0.4);
  --glass-border: rgba(255, 255, 255, 0.6);
  --radius-premium: 16px;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --ink: #17211f;
  --muted: #65736f;
  --bg: #f5f7f4;
  --surface: #ffffff;
  --surface-2: #e8f1ed;
  --line: #d9e0da;
  --teal: #10352f;
  --teal-2: #1c6b5d;
  --coral: #d97658;
  --gold: #c59a45;
  --blue: #2d6f8f;
  --shadow: 0 22px 70px rgba(26, 40, 36, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Ultra-elegant hero / Rendement Preview Tool */
:root {
  --bg-main: #f4f6f8;
  --hero-ink-soft: #334155;
  --hero-glow-green: rgba(5, 150, 105, .15);
  --hero-glow-blue: rgba(56, 189, 248, .13);
}

body {
  background:
    radial-gradient(circle at 82% 10%, rgba(16, 185, 129, .18), transparent 30rem),
    radial-gradient(circle at 96% 34%, rgba(56, 189, 248, .14), transparent 27rem),
    linear-gradient(135deg, #f4f6f8 0%, #f8fafc 48%, #eef7f5 100%);
}

body.public-home[data-public-view="intro"] {
  background-color: #f4f6f8;
  background-image:
    radial-gradient(circle at 80% 8%, rgba(16, 185, 129, .2), transparent 32rem),
    radial-gradient(circle at 102% 42%, rgba(56, 189, 248, .16), transparent 30rem),
    radial-gradient(circle at 12% 82%, rgba(255, 255, 255, .82), transparent 28rem),
    linear-gradient(135deg, #f4f6f8 0%, #f8fafc 52%, #eef7f5 100%);
}

body.public-home[data-public-view="intro"] .intro-copy h1 {
  max-width: 650px;
  color: transparent;
  background: linear-gradient(120deg, var(--text-main) 0%, #111827 48%, var(--hero-ink-soft) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(58px, 7.4vw, 92px);
  line-height: 1.1;
  letter-spacing: 0;
}

body.public-home[data-public-view="intro"] .intro-copy .lead {
  max-width: 620px;
  color: var(--text-muted);
}

body.public-home[data-public-view="intro"] .hero-address-card {
  border: 1px solid rgba(15, 23, 42, .075);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 18px 48px rgba(15, 23, 42, .055);
}

body.public-home[data-public-view="intro"] .hero-address-card:focus-within {
  border-color: rgba(5, 150, 105, .36);
  box-shadow: 0 0 10px rgba(5, 150, 105, .15), 0 20px 52px rgba(15, 23, 42, .06);
}

body.public-home[data-public-view="intro"] .hero-address-card .premium-input {
  border: 1px solid rgba(15, 23, 42, .07);
  background: rgba(255, 255, 255, .9);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

body.public-home[data-public-view="intro"] .hero-address-card .premium-input:focus {
  border-color: rgba(5, 150, 105, .45);
  box-shadow: 0 0 10px rgba(5, 150, 105, .15);
}

body.public-home[data-public-view="intro"] .launch-button {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  box-shadow: 0 22px 46px rgba(5, 150, 105, .22);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

body.public-home[data-public-view="intro"] .launch-button:hover {
  background: linear-gradient(135deg, #047857 0%, #059669 100%);
  box-shadow: 0 28px 56px rgba(5, 150, 105, .26);
  transform: translateY(-2px);
}

body.public-home[data-public-view="intro"] .yield-preview-card {
  position: relative;
  width: min(500px, 100%);
  min-height: 520px;
  padding: clamp(30px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 28px;
  background: rgba(255, 255, 255, .65);
  box-shadow: 0 30px 60px rgba(15, 23, 42, .08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
}

body.public-home[data-public-view="intro"] .yield-preview-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 24% 0%, rgba(16, 185, 129, .18), transparent 25rem),
    radial-gradient(circle at 100% 18%, rgba(56, 189, 248, .18), transparent 22rem);
  pointer-events: none;
}

body.public-home[data-public-view="intro"] .yield-preview-card > * {
  position: relative;
  z-index: 1;
}

body.public-home[data-public-view="intro"] .yield-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

body.public-home[data-public-view="intro"] .yield-card-top .eyebrow {
  margin: 0;
}

body.public-home[data-public-view="intro"] .yield-card-top > span {
  border: 1px solid rgba(5, 150, 105, .14);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--accent-hover);
  background: rgba(236, 253, 245, .64);
  font-size: 12px;
  font-weight: 850;
}

body.public-home[data-public-view="intro"] .yield-preview-display {
  display: grid;
  place-items: center;
  min-height: 210px;
  margin: 38px 0 30px;
  border: 1px solid rgba(15, 23, 42, .06);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .62), rgba(255, 255, 255, .28)),
    radial-gradient(circle at 50% 0%, rgba(16, 185, 129, .1), transparent 18rem);
}

body.public-home[data-public-view="intro"] .yield-lock {
  position: relative;
  width: 38px;
  height: 30px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: rgba(15, 23, 42, .86);
  box-shadow: 0 12px 24px rgba(15, 23, 42, .12);
}

body.public-home[data-public-view="intro"] .yield-lock::before {
  content: "";
  position: absolute;
  left: 8px;
  top: -18px;
  width: 20px;
  height: 22px;
  border: 4px solid rgba(15, 23, 42, .86);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

body.public-home[data-public-view="intro"] .yield-lock::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 12px;
  width: 5px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .76);
}

body.public-home[data-public-view="intro"] .yield-preview-display strong {
  color: var(--text-main);
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

body.public-home[data-public-view="intro"] .yield-preview-display strong span {
  filter: blur(2.2px);
  opacity: .72;
}

body.public-home[data-public-view="intro"] .yield-preview-display small {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 800;
}

body.public-home[data-public-view="intro"] .yield-progress-list {
  display: grid;
  gap: 17px;
}

body.public-home[data-public-view="intro"] .yield-progress-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: center;
  color: #64748b;
}

body.public-home[data-public-view="intro"] .yield-progress-item span {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(100, 116, 139, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 0 0 6px rgba(100, 116, 139, .06);
}

body.public-home[data-public-view="intro"] .yield-progress-item p {
  position: relative;
  margin: 0;
  padding-bottom: 9px;
  font-size: 14px;
  font-weight: 820;
}

body.public-home[data-public-view="intro"] .yield-progress-item p::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(100, 116, 139, .16);
}

body.public-home[data-public-view="intro"] .yield-progress-item.is-active {
  color: var(--text-main);
}

body.public-home[data-public-view="intro"] .yield-progress-item.is-active span {
  border-color: rgba(5, 150, 105, .4);
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(5, 150, 105, .1), 0 0 18px rgba(5, 150, 105, .2);
}

body.public-home[data-public-view="intro"] .yield-statusbar {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

body.public-home[data-public-view="intro"] .yield-statusbar span {
  height: 3px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--accent) 0 26%, rgba(148, 163, 184, .22) 26% 100%);
}

body.public-home[data-public-view="intro"] .yield-statusbar strong {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 820;
}

@media (max-width: 980px) {
  body.public-home[data-public-view="intro"] .intro-copy h1 {
    font-size: clamp(48px, 10vw, 72px);
  }

  body.public-home[data-public-view="intro"] .yield-preview-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  body.public-home[data-public-view="intro"] .intro-copy h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  body.public-home[data-public-view="intro"] .yield-preview-display {
    min-height: 184px;
  }

  body.public-home[data-public-view="intro"] .yield-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  body.public-home[data-public-view="intro"] .utility-links {
    display: none;
  }
}

/* Hero markup alignment: pure CSS calculator/card structure */
body.public-home[data-public-view="intro"] .hero-start-form {
  display: grid;
  gap: 16px;
  width: min(520px, 100%);
  margin-top: 34px;
}

body.public-home[data-public-view="intro"] .hero-address-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--radius-premium);
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 18px 38px rgba(15, 23, 42, .06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.public-home[data-public-view="intro"] .hero-address-card span {
  color: var(--text-main);
  font-size: 13px;
  font-weight: 850;
}

body.public-home[data-public-view="intro"] .hero-address-card .premium-input {
  height: 56px;
  border-color: rgba(15, 23, 42, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
}

body.public-home[data-public-view="intro"] .hero-start-form .launch-button {
  width: min(330px, 100%);
}

body.public-home[data-public-view="intro"] .hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

body.public-home[data-public-view="intro"] .hero-calculator-card {
  position: relative;
  width: min(470px, 100%);
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(240, 253, 250, .48)),
    var(--glass-bg);
}

body.public-home[data-public-view="intro"] .hero-calculator-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), #38bdf8);
}

body.public-home[data-public-view="intro"] .hero-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

body.public-home[data-public-view="intro"] .hero-card-header .eyebrow {
  margin: 0;
}

body.public-home[data-public-view="intro"] .hero-card-header strong {
  max-width: 190px;
  color: var(--text-main);
  font-size: 18px;
  line-height: 1.2;
  text-align: right;
}

body.public-home[data-public-view="intro"] .hero-calc-panel {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

body.public-home[data-public-view="intro"] .hero-calc-row {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
}

body.public-home[data-public-view="intro"] .hero-calc-row span,
body.public-home[data-public-view="intro"] .hero-result-preview span {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

body.public-home[data-public-view="intro"] .hero-calc-row strong {
  color: var(--text-main);
  font-size: 15px;
  line-height: 1.35;
}

body.public-home[data-public-view="intro"] .hero-result-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius-premium);
  background: var(--accent);
  color: #fff;
}

body.public-home[data-public-view="intro"] .hero-result-preview span {
  color: rgba(255, 255, 255, .74);
}

body.public-home[data-public-view="intro"] .hero-result-preview strong {
  color: #fff;
  font-size: 20px;
  line-height: 1.15;
  text-align: right;
}

@media (max-width: 760px) {
  body.public-home[data-public-view="intro"] .hero-start-form {
    margin-top: 26px;
  }

  body.public-home[data-public-view="intro"] .hero-start-form .launch-button {
    width: 100%;
  }

  body.public-home[data-public-view="intro"] .hero-card-header {
    display: grid;
  }

  body.public-home[data-public-view="intro"] .hero-card-header strong {
    max-width: none;
    text-align: left;
  }

  body.public-home[data-public-view="intro"] .hero-result-preview {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Final professional polish overrides */
.site-header {
  background: rgba(255,255,255,.94);
  border-bottom-color: rgba(20,33,29,.08);
  box-shadow: 0 12px 32px rgba(18,33,29,.06);
}

.public-home,
.tool-app,
.page-main {
  background:
    linear-gradient(110deg, rgba(244,246,242,.98) 0 55%, rgba(232,240,235,.9) 55% 100%);
}

.intro-copy h1 {
  color: #14211d;
  font-size: clamp(52px, 6.8vw, 96px);
  line-height: .92;
}

.intro-copy .lead {
  color: #334540;
}

.launch-button,
.public-home .primary-button,
.primary-button {
  border: 0;
  border-radius: 16px;
  background: #123c36;
  color: #fff;
  clip-path: none;
  box-shadow: 0 16px 32px rgba(18,60,54,.14);
}

.launch-button:hover,
.public-home .primary-button:hover,
.primary-button:hover {
  background: #174b43;
}

.launch-button::after {
  content: "";
  right: 22px;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  background: transparent;
}

.launch-button small {
  color: rgba(255,255,255,.72);
}

.holiday-animation {
  display: none !important;
}

.portfolio-visual {
  display: block;
  width: min(760px, 100%);
  height: auto;
  overflow: visible;
}

.tool-shell,
.public-home .wizard-calculator,
.result-summary-card,
.result-option-card,
.result-benefit-line,
.result-detail-drawer,
.page-card,
.lead-form,
.lead-copy {
  border-color: rgba(18,60,54,.12);
  border-radius: 18px;
  box-shadow: 0 18px 54px rgba(18,33,29,.08);
}

.public-home .wizard-calculator,
.result-summary-card,
.result-detail-drawer {
  background: #fff;
}

.public-home .wizard-calculator::before {
  background: #123c36;
}

.public-home .wizard-calculator::after {
  display: none;
}

.public-home .question-head::before {
  background: #246b5d;
}

.public-home .field,
.public-home .amenity-grid label,
.country-choice-grid label {
  border-color: rgba(18,60,54,.12);
  border-radius: 16px;
  background: #fbfcfa;
  box-shadow: none;
}

.country-choice-grid label:has(input:checked),
.public-home .amenity-grid label:has(input:checked) {
  border-color: #246b5d;
  background: #eef6f1;
  box-shadow: none;
}

.public-home .field:focus-within {
  border-color: rgba(36,107,93,.44);
  box-shadow: 0 0 0 4px rgba(36,107,93,.08);
}

.public-home .field input:focus,
.public-home .field select:focus,
.public-home .field textarea:focus {
  border-color: #246b5d;
}

.result-sentence {
  border-color: rgba(36,107,93,.18);
  border-radius: 14px;
  background: #f0f6f2;
}

.option-mine {
  background: #123c36;
}

.option-traditional {
  background: #f7f3ee;
}

.option-self {
  background: #f8faf8;
}

.result-benefit-line {
  background: #fbf8ef;
}

.secondary-button,
.public-home .secondary-button {
  border-color: #dbe5de;
  background: #fff;
  color: #123c36;
}

.page-visual {
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(18,60,54,.78), rgba(36,107,93,.44)),
    url("/assets/holiday-revenue-hero.png") center / cover no-repeat;
  box-shadow: 0 24px 64px rgba(18,33,29,.14);
}

@media (max-width: 760px) {
  .intro-copy h1 {
    font-size: clamp(38px, 10vw, 58px);
  }

  .holiday-visual {
    min-height: 220px;
  }
}

/* Active final polish - keep this at EOF */
.public-home,
.tool-app,
.page-main {
  background:
    linear-gradient(112deg, #f7f4ec 0 47%, #edf5ef 47% 70%, #e3f1f1 70% 100%);
}

.intro-view {
  grid-template-columns: minmax(360px, .9fr) minmax(480px, 1.1fr);
  width: min(1280px, calc(100% - 96px));
  gap: clamp(40px, 6vw, 96px);
}

.intro-copy {
  max-width: 650px;
}

.intro-copy .eyebrow,
.public-home .eyebrow,
.page-main .eyebrow {
  color: #8e6a2f;
  letter-spacing: .04em;
}

.intro-copy h1 {
  max-width: 650px;
  color: #14211d;
  font-size: clamp(52px, 6.2vw, 92px);
  line-height: .96;
}

.intro-copy .lead {
  max-width: 600px;
  color: #2f423d;
  font-size: clamp(18px, 1.35vw, 21px);
}

.launch-button,
.public-home .primary-button,
.primary-button {
  border: 0;
  border-radius: 16px;
  background: #123c36;
  color: #fff;
  clip-path: none;
  box-shadow: 0 16px 32px rgba(18,60,54,.14);
}

.launch-button:hover,
.public-home .primary-button:hover,
.primary-button:hover {
  background: #184d45;
}

.launch-button small {
  color: rgba(255,255,255,.76);
}

.launch-row p {
  color: #48645e;
}

.holiday-visual {
  min-height: 470px;
}

.portfolio-visual {
  display: block;
  filter: drop-shadow(0 28px 44px rgba(18,33,29,.12));
}

.holiday-animation {
  display: none !important;
}

.utility-links a {
  border-color: rgba(18,60,54,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 36px rgba(18,33,29,.08);
}

.utility-links a::before {
  background: #d39a43;
}

.tool-shell {
  width: min(1120px, calc(100% - 24px));
  max-height: calc(100svh - 44px);
  border-radius: 22px;
  padding: clamp(16px, 2.2vw, 24px);
  background: rgba(255,255,255,.88);
  box-shadow: 0 28px 70px rgba(18,33,29,.11);
  scrollbar-width: thin;
}

.tool-home-button {
  border-radius: 999px;
  background: #fff;
  box-shadow: none;
}

.public-home .wizard-calculator {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: min(540px, calc(100svh - 158px));
  border-radius: 20px;
  padding: clamp(18px, 2.6vw, 30px);
  background: #fff;
  box-shadow: none;
}

.public-home .wizard-calculator::before {
  height: 5px;
  background: #123c36;
}

.public-home .wizard-calculator::after {
  display: none;
}

.public-home .wizard-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: center;
  margin-bottom: clamp(16px, 2.4vw, 24px);
}

.public-home .wizard-top .eyebrow {
  border: 0;
  padding: 0;
  background: transparent;
  color: #8e6a2f;
}

.public-home .wizard-top h2 {
  margin-top: 2px;
  font-size: clamp(24px, 2.4vw, 34px);
}

.public-home .wizard-meter {
  height: 8px;
  background: #e6ede8;
}

.public-home .wizard-meter span {
  background: linear-gradient(90deg, #123c36, #9fb66d, #d39a43);
}

.public-home .question-head {
  margin-bottom: clamp(14px, 2vw, 22px);
  padding-left: 0;
}

.public-home .question-head::before {
  width: 54px;
  height: 4px;
  background: #d39a43;
}

.public-home .question-head h3 {
  max-width: 820px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.08;
}

.country-choice-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.country-choice-grid label {
  min-height: 96px;
  border-radius: 14px;
  padding: 16px;
  background: #fbfcfa;
  box-shadow: none;
}

.country-choice-grid span {
  font-size: clamp(20px, 1.8vw, 25px);
}

.country-choice-grid small {
  color: #62736e;
  line-height: 1.25;
}

.country-choice-grid label:has(input:checked),
.public-home .amenity-grid label:has(input:checked) {
  border-color: rgba(18,60,54,.46);
  background: #eef6f1;
  box-shadow: inset 0 0 0 2px rgba(18,60,54,.05);
}

.country-choice-grid input,
.public-home .amenity-grid input {
  accent-color: #123c36;
}

.public-home .field,
.public-home .amenity-grid label {
  border-radius: 14px;
  background: #fbfcfa;
  box-shadow: none;
}

.public-home .field input,
.public-home .field select,
.public-home .field textarea {
  min-height: 48px;
  border-bottom-color: #d5e2db;
  font-size: 17px;
}

.public-home .field:focus-within {
  border-color: rgba(18,60,54,.34);
  box-shadow: 0 0 0 4px rgba(18,60,54,.07);
}

.public-home .field input:focus,
.public-home .field select:focus,
.public-home .field textarea:focus {
  border-color: #123c36;
}

.public-home .amenity-grid label {
  min-height: 62px;
}

.model-assumption {
  border-color: rgba(211,154,67,.28);
  border-radius: 14px;
  background: #fbf4df;
}

.result-summary-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  align-items: stretch;
  gap: clamp(18px, 3vw, 34px);
  border-radius: 22px;
  padding: clamp(22px, 3vw, 34px);
}

.result-summary-card > .eyebrow,
.result-summary-card > h2,
.result-summary-card > p:not(.eyebrow) {
  grid-column: 1;
}

.result-summary-card h2 {
  max-width: 680px;
  font-size: clamp(32px, 4.2vw, 54px);
}

.result-sentence {
  grid-column: 2;
  grid-row: 1 / span 3;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 12px;
  margin: 0;
  border: 0;
  border-radius: 20px;
  padding: clamp(22px, 3vw, 30px);
  background: #123c36;
}

.result-sentence > span,
.result-sentence small,
.result-sentence small b {
  color: rgba(255,255,255,.82);
}

.result-sentence strong {
  grid-row: auto;
  color: #fff;
  font-size: clamp(48px, 6vw, 76px);
}

.result-options-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.result-option-card {
  min-height: 168px;
  border-radius: 18px;
  padding: clamp(18px, 2.4vw, 24px);
  box-shadow: none;
}

.option-mine {
  background: #123c36;
}

.option-traditional {
  background: #fbf4ef;
}

.option-self {
  display: none;
}

/* Final landing balance - must remain at EOF */
body.public-home[data-public-view="intro"] .intro-view::after {
  display: none !important;
}

body.public-home[data-public-view="intro"] .intro-copy h1 {
  max-width: 660px;
  font-size: clamp(50px, 6.35vw, 90px);
  line-height: .92;
}

body.public-home[data-public-view="intro"] .intro-copy .lead {
  max-width: 560px;
  margin-top: 22px;
  font-size: clamp(17px, 1.25vw, 21px);
}

body.public-home[data-public-view="intro"] .launch-row {
  margin-top: 30px;
}

body.public-home[data-public-view="intro"] .launch-row p {
  display: none !important;
}

body.public-home[data-public-view="intro"] .intro-view::before {
  bottom: 28px;
}

@media (max-height: 760px) and (min-width: 761px) {
  body.public-home[data-public-view="intro"] .intro-view {
    padding-top: 86px;
    padding-bottom: 42px;
  }

  body.public-home[data-public-view="intro"] .intro-copy h1 {
    max-width: 620px;
    font-size: clamp(48px, 5.8vw, 78px);
  }

  body.public-home[data-public-view="intro"] .intro-copy .lead {
    max-width: 520px;
    margin-top: 18px;
    font-size: 17px;
  }

  body.public-home[data-public-view="intro"] .launch-row {
    margin-top: 24px;
  }

  body.public-home[data-public-view="intro"] .launch-button {
    min-width: 330px;
    padding-block: 15px;
  }
}

/* Signature redesign: landing cover + result ticket */
body.public-home[data-public-view="intro"] {
  overflow-x: hidden;
}

body.public-home[data-public-view="intro"] .site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: clamp(14px, 3vw, 42px);
  right: clamp(14px, 3vw, 42px);
  min-height: 64px;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(17,42,38,.12);
}

body.public-home[data-public-view="intro"] .brand-mark {
  border-radius: 999px;
  background: #103e37;
}

body.public-home[data-public-view="intro"] .site-nav a,
body.public-home[data-public-view="intro"] .site-nav button,
body.public-home[data-public-view="intro"] .nav-action {
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  box-shadow: none;
}

body.public-home[data-public-view="intro"] .tool-app {
  min-height: 100svh;
  background: #f7f2e7;
}

body.public-home[data-public-view="intro"] .intro-view {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-items: center;
  gap: 0;
  padding: clamp(118px, 13vh, 160px) clamp(24px, 6vw, 92px) clamp(48px, 8vh, 88px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(249,244,233,.98) 0 33%, rgba(249,244,233,.9) 33% 43%, rgba(249,244,233,.42) 55%, rgba(249,244,233,.05) 100%),
    linear-gradient(180deg, rgba(8,41,36,.02), rgba(8,41,36,.12)),
    url("/assets/holiday-revenue-hero.png") center right / cover no-repeat;
}

body.public-home[data-public-view="intro"] .intro-view::before {
  content: "";
  position: absolute;
  inset: auto clamp(18px, 4vw, 56px) clamp(18px, 4vh, 42px);
  z-index: -1;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #124038, #2d8b79 42%, #f4bf58 73%, #ff845f);
  opacity: .9;
  box-shadow: 0 18px 46px rgba(16,62,55,.18);
}

body.public-home[data-public-view="intro"] .intro-view::after {
  content: "uw accounts blijven op uw naam";
  position: absolute;
  right: clamp(28px, 6vw, 96px);
  bottom: clamp(48px, 9vh, 104px);
  z-index: 1;
  max-width: 270px;
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 28px;
  padding: 18px 22px;
  background: rgba(255,255,255,.76);
  backdrop-filter: blur(18px);
  color: #123e37;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.25;
  text-transform: uppercase;
  box-shadow: 0 24px 64px rgba(16,62,55,.16);
}

body.public-home[data-public-view="intro"] .intro-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

body.public-home[data-public-view="intro"] .intro-copy .eyebrow {
  width: max-content;
  margin-bottom: 22px;
  border: 1px solid rgba(18,62,55,.18);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255,255,255,.58);
  color: #9b6732;
  box-shadow: 0 12px 30px rgba(17,42,38,.08);
}

body.public-home[data-public-view="intro"] .intro-copy h1 {
  max-width: 690px;
  color: #0b201c;
  font-size: clamp(54px, 7.4vw, 118px);
  line-height: .9;
  letter-spacing: 0;
}

body.public-home[data-public-view="intro"] .intro-copy .lead {
  max-width: 600px;
  margin-top: 26px;
  color: #213a35;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.48;
  font-weight: 620;
}

body.public-home[data-public-view="intro"] .launch-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
}

body.public-home[data-public-view="intro"] .launch-button {
  min-width: min(100%, 360px);
  border-radius: 999px;
  padding: 18px 62px 18px 24px;
  background: linear-gradient(135deg, #102f2a, #176453);
  box-shadow: 0 24px 56px rgba(16,62,55,.24);
}

body.public-home[data-public-view="intro"] .launch-button .launch-main {
  font-size: 23px;
}

body.public-home[data-public-view="intro"] .launch-button small {
  font-size: 12px;
  color: rgba(255,255,255,.76);
}

body.public-home[data-public-view="intro"] .launch-button::after {
  right: 24px;
  border-color: #f8c65f;
}

body.public-home[data-public-view="intro"] .launch-row p {
  max-width: 250px;
  margin: 0;
  color: #22433d;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

body.public-home[data-public-view="intro"] .holiday-visual {
  display: none;
}

body.public-home[data-public-view="intro"] .utility-links {
  position: fixed;
  right: clamp(14px, 3vw, 42px);
  bottom: clamp(18px, 4vh, 42px);
  z-index: 21;
  display: flex;
  gap: 10px;
}

body.public-home[data-public-view="intro"] .utility-links a {
  min-width: 124px;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 999px;
  padding: 13px 16px;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(17,42,38,.12);
}

body.public-home[data-public-view="intro"] .utility-links a::before {
  display: none;
}

body.public-home[data-public-view="intro"] .utility-links a span {
  color: #103e37;
}

body.public-home[data-public-view="intro"] .utility-links a small {
  color: #93612c;
}

body.public-home[data-public-view="result"] {
  background: #0b2824;
}

body.public-home[data-public-view="result"] .site-header {
  background: #fbf7ed;
}

body.public-home[data-public-view="result"] .tool-app {
  background:
    radial-gradient(circle at 12% 18%, rgba(244,191,88,.22), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(108,185,170,.2), transparent 30%),
    linear-gradient(135deg, #092622, #123e37 58%, #e7f0e9 58%);
}

body.public-home[data-public-view="result"] .tool-shell {
  width: min(1220px, calc(100% - 64px));
  max-height: calc(100svh - 92px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 34px;
  padding: 18px;
  background: rgba(8,37,33,.92);
  color: #fff;
  box-shadow: 0 34px 90px rgba(3,20,18,.38);
}

body.public-home[data-public-view="result"] .tool-topbar {
  min-height: 58px;
  padding: 0 4px 12px;
  color: #f8f0df;
}

body.public-home[data-public-view="result"] .tool-topbar .eyebrow {
  color: #f2bd57;
}

body.public-home[data-public-view="result"] .tool-home-button {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.1);
  color: #fff;
}

body.public-home[data-public-view="result"] .public-results {
  gap: 18px;
  border-radius: 28px;
  padding: clamp(16px, 2vw, 24px);
  background:
    linear-gradient(115deg, rgba(255,252,244,.98) 0 58%, rgba(232,246,239,.98) 58% 100%);
  color: #10211e;
}

body.public-home[data-public-view="result"] .result-summary-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .72fr);
  gap: 18px;
  min-height: 286px;
  border: 0;
  border-radius: 30px;
  padding: 0;
  overflow: hidden;
  background: #fffaf0;
  box-shadow: 0 20px 60px rgba(11,40,36,.11);
}

body.public-home[data-public-view="result"] .result-summary-card::before {
  display: none;
}

body.public-home[data-public-view="result"] .result-copy-block {
  position: relative;
  display: grid;
  align-content: center;
  padding: clamp(26px, 4vw, 52px);
}

body.public-home[data-public-view="result"] .result-copy-block::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 220px;
  height: 220px;
  border: 2px solid rgba(244,191,88,.35);
  border-radius: 50%;
}

body.public-home[data-public-view="result"] .result-summary-card .eyebrow {
  color: #9a692f;
}

body.public-home[data-public-view="result"] .result-summary-card h2 {
  max-width: 760px;
  color: #10211e;
  font-size: clamp(38px, 4.4vw, 66px);
  line-height: .96;
}

body.public-home[data-public-view="result"] .result-summary-card > p:not(.eyebrow),
body.public-home[data-public-view="result"] .result-copy-block > p:not(.eyebrow) {
  max-width: 620px;
  color: #526b64;
  font-size: 16px;
  font-weight: 760;
}

body.public-home[data-public-view="result"] .result-sentence {
  grid-column: auto;
  grid-row: auto;
  position: relative;
  min-height: 100%;
  border-radius: 0;
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(155deg, #0e372f, #176453);
  box-shadow: none;
}

body.public-home[data-public-view="result"] .result-sentence::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  pointer-events: none;
}

body.public-home[data-public-view="result"] .result-sentence > span {
  max-width: 260px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  letter-spacing: .08em;
}

body.public-home[data-public-view="result"] .result-sentence strong {
  color: #fff;
  font-size: clamp(54px, 6vw, 92px);
}

body.public-home[data-public-view="result"] .result-sentence small {
  max-width: 300px;
  color: rgba(255,255,255,.82);
}

body.public-home[data-public-view="result"] .result-options-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 290px) minmax(0, 1fr);
  align-items: stretch;
  gap: 14px;
}

body.public-home[data-public-view="result"] .result-option-card {
  position: relative;
  min-height: 210px;
  border-radius: 28px;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(11,40,36,.08);
}

body.public-home[data-public-view="result"] .result-option-card::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  opacity: .16;
}

body.public-home[data-public-view="result"] .result-option-card .option-label {
  color: #8d6831;
  font-size: 12px;
  letter-spacing: .06em;
}

body.public-home[data-public-view="result"] .result-option-card strong {
  margin-top: 22px;
  color: #10211e;
  font-size: clamp(46px, 5vw, 78px);
}

body.public-home[data-public-view="result"] .result-option-card p,
body.public-home[data-public-view="result"] .result-option-card small {
  color: #4e6660;
}

body.public-home[data-public-view="result"] .option-mine {
  grid-column: 1;
  background: #f7fff8;
  border-color: rgba(25,112,94,.18);
  color: #176453;
}

body.public-home[data-public-view="result"] .option-mine .option-label,
body.public-home[data-public-view="result"] .option-mine strong,
body.public-home[data-public-view="result"] .option-mine p,
body.public-home[data-public-view="result"] .option-mine small {
  color: inherit;
}

body.public-home[data-public-view="result"] .option-traditional {
  grid-column: 3;
  background: #fff4ed;
  border-color: rgba(215,115,76,.18);
  color: #b8613b;
}

body.public-home[data-public-view="result"] .result-benefit-line {
  grid-column: 2;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 28px;
  padding: 24px;
  background:
    linear-gradient(155deg, #ffcb64, #ff8a5c);
  color: #10211e;
  box-shadow: 0 24px 54px rgba(255,138,92,.18);
}

body.public-home[data-public-view="result"] .result-benefit-line span {
  color: #6d3d17;
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: .06em;
}

body.public-home[data-public-view="result"] .result-benefit-line strong {
  color: #10211e;
  font-size: clamp(42px, 4.3vw, 68px);
  line-height: .92;
}

body.public-home[data-public-view="result"] .result-benefit-line small {
  max-width: none;
  color: #5c3b21;
  font-size: 13px;
  line-height: 1.35;
}

body.public-home[data-public-view="result"] .result-cta-row {
  justify-content: center;
  margin-top: 2px;
}

body.public-home[data-public-view="result"] .result-cta-row .primary-button,
body.public-home[data-public-view="result"] .result-cta-row .secondary-button {
  min-height: 54px;
  min-width: 236px;
  border-radius: 999px;
}

body.public-home[data-public-view="result"] .result-detail-drawer {
  border: 1px solid rgba(16,62,55,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  box-shadow: none;
}

@media (max-width: 980px) {
  body.public-home[data-public-view="intro"] .intro-view {
    min-height: auto;
    padding-top: 118px;
    background-position: 60% center;
  }

  body.public-home[data-public-view="intro"] .intro-view::after {
    display: none;
  }

  body.public-home[data-public-view="result"] .result-summary-card,
  body.public-home[data-public-view="result"] .result-options-grid {
    grid-template-columns: 1fr;
  }

  body.public-home[data-public-view="result"] .option-mine,
  body.public-home[data-public-view="result"] .result-benefit-line,
  body.public-home[data-public-view="result"] .option-traditional {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  body.public-home[data-public-view="intro"] .site-header {
    left: 10px;
    right: 10px;
    top: 10px;
    border-radius: 24px;
  }

  body.public-home[data-public-view="intro"] .intro-view {
    padding: 108px 18px 132px;
    background:
      linear-gradient(180deg, rgba(249,244,233,.98) 0 48%, rgba(249,244,233,.74) 64%, rgba(249,244,233,.25) 100%),
      url("/assets/holiday-revenue-hero.png") center bottom / cover no-repeat;
  }

  body.public-home[data-public-view="intro"] .intro-copy h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  body.public-home[data-public-view="intro"] .launch-row {
    align-items: stretch;
    flex-direction: column;
  }

  body.public-home[data-public-view="intro"] .launch-button {
    width: 100%;
  }

  body.public-home[data-public-view="intro"] .utility-links {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

body.public-home[data-public-view="intro"] .utility-links a {
  flex: 1;
  min-width: 0;
  }

  body.public-home[data-public-view="result"] .tool-shell {
    width: calc(100% - 16px);
    max-height: calc(100svh - 16px);
    border-radius: 24px;
    padding: 10px;
  }

  body.public-home[data-public-view="result"] .public-results {
    border-radius: 20px;
    padding: 12px;
  }

  body.public-home[data-public-view="result"] .result-summary-card h2 {
    font-size: clamp(30px, 9vw, 44px);
  }

  body.public-home[data-public-view="result"] .result-sentence strong,
  body.public-home[data-public-view="result"] .result-option-card strong,
  body.public-home[data-public-view="result"] .result-benefit-line strong {
    font-size: clamp(40px, 12vw, 58px);
  }
}

/* Landing viewport balance */
body.public-home[data-public-view="intro"] .intro-view::after {
  display: none;
}

body.public-home[data-public-view="intro"] .intro-copy h1 {
  max-width: 660px;
  font-size: clamp(50px, 6.35vw, 90px);
  line-height: .92;
}

body.public-home[data-public-view="intro"] .intro-copy .lead {
  max-width: 560px;
  margin-top: 22px;
  font-size: clamp(17px, 1.25vw, 21px);
}

body.public-home[data-public-view="intro"] .launch-row {
  margin-top: 30px;
}

body.public-home[data-public-view="intro"] .launch-row p {
  display: none;
}

body.public-home[data-public-view="intro"] .intro-view::before {
  bottom: 28px;
}

@media (max-height: 760px) and (min-width: 761px) {
  body.public-home[data-public-view="intro"] .intro-view {
    padding-top: 86px;
    padding-bottom: 42px;
  }

  body.public-home[data-public-view="intro"] .intro-copy h1 {
    max-width: 620px;
    font-size: clamp(48px, 5.8vw, 78px);
  }

  body.public-home[data-public-view="intro"] .intro-copy .lead {
    max-width: 520px;
    margin-top: 18px;
    font-size: 17px;
  }

  body.public-home[data-public-view="intro"] .launch-row {
    margin-top: 24px;
  }

  body.public-home[data-public-view="intro"] .launch-button {
    min-width: 330px;
    padding-block: 15px;
  }
}

.result-benefit-line {
  border-radius: 18px;
  background: #fbf4df;
}

.result-detail-drawer {
  border-radius: 18px;
  box-shadow: none;
}

body:not(.public-home) {
  background: #f7f4ec;
}

.page-main {
  min-height: calc(100svh - 88px);
  padding: clamp(34px, 6vw, 84px) clamp(20px, 5vw, 72px);
}

.page-hero,
.page-grid {
  width: min(1160px, 100%);
  margin-inline: auto;
}

.page-hero {
  gap: clamp(28px, 5vw, 70px);
}

.page-hero h1 {
  color: #14211d;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: .98;
}

.page-text {
  color: #3d504b;
}

.page-card,
.lead-form,
.lead-copy,
.contact-form {
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 20px 56px rgba(18,33,29,.08);
}

.site-footer {
  background: #fff;
}

@media (max-width: 900px) {
  .intro-view {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    gap: 22px;
    overflow: auto;
  }

  .holiday-visual {
    min-height: 260px;
  }

  .public-home .wizard-top,
  .result-summary-card,
  .result-options-grid {
    grid-template-columns: 1fr;
  }

  .result-sentence {
    grid-column: auto;
    grid-row: auto;
  }

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

@media (max-width: 760px) {
  .intro-copy h1 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .tool-shell {
    width: calc(100% - 12px);
    max-height: calc(100svh - 12px);
    padding: 12px;
  }

  .tool-topbar > div {
    display: none;
  }

.public-home .wizard-calculator {
  min-height: calc(100svh - 88px);
  padding: 16px;
}

  .public-home .wizard-top h2 {
    font-size: 25px;
  }

  .public-home .question-head h3 {
    font-size: clamp(27px, 8vw, 34px);
  }

  .country-choice-grid {
    grid-template-columns: 1fr;
  }

  .country-choice-grid label {
    min-height: 76px;
  }
}

.wizard-step.is-active,
.public-home .wizard-step.is-active {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

/* Result fit and clarity - active */
.result-summary-card {
  gap: clamp(14px, 2vw, 24px);
  padding: clamp(18px, 2.4vw, 28px);
}

.result-summary-card h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.02;
}

.result-summary-card > p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.45;
}

.result-sentence {
  padding: clamp(18px, 2.4vw, 24px);
}

.result-sentence strong {
  font-size: clamp(42px, 5.2vw, 66px);
}

.result-option-card {
  min-height: 138px;
  gap: 7px;
  padding: clamp(16px, 2vw, 20px);
}

.result-option-card strong {
  font-size: clamp(34px, 3.8vw, 48px);
}

.result-option-card p {
  font-size: 14px;
  line-height: 1.34;
}

.result-option-card small {
  font-size: 12px;
}

.result-benefit-line {
  min-height: 58px;
  padding: 12px 16px;
}

.result-cta-row {
  gap: 10px;
}

/* Result viewport fit - tighter */
.result-summary-card {
  padding: 20px 24px;
}

.result-summary-card h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.result-summary-card > p:not(.eyebrow) {
  font-size: 14px;
}

.result-sentence strong {
  font-size: clamp(40px, 4.8vw, 58px);
}

.result-option-card {
  min-height: 118px;
  padding: 16px 20px;
}

.result-option-card strong {
  font-size: clamp(32px, 3.4vw, 44px);
}

.result-option-card p {
  font-size: 13px;
}

.result-option-card small {
  font-size: 11px;
}

.result-benefit-line {
  min-height: 48px;
  padding: 10px 14px;
}

/* Cookie placement per page type - final */
body:not(.public-home) .cookie-consent {
  left: 18px;
  right: auto;
  top: auto;
  bottom: 18px;
  width: min(320px, calc(100% - 36px));
  padding: 14px 16px;
}

body:not(.public-home) .cookie-consent-copy p {
  display: none;
}

body:not(.public-home) .cookie-consent-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* Cookie placement per page type - tail */
body:not(.public-home) .cookie-consent {
  left: 18px;
  right: auto;
  top: auto;
  bottom: 18px;
  width: min(380px, calc(100% - 36px));
}

/* Cookie placement per page type */
body:not(.public-home) .cookie-consent {
  left: 18px;
  right: auto;
  top: auto;
  bottom: 18px;
  width: min(380px, calc(100% - 36px));
}

/* Result fit and clarity */
.result-summary-card {
  gap: clamp(14px, 2vw, 24px);
  padding: clamp(18px, 2.4vw, 28px);
}

.result-summary-card h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.02;
}

.result-summary-card > p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.45;
}

.result-sentence {
  padding: clamp(18px, 2.4vw, 24px);
}

.result-sentence strong {
  font-size: clamp(42px, 5.2vw, 66px);
}

.result-option-card {
  min-height: 138px;
  gap: 7px;
  padding: clamp(16px, 2vw, 20px);
}

.result-option-card strong {
  font-size: clamp(34px, 3.8vw, 48px);
}

.result-option-card p {
  font-size: 14px;
  line-height: 1.34;
}

.result-option-card small {
  font-size: 12px;
}

.result-benefit-line {
  min-height: 58px;
  padding: 12px 16px;
}

.result-cta-row {
  gap: 10px;
}

/* Final usability fixes */
.intro-copy h1 {
  max-width: 560px;
  font-size: clamp(46px, 5.4vw, 76px);
  line-height: .98;
}

.cookie-consent {
  left: auto;
  right: clamp(14px, 3vw, 28px);
  top: clamp(14px, 3vw, 28px);
  bottom: auto;
  width: min(430px, calc(100% - 28px));
  z-index: 30;
}

@media (max-width: 760px) {
  .cookie-consent {
    top: auto;
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
  }
}

/* Product polish pass - visitor and public pages */
.public-home,
.tool-app,
.page-main {
  background:
    linear-gradient(112deg, #f7f4ec 0 47%, #edf5ef 47% 70%, #e3f1f1 70% 100%);
}

.intro-view {
  grid-template-columns: minmax(360px, .9fr) minmax(480px, 1.1fr);
  width: min(1280px, calc(100% - 96px));
  gap: clamp(40px, 6vw, 96px);
}

.intro-copy {
  max-width: 650px;
}

.intro-copy .eyebrow,
.public-home .eyebrow,
.page-main .eyebrow {
  color: #8e6a2f;
  letter-spacing: .04em;
}

.intro-copy h1 {
  max-width: 650px;
  font-size: clamp(52px, 6.2vw, 92px);
  line-height: .96;
}

.intro-copy .lead {
  max-width: 600px;
  color: #2f423d;
  font-size: clamp(18px, 1.35vw, 21px);
}

.launch-button {
  min-width: 300px;
  border-radius: 18px;
  padding: 18px 62px 18px 22px;
  background: #123c36;
  clip-path: none;
  color: #fff;
  box-shadow: 0 18px 38px rgba(18,60,54,.18);
}

.launch-button:hover {
  background: #184d45;
}

.launch-button small {
  color: rgba(255,255,255,.76);
}

.launch-row p {
  color: #48645e;
}

.holiday-visual {
  min-height: 470px;
}

.portfolio-visual {
  filter: drop-shadow(0 28px 44px rgba(18,33,29,.12));
}

.utility-links {
  right: clamp(24px, 4vw, 60px);
  bottom: clamp(22px, 4vh, 42px);
}

.utility-links a {
  border-color: rgba(18,60,54,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 36px rgba(18,33,29,.08);
}

.utility-links a::before {
  background: #d39a43;
}

.tool-view {
  padding: clamp(18px, 3vw, 30px);
}

.tool-shell {
  width: min(1120px, calc(100% - 24px));
  max-height: calc(100svh - 44px);
  border-radius: 22px;
  padding: clamp(16px, 2.2vw, 24px);
  background: rgba(255,255,255,.86);
  box-shadow: 0 28px 70px rgba(18,33,29,.11);
  scrollbar-width: thin;
}

.tool-topbar {
  min-height: 44px;
}

.tool-topbar strong {
  color: #1d302b;
}

.tool-home-button {
  border-radius: 999px;
  background: #fff;
  box-shadow: none;
}

.home-glyph::before,
.home-glyph::after {
  border-color: #123c36;
}

.public-home .wizard-calculator {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: min(540px, calc(100svh - 158px));
  border-radius: 20px;
  padding: clamp(18px, 2.6vw, 30px);
  background: #fff;
  box-shadow: none;
}

.public-home .wizard-calculator::before {
  height: 5px;
  background: #123c36;
}

.public-home .wizard-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: center;
  margin-bottom: clamp(16px, 2.4vw, 24px);
}

.public-home .wizard-top .eyebrow {
  border: 0;
  padding: 0;
  background: transparent;
  color: #8e6a2f;
}

.public-home .wizard-top h2 {
  margin-top: 2px;
  font-size: clamp(24px, 2.4vw, 34px);
}

.public-home .wizard-meter {
  height: 8px;
  background: #e6ede8;
}

.public-home .wizard-meter span {
  background: linear-gradient(90deg, #123c36, #9fb66d, #d39a43);
}

.public-home .wizard-step {
  align-content: start;
}

.public-home .question-head {
  margin-bottom: clamp(14px, 2vw, 22px);
  padding-left: 0;
}

.public-home .question-head::before {
  width: 54px;
  height: 4px;
  background: #d39a43;
}

.public-home .question-head h3 {
  max-width: 820px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.08;
}

.country-choice-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.country-choice-grid label {
  min-height: 96px;
  border-radius: 14px;
  padding: 16px;
  background: #fbfcfa;
  box-shadow: none;
}

.country-choice-grid span {
  font-size: clamp(20px, 1.8vw, 25px);
}

.country-choice-grid small {
  color: #62736e;
  line-height: 1.25;
}

.country-choice-grid label:has(input:checked) {
  border-color: rgba(18,60,54,.46);
  background: #eef6f1;
  box-shadow: inset 0 0 0 2px rgba(18,60,54,.05);
}

.country-choice-grid input,
.public-home .amenity-grid input {
  accent-color: #123c36;
}

.public-home .field {
  border-radius: 14px;
  background: #fbfcfa;
  box-shadow: none;
}

.public-home .field input,
.public-home .field select,
.public-home .field textarea {
  min-height: 48px;
  border-bottom-color: #d5e2db;
  font-size: 17px;
}

.public-home .field:focus-within {
  border-color: rgba(18,60,54,.34);
  box-shadow: 0 0 0 4px rgba(18,60,54,.07);
}

.public-home .field input:focus,
.public-home .field select:focus,
.public-home .field textarea:focus {
  border-color: #123c36;
}

.public-home .amenity-grid label {
  min-height: 62px;
  border-radius: 14px;
  background: #fbfcfa;
  box-shadow: none;
}

.public-home .amenity-grid label:has(input:checked) {
  border-color: rgba(18,60,54,.42);
  background: #eef6f1;
}

.model-assumption {
  border-color: rgba(211,154,67,.28);
  border-radius: 14px;
  background: #fbf4df;
}

.public-home .wizard-controls {
  margin-top: clamp(14px, 2vw, 20px);
}

.public-home .primary-button,
.public-home .secondary-button {
  border-radius: 14px;
}

.public-home .primary-button {
  background: #123c36;
  color: #fff;
  box-shadow: 0 14px 28px rgba(18,60,54,.14);
}

.public-home .primary-button:hover {
  background: #184d45;
}

.result-summary-card {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  align-items: stretch;
  gap: clamp(18px, 3vw, 34px);
  border-radius: 22px;
  padding: clamp(22px, 3vw, 34px);
}

.result-summary-card > .eyebrow,
.result-summary-card > h2,
.result-summary-card > p:not(.eyebrow) {
  grid-column: 1;
}

.result-summary-card h2 {
  max-width: 680px;
  font-size: clamp(32px, 4.2vw, 54px);
}

.result-sentence {
  grid-column: 2;
  grid-row: 1 / span 3;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 12px;
  margin: 0;
  border: 0;
  border-radius: 20px;
  padding: clamp(22px, 3vw, 30px);
  background: #123c36;
}

.result-sentence > span,
.result-sentence small,
.result-sentence small b {
  color: rgba(255,255,255,.82);
}

.result-sentence strong {
  grid-row: auto;
  color: #fff;
  font-size: clamp(48px, 6vw, 76px);
}

.result-options-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.result-option-card {
  min-height: 168px;
  border-radius: 18px;
  padding: clamp(18px, 2.4vw, 24px);
  box-shadow: none;
}

.option-mine {
  background: #123c36;
}

.option-traditional {
  background: #fbf4ef;
}

.option-self {
  display: none;
}

.result-benefit-line {
  border-radius: 18px;
  background: #fbf4df;
}

.result-detail-drawer {
  border-radius: 18px;
  box-shadow: none;
}

body:not(.public-home) {
  background: #f7f4ec;
}

.page-main {
  min-height: calc(100svh - 88px);
  padding: clamp(34px, 6vw, 84px) clamp(20px, 5vw, 72px);
}

.page-hero,
.page-grid {
  width: min(1160px, 100%);
  margin-inline: auto;
}

.page-hero {
  gap: clamp(28px, 5vw, 70px);
}

.page-hero h1 {
  color: #14211d;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: .98;
}

.page-text {
  color: #3d504b;
}

.page-card,
.lead-form,
.lead-copy,
.contact-form {
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 20px 56px rgba(18,33,29,.08);
}

.page-card .field,
.contact-form .field,
.lead-form .field {
  background: #fbfcfa;
}

.site-footer {
  background: #fff;
}

@media (max-width: 900px) {
  .intro-view {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    gap: 22px;
    overflow: auto;
  }

  .holiday-visual {
    min-height: 260px;
  }

  .public-home .wizard-top,
  .result-summary-card,
  .result-options-grid {
    grid-template-columns: 1fr;
  }

  .result-sentence {
    grid-column: auto;
    grid-row: auto;
  }

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

@media (max-width: 760px) {
  .intro-copy h1 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .tool-shell {
    width: calc(100% - 12px);
    max-height: calc(100svh - 12px);
    padding: 12px;
  }

  .tool-topbar > div {
    display: none;
  }

  .public-home .wizard-calculator {
    min-height: calc(100svh - 88px);
    padding: 16px;
  }

  .public-home .wizard-top h2 {
    font-size: 25px;
  }

  .public-home .question-head h3 {
    font-size: clamp(27px, 8vw, 34px);
  }

  .country-choice-grid {
    grid-template-columns: 1fr;
  }

  .country-choice-grid label {
    min-height: 76px;
  }
}

/* Professional trust layer */
:root {
  --ink: #14211d;
  --muted: #5e6e68;
  --bg: #f4f6f2;
  --surface: #ffffff;
  --surface-2: #eef4f0;
  --line: #dbe5de;
  --teal: #123c36;
  --teal-2: #246b5d;
  --coral: #b96b55;
  --gold: #b8914a;
  --blue: #315f75;
  --shadow: 0 24px 70px rgba(18, 33, 29, .10);
}

body {
  background: var(--bg);
  color: var(--ink);
}

.eyebrow {
  color: var(--teal-2);
  letter-spacing: .02em;
}

.primary-button,
.public-home .primary-button {
  border: 0;
  background: var(--teal);
  color: #fff;
  box-shadow: 0 14px 28px rgba(18, 60, 54, .14);
}

.primary-button:hover,
.public-home .primary-button:hover {
  background: #174b43;
}

.secondary-button,
.public-home .secondary-button {
  border-color: var(--line);
  background: #fff;
  color: var(--teal);
}

.site-header {
  background: rgba(255, 255, 255, .92);
  border-bottom-color: rgba(20, 33, 29, .08);
  box-shadow: 0 12px 32px rgba(18, 33, 29, .06);
}

.brand-mark {
  background: var(--teal);
  border-radius: 10px;
}

.nav-action {
  border-color: var(--line);
  background: #fff;
  color: var(--teal);
}

.public-home {
  background: #f4f6f2;
}

.tool-app {
  background:
    linear-gradient(110deg, rgba(244,246,242,.98) 0 55%, rgba(232,240,235,.92) 55% 100%);
}

.intro-view {
  grid-template-columns: minmax(360px, .86fr) minmax(500px, 1.14fr);
  gap: clamp(42px, 6vw, 96px);
}

.intro-copy h1 {
  color: var(--ink);
  font-size: clamp(52px, 6.8vw, 96px);
  line-height: .92;
}

.intro-copy .lead {
  max-width: 600px;
  color: #334540;
  font-size: clamp(18px, 1.45vw, 22px);
}

.launch-button {
  border-radius: 16px 16px 16px 5px;
  background: var(--teal);
  color: #fff;
  clip-path: none;
  box-shadow: 0 18px 38px rgba(18,60,54,.18);
}

.launch-button::after {
  content: "";
  right: 22px;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}

.launch-button small {
  color: rgba(255,255,255,.72);
}

.launch-button:hover {
  background: #174b43;
}

.launch-row p {
  color: var(--muted);
}

.holiday-visual {
  min-height: 520px;
}

.holiday-animation {
  display: none;
}

.portfolio-visual {
  display: block;
  width: min(760px, 100%);
  height: auto;
  overflow: visible;
}

.portfolio-visual text {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pv-card {
  transform-origin: center;
  animation: pvLift 6s ease-in-out infinite;
}

.pv-card:nth-of-type(2) { animation-delay: .2s; }
.pv-card:nth-of-type(3) { animation-delay: .45s; }

.pv-line {
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: pvDraw 5.8s ease-in-out infinite;
}

@keyframes pvLift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes pvDraw {
  0% { stroke-dashoffset: 520; opacity: .35; }
  35%, 78% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -520; opacity: .35; }
}

.tool-shell {
  border-color: rgba(18,60,54,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 26px 70px rgba(18,33,29,.10);
}

.tool-home-button {
  border-radius: 14px;
  background: #fff;
  box-shadow: none;
}

.public-home .wizard-calculator,
.result-summary-card,
.result-option-card,
.result-benefit-line,
.result-detail-drawer,
.public-home .field,
.public-home .amenity-grid label {
  border-color: rgba(18,60,54,.12);
  border-radius: 16px;
  box-shadow: none;
}

.public-home .wizard-calculator {
  background: #fff;
}

.public-home .wizard-calculator::before {
  background: var(--teal);
}

.public-home .wizard-calculator::after {
  display: none;
}

.public-home .question-head::before {
  background: var(--teal-2);
}

.public-home .field {
  background: #fbfcfa;
}

.public-home .field:focus-within {
  border-color: rgba(36,107,93,.44);
  box-shadow: 0 0 0 4px rgba(36,107,93,.08);
}

.public-home .field input:focus,
.public-home .field select:focus,
.public-home .field textarea:focus {
  border-color: var(--teal-2);
}

.country-choice-grid label {
  border-radius: 16px;
  background: #fbfcfa;
  box-shadow: none;
}

.country-choice-grid label:has(input:checked),
.public-home .amenity-grid label:has(input:checked) {
  border-color: var(--teal-2);
  background: #eef6f1;
  box-shadow: none;
}

.result-summary-card {
  background: #fff;
}

.result-sentence {
  border-color: rgba(36,107,93,.18);
  border-radius: 14px;
  background: #f0f6f2;
}

.option-mine {
  background: var(--teal);
}

.option-traditional {
  background: #f7f3ee;
}

.option-self {
  background: #f8faf8;
}

.result-benefit-line {
  background: #fbf8ef;
}

.result-benefit-line strong,
.result-sentence strong,
.result-option-card strong {
  letter-spacing: 0;
}

.result-detail-drawer {
  background: #fff;
}

.page-main {
  background:
    linear-gradient(110deg, rgba(244,246,242,.98) 0 56%, rgba(232,240,235,.84) 56% 100%);
}

.page-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: calc(100svh - 150px);
}

.page-card,
.lead-form,
.lead-copy,
.calculator-card,
.comparison-card,
.result-panel {
  border-color: rgba(18,60,54,.12);
  border-radius: 18px;
  box-shadow: 0 18px 54px rgba(18,33,29,.08);
}

.page-visual {
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(18,60,54,.78), rgba(36,107,93,.44)),
    url("/assets/holiday-revenue-hero.png") center / cover no-repeat;
  box-shadow: 0 24px 64px rgba(18,33,29,.14);
}

.contact-form .primary-button,
.page-card .primary-button {
  margin-top: 8px;
}

@media (max-width: 980px) {
  .intro-view {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .holiday-visual {
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  .intro-copy h1 {
    font-size: clamp(38px, 10vw, 58px);
  }

  .portfolio-visual {
    width: min(560px, 100%);
  }

  .holiday-visual {
    min-height: 220px;
  }

  .page-hero {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    min-height: auto;
  }
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.site-header {
  position: sticky; top: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  min-height: 74px; padding: 14px clamp(18px, 4vw, 54px); background: rgba(247,245,239,.94);
  border-bottom: 1px solid rgba(23,33,31,.08); backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 220px; color: var(--ink); text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 8px; background: var(--teal); color: #fff; font-weight: 900; }
.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); font-size: 12px; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 24px; color: #394541; font-weight: 750; font-size: 14px; }
.site-nav a, .nav-action, .site-footer a { text-decoration: none; }
.site-nav a:hover, .nav-action:hover, .site-footer a:hover { color: var(--teal-2); }
.nav-action {
  display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 0 16px;
  border: 1px solid var(--line); border-radius: 8px; color: var(--teal); font-weight: 850; background: white;
}
.hero-calculator {
  display: grid; grid-template-columns: minmax(0,.9fr) minmax(420px,1.1fr); gap: clamp(22px,4vw,54px);
  min-height: calc(100vh - 74px); padding: clamp(24px,5vw,66px);
  background: linear-gradient(90deg, rgba(247,245,239,.96) 0%, rgba(247,245,239,.86) 34%, rgba(247,245,239,.18) 66%), url("/assets/holiday-revenue-hero.png") center / cover no-repeat;
}
.hero-copy { align-self: center; max-width: 640px; padding: 36px 0; }
.eyebrow { margin: 0 0 10px; color: var(--teal-2); font-size: 12px; font-weight: 900; letter-spacing: 0; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 18px; max-width: 620px; font-size: clamp(42px,6vw,76px); line-height: .98; letter-spacing: 0; }
h2 { margin-bottom: 12px; font-size: clamp(25px,3vw,38px); line-height: 1.08; letter-spacing: 0; }
h3 { margin-bottom: 8px; font-size: 19px; line-height: 1.2; letter-spacing: 0; }
.lead { max-width: 560px; color: #33403c; font-size: 19px; line-height: 1.55; }
.trust-row, .amenity-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row span, .amenity-row label {
  display: inline-flex; align-items: center; gap: 8px; min-height: 36px; padding: 0 12px;
  border: 1px solid rgba(16,53,47,.14); border-radius: 8px; background: rgba(255,255,255,.78);
  color: #263632; font-size: 13px; font-weight: 800;
}
.calculator-card, .comparison-card, .result-panel, .lead-form, .lead-copy, .steps-grid article, .page-card {
  border: 1px solid rgba(23,33,31,.1); border-radius: 8px; background: rgba(255,255,255,.94); box-shadow: var(--shadow);
}
.calculator-card { align-self: start; padding: clamp(18px,2.5vw,28px); }
.card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.card-head h2 { margin-bottom: 0; font-size: 28px; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.field { display: grid; gap: 7px; color: #23322e; font-size: 13px; font-weight: 850; }
.field-wide { grid-column: 1 / -1; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 44px; border: 1px solid #cfd9d3; border-radius: 8px; padding: 10px 12px;
  background: white; color: var(--ink); outline: none;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal-2); box-shadow: 0 0 0 3px rgba(28,107,93,.14); }
.place-field { position: relative; z-index: 3; }
.place-input-shell {
  position: relative;
  display: block;
  width: 100%;
}

.field-hint {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}
.place-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 14;
  display: grid;
  gap: 5px;
  max-height: min(186px, 32vh);
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(26,40,36,.16);
}
.place-suggestions button {
  display: grid;
  gap: 3px;
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 9px 12px;
  background: #f7faf8;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.place-suggestions button:hover,
.place-suggestions button:focus {
  background: #e8f1ed;
  outline: none;
}
.place-suggestions strong { font-weight: 950; }
.place-suggestions span { color: var(--muted); font-size: 12px; font-weight: 750; }
.amenity-row { margin: 18px 0; }
.amenity-row input, .consent-row input { accent-color: var(--teal-2); }
.revenue-grid { padding-top: 16px; border-top: 1px solid var(--line); }
.primary-button, .secondary-button {
  display: inline-flex; align-items: center; justify-content: center; width: 100%; min-height: 48px; margin-top: 18px;
  border-radius: 8px; padding: 0 18px; cursor: pointer; font-weight: 900;
}
.primary-button { border: 0; background: var(--teal); color: white; }
.secondary-button { border: 1px solid #bdd1c8; background: var(--surface-2); color: var(--teal); }
.primary-button:hover, .secondary-button:hover { transform: translateY(-1px); }
.primary-button:disabled, .secondary-button:disabled { cursor: not-allowed; opacity: .55; transform: none; }
.microcopy, .form-status, .site-footer, .page-text { color: var(--muted); line-height: 1.55; }
.microcopy { margin: 12px 0 0; font-size: 12px; }
.results-section, .lead-screen, .how-section, .page-main { padding: clamp(28px,5vw,66px); }
.results-shell { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(360px,.9fr); gap: 22px; }
.result-panel, .comparison-card, .lead-copy, .lead-form { padding: clamp(20px,3vw,32px); }
.metric-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; margin: 24px 0; }
.metric-grid article, .season-table div {
  min-height: 92px; border: 1px solid var(--line); border-radius: 8px; padding: 14px; background: #fbfcfa;
}
.metric-grid span, .season-table span, .season-table small, .bar-label span, .breakdown dt { display: block; color: var(--muted); font-size: 12px; font-weight: 850; }
.metric-grid strong { display: block; margin-top: 8px; font-size: clamp(20px,2vw,29px); line-height: 1.1; }
.season-table { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 10px; }
.season-table strong { display: block; margin: 8px 0 4px; color: var(--teal); font-size: 20px; }
.comparison-bars { display: grid; gap: 18px; margin: 22px 0; }
.bar-label { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.bar-label strong { white-space: nowrap; }
.bar-track { height: 16px; overflow: hidden; border-radius: 999px; background: #e2e8e3; }
.bar-track span { display: block; width: 6%; height: 100%; border-radius: inherit; background: var(--teal-2); transition: width 240ms ease; }
.bar-track.muted span { background: var(--coral); }
.breakdown { display: grid; grid-template-columns: 1fr auto; gap: 10px 16px; margin: 0; padding-top: 16px; border-top: 1px solid var(--line); }
.breakdown dd { margin: 0; font-weight: 900; }
.lead-screen { display: grid; grid-template-columns: minmax(280px,.75fr) minmax(0,1.25fr); gap: 22px; background: #eef3ee; }
.hidden { display: none !important; }
.lead-form { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.lead-form button, .lead-form .form-status, .lead-form .consent-row { grid-column: 1 / -1; }
.consent-row { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: 13px; font-weight: 750; }
.form-status { margin: 0; min-height: 22px; font-weight: 850; }
.form-status[data-state="success"] { color: var(--teal-2); }
.form-status[data-state="error"] { color: #a43f2b; }
.section-heading { max-width: 760px; margin-bottom: 24px; }
.steps-grid, .page-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.steps-grid article, .page-card { min-height: 220px; padding: 24px; box-shadow: none; }
.steps-grid span { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; margin-bottom: 18px; border-radius: 8px; background: var(--surface-2); color: var(--teal); font-weight: 900; }
.steps-grid p { color: var(--muted); line-height: 1.55; }
.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 28px clamp(18px,4vw,54px); border-top: 1px solid var(--line); background: #fbfaf7; font-size: 13px; }
.site-footer p { margin: 0; max-width: 760px; }
.site-footer nav { display: flex; gap: 16px; font-weight: 850; }
.page-hero { display: grid; grid-template-columns: minmax(0,.9fr) minmax(280px,1.1fr); gap: 24px; align-items: center; min-height: 460px; }
.page-hero h1 { font-size: clamp(38px,5vw,64px); }
.page-visual { min-height: 360px; border-radius: 8px; background: url("/assets/holiday-revenue-hero.png") center / cover no-repeat; box-shadow: var(--shadow); }
.page-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
.contact-form { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; max-width: 860px; }
.cookie-consent {
  position: fixed;
  left: 16px;
  right: auto;
  bottom: 16px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(520px, calc(100% - 32px));
  max-width: 520px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
}
.cookie-consent-copy { display: grid; gap: 4px; }
.cookie-consent-copy p { margin: 0; color: var(--muted); line-height: 1.45; }
.cookie-consent-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.cookie-consent-actions .primary-button,
.cookie-consent-actions .secondary-button { width: auto; min-height: 42px; margin-top: 0; }

.home-flow { background: linear-gradient(180deg, #f5f7f4 0%, #eef4f1 48%, #f8faf8 100%); }
.home-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(430px, 62vh, 620px);
  padding: clamp(28px, 5vw, 72px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(245,247,244,.96) 0%, rgba(245,247,244,.9) 38%, rgba(245,247,244,.34) 72%, rgba(245,247,244,.16) 100%),
    url("/assets/holiday-revenue-hero.png") center / cover no-repeat;
}
.home-hero-inner { position: relative; z-index: 1; width: min(760px, 100%); }
.home-hero h1 { margin-bottom: 18px; font-size: clamp(48px, 9vw, 104px); line-height: .92; }
.home-hero .lead { max-width: 650px; color: #293a36; font-size: clamp(18px, 2vw, 23px); }
.home-trust { margin-top: 24px; }
.hero-scroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 24px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}
.hero-scroll:hover { background: #174a42; }
.public-calculator {
  display: grid;
  gap: 18px;
  width: min(1060px, calc(100% - 36px));
  margin: -26px auto 0;
  position: relative;
  z-index: 2;
}
.calculator-intro {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(23,33,31,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
}
.calculator-intro h2 { max-width: 780px; margin-bottom: 10px; }
.calculator-intro p:not(.eyebrow) { max-width: 840px; margin: 0; color: var(--muted); line-height: 1.6; }
.step-card {
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(23,33,31,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 48px rgba(26, 40, 36, .1);
}
.step-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.step-head > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #dcece6;
  color: var(--teal);
  font-weight: 950;
}
.step-head h2 { margin-bottom: 0; font-size: clamp(26px, 4vw, 42px); }
.simple-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.amenity-grid label {
  min-height: 52px;
  justify-content: flex-start;
  background: #fbfdfb;
}
.calculate-button { margin-top: 22px; max-width: 360px; }
.public-results {
  display: grid;
  gap: 18px;
  width: min(1060px, calc(100% - 36px));
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
.result-hero-panel, .public-comparison {
  box-shadow: 0 18px 52px rgba(26, 40, 36, .12);
}
.result-number {
  margin: 22px 0;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 8px;
  background: linear-gradient(135deg, #10352f 0%, #1c6b5d 68%, #2d6f8f 100%);
  color: #fff;
}
.result-number span, .result-number small { display: block; color: rgba(255,255,255,.78); font-weight: 800; }
.result-number strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(42px, 8vw, 84px);
  line-height: .95;
  letter-spacing: 0;
}
.public-metrics { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.public-comparison { padding: clamp(20px, 3vw, 32px); }
.public-lead {
  width: min(1060px, calc(100% - 36px));
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  background: transparent;
}
.public-lead .lead-copy, .public-lead .lead-form { background: rgba(255,255,255,.96); }

.compact-hero {
  min-height: clamp(360px, 52vh, 560px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(245,247,244,.98) 0%, rgba(245,247,244,.88) 42%, rgba(245,247,244,.26) 74%, rgba(245,247,244,.08) 100%),
    url("/assets/holiday-revenue-hero.png") center / cover no-repeat;
}
.compact-hero h1 { max-width: 740px; }
.compact-hero .lead { max-width: 610px; }
.wizard-stage {
  display: grid;
  gap: 14px;
  width: min(920px, calc(100% - 36px));
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
}
.wizard-calculator {
  width: 100%;
  margin: 0;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16,53,47,.98), rgba(22,70,62,.96) 58%, rgba(45,111,143,.94)),
    radial-gradient(circle at 18% 8%, rgba(255,255,255,.22), transparent 32%);
  box-shadow: 0 24px 72px rgba(16, 53, 47, .28);
  color: #fff;
}
.wizard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.wizard-top .eyebrow { color: rgba(255,255,255,.7); }
.wizard-top h2 { margin: 0; color: #fff; font-size: clamp(28px, 4vw, 46px); }
.wizard-meter {
  flex: 0 0 min(260px, 34vw);
  height: 10px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.2);
}
.wizard-meter span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: #fff;
  transition: width 220ms ease;
}
.wizard-step {
  display: none;
  min-height: 310px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  color: var(--ink);
}
.wizard-step.is-active {
  display: block;
  animation: wizardIn 180ms ease-out;
}
@keyframes wizardIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.question-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.question-head span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #dcece6;
  color: var(--teal);
  font-weight: 950;
}
.question-head h3 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}
.wizard-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 16px;
}
.wizard-controls .primary-button,
.wizard-controls .secondary-button {
  width: auto;
  min-width: 150px;
  margin-top: 0;
}
.wizard-controls .secondary-button {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.35);
  color: #fff;
}
.live-estimate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  padding: 16px 20px;
  border: 1px solid rgba(23,33,31,.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 50px rgba(26,40,36,.12);
}
.live-estimate span,
.live-estimate small {
  color: var(--muted);
  font-weight: 850;
}
.live-estimate strong {
  margin-left: auto;
  color: var(--teal);
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1;
}
.public-breakdown {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}
.public-breakdown summary {
  cursor: pointer;
  padding: 14px 16px;
  color: var(--teal);
  font-weight: 950;
}
#price-breakdown-list {
  display: grid;
  gap: 8px;
  padding: 0 16px 16px;
}
.price-factor {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 9px;
}
.price-factor span { display: grid; gap: 3px; font-weight: 900; }
.price-factor small { color: var(--muted); font-weight: 750; }
.price-factor strong { color: var(--teal); }
.price-factor.minus strong { color: #a43f2b; }
@media (max-width: 1080px) {
  .hero-calculator, .results-shell, .lead-screen, .page-hero { grid-template-columns: 1fr; }
  .hero-calculator { background: linear-gradient(180deg, rgba(247,245,239,.96), rgba(247,245,239,.82)), url("/assets/holiday-revenue-hero.png") center / cover no-repeat; }
  .metric-grid, .season-table { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .steps-grid, .page-grid { grid-template-columns: 1fr; }
  .public-metrics, .amenity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wizard-stage { width: min(860px, calc(100% - 32px)); }
}
@media (max-width: 760px) {
  .site-header { position: static; flex-wrap: wrap; padding: 14px 16px; }
  .brand, .site-nav { width: 100%; }
  .brand { min-width: 0; }
  .site-nav { justify-content: flex-start; flex-wrap: wrap; gap: 12px 16px; }
  .hero-calculator, .results-section, .lead-screen, .how-section, .page-main { padding: 18px; }
  .home-hero { min-height: 520px; padding: 22px 18px; background: linear-gradient(180deg, rgba(245,247,244,.96) 0%, rgba(245,247,244,.88) 58%, rgba(245,247,244,.64) 100%), url("/assets/holiday-revenue-hero.png") center / cover no-repeat; }
  .compact-hero { min-height: 430px; }
  .home-hero h1 { font-size: 54px; }
  .public-calculator, .public-results, .public-lead { width: calc(100% - 28px); }
  .public-calculator { margin-top: -18px; }
  .wizard-stage { width: calc(100% - 28px); margin-top: -18px; }
  .wizard-calculator { padding: 14px; }
  .wizard-top { flex-direction: column; }
  .wizard-meter { width: 100%; flex-basis: auto; }
  .wizard-step { min-height: 420px; padding: 16px; }
  .question-head { align-items: flex-start; }
  .question-head h3 { font-size: 31px; }
  .wizard-controls { flex-direction: column; }
  .wizard-controls .primary-button,
  .wizard-controls .secondary-button { width: 100%; }
  .live-estimate { align-items: flex-start; flex-direction: column; }
  .live-estimate strong { margin-left: 0; }
  h1 { font-size: 42px; }
  .lead { font-size: 16px; }
  .form-grid, .lead-form, .contact-form, .metric-grid, .season-table, .simple-grid, .amenity-grid, .public-metrics, .country-choice-grid { grid-template-columns: 1fr; }
  .calculator-card, .comparison-card, .result-panel, .lead-form, .lead-copy, .page-card { padding: 18px; }
  .step-card, .calculator-intro { padding: 18px; }
  .step-head { gap: 12px; }
  .step-head h2 { font-size: 28px; }
  .calculate-button { max-width: none; }
  .result-number strong { font-size: 48px; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .cookie-consent { align-items: stretch; flex-direction: column; }
  .cookie-consent-actions, .cookie-consent-actions .primary-button, .cookie-consent-actions .secondary-button { width: 100%; }
}

/* Public homepage redesign */
:root {
  --sky: #8fd7e8;
  --sea: #39a7c8;
  --mint: #dff6ec;
  --sun: #ffc857;
  --sun-soft: #fff2bf;
  --leaf: #2fa772;
  --reef: #ff7b54;
  --paper: #fffdf6;
}

body {
  background: #f7fcf8;
}

.site-header {
  min-height: 70px;
  background: rgba(255,255,255,.88);
  border-bottom-color: rgba(15,72,63,.12);
  box-shadow: 0 12px 34px rgba(33,94,86,.08);
}

.brand-mark {
  background: linear-gradient(135deg, #0f4c43, #2fa772);
  box-shadow: 0 10px 22px rgba(15,76,67,.18);
}

.brand small { color: #60736d; }

.site-nav a {
  padding: 8px 0;
}

.nav-action {
  border-color: rgba(255,123,84,.28);
  background: #fff7dd;
  color: #17342f;
}

.home-flow {
  overflow: hidden;
  background:
    linear-gradient(180deg, #eefbff 0%, #f8fff8 38%, #fffdf6 72%, #f5fbf8 100%);
}

.revenue-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  align-items: center;
  justify-items: center;
  gap: clamp(20px, 4vw, 34px);
  min-height: calc(100svh - 70px);
  padding: clamp(36px, 5vw, 58px) clamp(22px, 5vw, 72px) clamp(26px, 4vw, 44px);
  background:
    linear-gradient(180deg, rgba(143,215,232,.42), rgba(255,253,246,.22) 42%, rgba(223,246,236,.45)),
    linear-gradient(90deg, rgba(255,200,87,.14), rgba(57,167,200,.12), rgba(47,167,114,.11));
}

.revenue-hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -1px;
  height: 88px;
  background: #f7fcf8;
  clip-path: polygon(0 46%, 13% 55%, 25% 42%, 40% 61%, 56% 45%, 70% 59%, 84% 43%, 100% 56%, 100% 100%, 0 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(660px, 100%);
  text-align: left;
}

.revenue-hero .eyebrow,
.calculator-band-head .eyebrow {
  color: #087365;
}

.revenue-hero h1 {
  max-width: 680px;
  margin: 0 0 18px;
  font-size: clamp(46px, 6.1vw, 78px);
  line-height: .94;
  color: #10211e;
}

.revenue-hero .lead {
  max-width: 720px;
  margin: 0;
  color: #284a43;
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 24px;
}

.hero-actions span {
  color: #42635c;
  font-size: 14px;
  font-weight: 850;
}

.hero-scroll {
  min-height: 52px;
  margin: 0;
  padding: 0 22px;
  background: linear-gradient(135deg, #ff7b54, #ffc857);
  color: #182420;
  box-shadow: 0 16px 36px rgba(255,123,84,.22);
}

.hero-scroll:hover {
  background: linear-gradient(135deg, #ff8a66, #ffd36e);
}

.holiday-visual {
  position: relative;
  z-index: 1;
  justify-self: start;
  width: min(660px, 100%);
  padding: 0;
  perspective: 1000px;
}

.villa-animation {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 30px 50px rgba(20,82,76,.18));
}

.villa-animation path,
.villa-animation circle,
.villa-animation rect,
.villa-animation ellipse {
  vector-effect: non-scaling-stroke;
}

.scene-card {
  fill: url("#sceneBg");
  stroke: rgba(255,255,255,.86);
  stroke-width: 3;
  filter: url("#softSceneShadow");
}

.soft-cloud path {
  fill: rgba(255,255,255,.78);
}

.cloud-one { animation: cloudDrift 9s ease-in-out infinite; }
.cloud-two { animation: cloudDrift 11s ease-in-out infinite reverse; }

.sun-disc {
  fill: #fff0a8;
  stroke: #f6aa35;
  stroke-width: 9;
  filter: url("#smallGlow");
  animation: sunBreathe 5.5s ease-in-out infinite;
}

.sun-ray {
  fill: none;
  stroke: #f6aa35;
  stroke-width: 9;
  stroke-linecap: round;
  opacity: .6;
  animation: rayPulse 4s ease-in-out infinite;
}

.ray-b { animation-delay: .35s; }
.ray-c { animation-delay: .7s; }

.sand-shape {
  fill: #ffe5a6;
  opacity: .88;
}

.lagoon-shape {
  fill: url("#lagoonGradient");
  opacity: .82;
}

.wave-line {
  fill: none;
  stroke: rgba(255,255,255,.84);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 30 22;
  animation: waveMove 7s linear infinite;
}

.wave-two {
  opacity: .45;
  animation-duration: 9.5s;
}

.dashboard-card rect:first-child,
.profit-bars rect:first-child {
  fill: rgba(255,255,255,.78);
  stroke: rgba(15,76,67,.12);
  stroke-width: 2;
  filter: url("#softSceneShadow");
}

.dashboard-card {
  animation: cardFloat 6s ease-in-out infinite;
}

.calendar-grid rect {
  fill: #dff6ec;
}

.calendar-grid rect:nth-child(2),
.calendar-grid rect:nth-child(6),
.calendar-grid rect:nth-child(8) {
  fill: #ffd680;
  animation: cellPulse 3.8s ease-in-out infinite;
}

.mini-chart,
.revenue-sparkline,
.booking-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-chart {
  --path-length: 310;
  stroke: url("#chartGradient");
  stroke-width: 7;
  stroke-dasharray: 310;
  stroke-dashoffset: 310;
  animation: drawPath 4.6s ease-in-out infinite;
}

.chart-dot {
  fill: #ffc857;
  stroke: #d68c28;
  stroke-width: 4;
  animation: dotPulse 2.6s ease-in-out infinite;
}

.villa-shadow {
  fill: rgba(19,74,67,.18);
}

.terrace-deck {
  fill: #fff1bd;
  stroke: rgba(13,79,69,.3);
  stroke-width: 4;
  stroke-linejoin: round;
}

.villa-wall,
.villa-side,
.villa-door,
.villa-window,
.villa-side-window {
  stroke: #0d4f45;
  stroke-width: 8;
  stroke-linejoin: round;
}

.villa-wall { fill: #fffdf6; }
.villa-side { fill: #dff6ec; }

.villa-roof {
  fill: none;
  stroke: url("#roofGradient");
  stroke-width: 18;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.villa-awning {
  fill: none;
  stroke: #ffc857;
  stroke-width: 9;
  stroke-linecap: round;
}

.villa-door { fill: #ffe8a7; }
.villa-window,
.villa-side-window { fill: #d9fbff; }

.villa-group {
  animation: villaFloat 6.5s ease-in-out infinite;
}

.palm-trunk {
  fill: none;
  stroke: #a9783b;
  stroke-width: 10;
  stroke-linecap: round;
}

.palm-leaf {
  fill: #2fa772;
  stroke: #0d806d;
  stroke-width: 4;
  stroke-linejoin: round;
  transform-box: fill-box;
  transform-origin: 90% 90%;
  animation: leafSway 4.8s ease-in-out infinite;
}

.leaf-two { animation-delay: .5s; }
.leaf-three { animation-delay: 1s; }

.booking-path {
  stroke: rgba(13,79,69,.25);
  stroke-width: 6;
  stroke-dasharray: 12 16;
  animation: dashTravel 5.6s linear infinite;
}

.booking-dot {
  fill: #fff;
  stroke: #ff7b54;
  stroke-width: 7;
  filter: url("#smallGlow");
  animation: dotPulse 2.8s ease-in-out infinite;
}

.booking-b {
  stroke: #39a7c8;
  animation-delay: .65s;
}

.booking-c {
  stroke: #ffc857;
  animation-delay: 1.2s;
}

.revenue-sparkline {
  --path-length: 560;
  stroke: url("#chartGradient");
  stroke-width: 10;
  stroke-dasharray: 560;
  stroke-dashoffset: 560;
  animation: drawPath 4.4s ease-in-out infinite .4s;
}

.coin circle {
  fill: #ffe08a;
  stroke: #cf9135;
  stroke-width: 7;
}

.coin path {
  fill: none;
  stroke: #8d6223;
  stroke-width: 6;
  stroke-linecap: round;
}

.coin {
  transform-box: fill-box;
  transform-origin: center;
  animation: coinFloat 4.5s ease-in-out infinite;
}

.coin-b { animation-delay: .8s; }
.coin-c { animation-delay: 1.5s; }

.profit-bars { animation: cardFloat 6s ease-in-out infinite 1.2s; }

.profit-bars rect:not(:first-child) {
  fill: url("#chartGradient");
  transform-box: fill-box;
  transform-origin: bottom;
  animation: barGrow 3.4s ease-in-out infinite;
}

.bar-two { animation-delay: .25s; }
.bar-three { animation-delay: .5s; }

.spark path {
  fill: none;
  stroke: #ff7b54;
  stroke-width: 8;
  stroke-linecap: round;
  animation: sparkle 2.6s ease-in-out infinite;
}

.spark-b path {
  animation-delay: 1.2s;
}

.hero-proof-strip {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: min(980px, 100%);
}

.hero-proof-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(13,79,69,.14);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255,255,255,.76);
  color: #1d3d37;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(33,94,86,.08);
}

.calculator-band {
  position: relative;
  z-index: 1;
  padding: clamp(38px, 6vw, 74px) 0 clamp(34px, 6vw, 72px);
  background:
    linear-gradient(180deg, #f7fcf8 0%, #edf8f4 100%);
}

.calculator-band-head {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto 22px;
  text-align: center;
}

.calculator-band-head h2 {
  margin: 0;
  color: #10211e;
  font-size: clamp(28px, 4vw, 48px);
}

.wizard-stage {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  scroll-margin-top: 92px;
}

.public-calculator {
  width: 100%;
  margin: 0;
}

.wizard-calculator {
  position: relative;
  padding: clamp(20px, 4vw, 38px);
  border: 1px solid rgba(13,79,69,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 28px 80px rgba(40,91,81,.15);
  color: var(--ink);
}

.wizard-calculator::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, #39a7c8, #2fa772, #ffc857, #ff7b54);
}

.wizard-top {
  align-items: center;
  border-bottom: 1px solid rgba(13,79,69,.1);
  padding-bottom: 18px;
}

.wizard-top .eyebrow {
  color: #087365;
}

.wizard-top h2 {
  color: #10211e;
  font-size: clamp(30px, 4vw, 50px);
}

.wizard-meter {
  background: #e1f0ea;
}

.wizard-meter span {
  background: linear-gradient(90deg, #39a7c8, #ffc857);
}

.wizard-step {
  min-height: 280px;
  border: 0;
  padding: clamp(20px, 4vw, 34px) 0 0;
  background: transparent;
}

.wizard-step.is-active {
  display: block;
  animation: wizardIn 220ms ease-out;
}

.question-head {
  align-items: flex-start;
  margin-bottom: clamp(18px, 3vw, 28px);
}

.question-head span {
  background: #fff0c8;
  color: #7b5016;
  box-shadow: inset 0 -3px 0 rgba(255,200,87,.38);
}

.question-head h3 {
  max-width: 780px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.02;
}

.simple-grid {
  gap: 16px;
}

.country-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.country-choice-grid label {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 118px;
  border: 1px solid rgba(20, 69, 62, .18);
  border-radius: 8px;
  padding: 18px;
  background: linear-gradient(145deg, #fffdf4, #ecfbf4);
  color: #17342f;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(13, 61, 54, .08);
}

.country-choice-grid input {
  position: absolute;
  inset: 14px 14px auto auto;
  width: 18px;
  height: 18px;
  accent-color: #ff9d4d;
}

.country-choice-grid span {
  align-self: end;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 950;
}

.country-choice-grid small {
  color: #55706b;
  font-weight: 850;
}

.country-choice-grid label:has(input:checked) {
  border-color: #ff9d4d;
  background: linear-gradient(145deg, #fff1bd, #dff8f2);
  box-shadow: 0 20px 42px rgba(255, 157, 77, .22);
}

.field {
  color: #1c332f;
  font-size: 13px;
}

.field input,
.field select,
.field textarea {
  min-height: 54px;
  border-color: #c8ded6;
  background: #fbfff9;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #2fa772;
  box-shadow: 0 0 0 4px rgba(47,167,114,.15);
}

.field-hint {
  color: #58706a;
}

.place-suggestions {
  top: calc(100% + 10px);
  border-color: rgba(13,79,69,.14);
  background: #fffdf6;
}

.place-suggestions button {
  background: #f1faf6;
}

.place-suggestions button:hover,
.place-suggestions button:focus {
  background: #dff6ec;
}

.amenity-grid label {
  min-height: 58px;
  border-color: #c8ded6;
  background: #fbfff9;
}

.amenity-grid input {
  width: 18px;
  height: 18px;
}

.wizard-controls {
  border-top: 1px solid rgba(13,79,69,.1);
  padding-top: 18px;
}

.primary-button,
.secondary-button {
  min-height: 52px;
}

.primary-button {
  background: #0d4f45;
  color: #fff;
  box-shadow: 0 14px 26px rgba(13,79,69,.16);
}

.primary-button:hover {
  background: #14695c;
}

.secondary-button {
  border-color: rgba(13,79,69,.16);
  background: #fff7dd;
  color: #17342f;
}

.wizard-controls .secondary-button {
  border-color: rgba(13,79,69,.16);
  background: #f1faf6;
  color: #17342f;
}

.live-estimate {
  width: min(760px, 100%);
  margin: 0 auto;
  border-color: rgba(255,200,87,.42);
  background: #fff7dd;
  box-shadow: 0 18px 40px rgba(255,200,87,.16);
}

.live-estimate span {
  color: #7b5016;
}

.live-estimate strong {
  color: #0d4f45;
}

.public-results {
  padding-top: clamp(18px, 4vw, 44px);
}

.result-panel,
.comparison-card {
  border-color: rgba(13,79,69,.12);
  background: rgba(255,255,255,.94);
}

.result-number {
  background: linear-gradient(135deg, #0d4f45 0%, #2fa772 62%, #ffc857 100%);
}

@keyframes drawPath {
  0% { stroke-dashoffset: var(--path-length, 720); opacity: .2; }
  35%, 70% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: calc(var(--path-length, 720) * -1); opacity: .2; }
}

@keyframes waveMove {
  to { stroke-dashoffset: -116; }
}

@keyframes cloudDrift {
  0%, 100% { transform: translateX(0); opacity: .72; }
  50% { transform: translateX(18px); opacity: .92; }
}

@keyframes sunBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes rayPulse {
  0%, 100% { opacity: .36; }
  50% { opacity: .82; }
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes villaFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes cellPulse {
  0%, 100% { opacity: .72; }
  50% { opacity: 1; }
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: .82; }
  50% { transform: scale(1.22); opacity: 1; }
}

@keyframes leafSway {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(4deg); }
}

@keyframes dashTravel {
  to { stroke-dashoffset: -84; }
}

@keyframes barGrow {
  0%, 100% { transform: scaleY(.72); opacity: .76; }
  45%, 65% { transform: scaleY(1); opacity: 1; }
}

@keyframes coinFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@keyframes sparkle {
  0%, 100% { opacity: .25; transform: scale(.88); }
  45% { opacity: 1; transform: scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
  .villa-animation * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}

.form-honeypot {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 900px) {
  .revenue-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 38px;
  }

  .hero-content {
    justify-self: stretch;
  }

  .holiday-visual {
    justify-self: center;
    width: min(680px, 100%);
  }

  .hero-proof-strip {
    justify-content: flex-start;
  }

  .calculator-band-head {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    gap: 12px;
    padding: 12px 16px;
  }

  .site-nav {
    order: 3;
  }

  .nav-action {
    margin-left: auto;
  }

  .revenue-hero {
    justify-items: stretch;
    gap: 20px;
    padding: 30px 16px 36px;
  }

  .hero-content {
    text-align: left;
  }

  .revenue-hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .revenue-hero .lead {
    font-size: 17px;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-actions span {
    width: 100%;
  }

  .holiday-visual {
    padding: 0;
  }

  .hero-proof-strip {
    gap: 8px;
  }

  .hero-proof-strip span {
    min-height: 34px;
    font-size: 12px;
  }

  .calculator-band {
    padding-top: 34px;
  }

  .wizard-stage,
  .calculator-band-head,
  .public-results,
  .public-lead {
    width: calc(100% - 28px);
  }

  .wizard-stage {
    scroll-margin-top: 20px;
  }

  .wizard-calculator {
    padding: 18px;
  }

  .wizard-top {
    gap: 14px;
  }

  .wizard-step {
    min-height: 0;
  }

  .question-head {
    gap: 12px;
  }

  .question-head h3 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .wizard-controls {
    flex-direction: column;
  }

  .wizard-controls .primary-button,
  .wizard-controls .secondary-button {
    width: 100%;
  }

  .live-estimate {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Public single-screen tool */
.public-document {
  overflow: hidden;
}

.public-home {
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  background: #fff7e8;
}

.public-home .site-footer {
  display: none;
}

.public-home .site-header {
  display: none;
}

.public-home .brand-mark {
  border-radius: 8px;
  background: #133f38;
}

.public-home .nav-link {
  border: 0;
  padding: 8px 0;
  background: transparent;
  color: #263a35;
  cursor: pointer;
  font-weight: 850;
}

.public-home .nav-link:hover,
.public-home .site-nav a:hover {
  color: #0e6c5f;
}

.public-home .nav-action {
  min-height: 42px;
  border: 1px solid rgba(19,63,56,.18);
  border-radius: 8px;
  background: #fff8e7;
  box-shadow: inset 0 -2px 0 rgba(217,164,65,.18);
}

.tool-app {
  position: relative;
  height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(108deg, #fff5de 0 42%, #e6f8ec 42% 64%, #d7f4ff 64% 100%);
}

.app-view {
  height: 100svh;
  min-height: 0;
  overflow: hidden;
}

.utility-links {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: clamp(18px, 4vh, 36px);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.utility-links a {
  position: relative;
  display: grid;
  gap: 1px;
  min-width: 92px;
  border: 1px solid rgba(255,138,92,.25);
  border-radius: 16px 16px 16px 4px;
  padding: 10px 13px 11px 16px;
  background: rgba(255,253,246,.78);
  color: #17342f;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(31,92,95,.1);
}

.utility-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: 0 6px 6px 0;
  background: linear-gradient(#ff8a5c, #ffc857);
}

.utility-links a small {
  color: #5a7772;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.utility-links a:hover {
  background: #fff8e7;
  border-color: rgba(255,138,92,.48);
  transform: translateY(-2px);
}

.public-home[data-public-view="calculator"] .utility-links,
.public-home[data-public-view="result"] .utility-links,
.public-home[data-public-view="lead"] .utility-links {
  display: none;
}

.public-home[data-public-view="calculator"] .cookie-consent,
.public-home[data-public-view="result"] .cookie-consent,
.public-home[data-public-view="lead"] .cookie-consent {
  display: none;
}

.intro-view {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(480px, 1.18fr);
  align-items: center;
  gap: clamp(32px, 5vw, 86px);
  width: min(1360px, calc(100% - 84px));
  height: 100%;
  margin: 0 auto;
  padding: clamp(36px, 7vh, 86px) 0 clamp(44px, 7vh, 86px);
  box-sizing: border-box;
}

.intro-copy {
  display: grid;
  align-content: center;
  min-height: 0;
  max-width: 590px;
}

.intro-copy .eyebrow {
  color: #de6540;
}

.intro-copy h1 {
  max-width: 560px;
  margin: 0 0 20px;
  color: #132923;
  font-size: clamp(58px, 7.2vw, 112px);
  line-height: .88;
}

.intro-copy .lead {
  max-width: 520px;
  color: #365e58;
  font-size: clamp(18px, 1.45vw, 22px);
}

.launch-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.launch-row p {
  margin: 0;
  max-width: 280px;
  color: #42756f;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}

.launch-button {
  position: relative;
  display: grid;
  gap: 4px;
  min-width: 310px;
  border: 0;
  border-radius: 0;
  padding: 18px 64px 18px 22px;
  background: linear-gradient(100deg, #ff8a5c 0%, #ffc857 100%);
  color: #17342f;
  text-align: left;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 50%, calc(100% - 28px) 100%, 0 100%, 0 0);
  box-shadow: 0 20px 38px rgba(255,138,92,.24);
}

.launch-button::after {
  content: ">";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 26px;
  height: 26px;
  margin-top: -13px;
  color: #17342f;
  font-size: 28px;
  font-weight: 950;
  line-height: 24px;
  text-align: center;
}

.launch-main {
  font-size: 21px;
  font-weight: 950;
}

.launch-button small {
  color: rgba(23,52,47,.72);
  font-size: 12px;
  font-weight: 780;
}

.launch-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(100deg, #ff7a52 0%, #ffd36e 100%);
}

.blueprint-visual {
  display: grid;
  place-items: center;
  min-height: 560px;
  padding-left: 0;
}

.blueprint-animation {
  display: block;
  width: min(780px, 100%);
  height: auto;
  overflow: visible;
  transform: rotate(-1.2deg);
  filter: drop-shadow(0 28px 46px rgba(17,58,52,.16));
}

.holiday-visual {
  display: grid;
  place-items: center;
  min-height: 560px;
  padding-left: 0;
}

.holiday-animation {
  display: block;
  width: min(790px, 100%);
  height: auto;
  overflow: visible;
  transform: rotate(-.8deg);
  filter: drop-shadow(0 28px 46px rgba(47,111,116,.14));
}

.holiday-animation path,
.holiday-animation rect,
.holiday-animation circle {
  vector-effect: non-scaling-stroke;
}

.hv-card {
  fill: url("#holidaySky");
  stroke: rgba(64,135,130,.28);
  stroke-width: 2;
  filter: url("#holidayShadow");
}

.hv-sun {
  fill: #ffd36e;
  stroke: rgba(255,138,92,.4);
  stroke-width: 6;
  transform-origin: 604px 126px;
  animation: sunFloat 7s ease-in-out infinite;
}

.hv-cloud {
  fill: rgba(255,255,255,.72);
  stroke: rgba(86,151,145,.16);
  stroke-width: 2;
}

.cloud-b {
  opacity: .62;
}

.hv-bird {
  fill: none;
  stroke: #2f7871;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .86;
  animation: birdFloat 6.8s ease-in-out infinite;
}

.bird-b {
  animation-delay: .8s;
}

.bird-c {
  animation-delay: 1.45s;
}

.hv-lawn {
  fill: url("#holidayLawn");
  opacity: .82;
}

.hv-path {
  fill: rgba(255,247,220,.9);
  stroke: rgba(218,151,74,.28);
  stroke-width: 2;
}

.hv-patio {
  transform-box: fill-box;
  transform-origin: center;
}

.parasol-pole,
.parasol-ribs,
.chair-leg,
.guest-limbs,
.guest-arm,
.guest-leg {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.parasol-pole {
  stroke: #1c5e57;
  stroke-width: 6;
  stroke-dasharray: 96;
  stroke-dashoffset: 96;
  opacity: 0;
  animation: poleOpen 1.6s ease-out 3s forwards;
}

.parasol-canopy {
  fill: #ffd36e;
  stroke: #ff8a5c;
  stroke-width: 5;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: 50% 100%;
  transform: scale(.08, .04) rotate(-2deg);
  animation: canopyOpen 1.7s cubic-bezier(.2,.9,.18,1.05) 3.25s forwards;
}

.parasol-ribs {
  stroke: rgba(28,94,87,.35);
  stroke-width: 3;
  opacity: 0;
  animation: patioFade 1s ease-out 3.7s forwards;
}

.chair {
  opacity: .35;
  transform-box: fill-box;
  transform-origin: 50% 100%;
  transform: translateY(13px) rotate(-8deg) scale(.55, .18);
  animation: chairOpen 1.5s cubic-bezier(.18,.9,.22,1.08) 2.35s forwards;
}

.chair-b {
  animation-delay: 2.55s;
}

.chair-seat {
  fill: #ffbf5f;
  stroke: #1c5e57;
  stroke-width: 5;
  stroke-linejoin: round;
}

.chair-back {
  fill: #b8eef3;
  stroke: #1c5e57;
  stroke-width: 5;
  stroke-linejoin: round;
}

.chair-leg {
  stroke: #1c5e57;
  stroke-width: 5;
}

.tree-trunk {
  fill: #a86f47;
  stroke: #6c4a35;
  stroke-width: 2;
}

.tree-leaf {
  fill: #49b57c;
  stroke: #1e7e67;
  stroke-width: 4;
  stroke-linejoin: round;
}

.leaf-b {
  fill: #63c985;
}

.leaf-c {
  fill: #8bd87d;
}

.house-wall {
  fill: #fff6dc;
  stroke: #1c5e57;
  stroke-width: 8;
  stroke-linejoin: round;
}

.house-side {
  fill: #f6e7c7;
  stroke: #1c5e57;
  stroke-width: 8;
  stroke-linejoin: round;
}

.house-roof {
  fill: none;
  stroke: #1c5e57;
  stroke-width: 14;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.house-roof-fill {
  fill: url("#holidayRoof");
  opacity: .88;
}

.house-terrace {
  fill: none;
  stroke: rgba(28,94,87,.38);
  stroke-width: 7;
  stroke-linecap: round;
}

.house-door {
  fill: #58c4b8;
  stroke: #1c5e57;
  stroke-width: 6;
}

.house-window {
  fill: #b8eef3;
  stroke: #1c5e57;
  stroke-width: 6;
}

.window-shine {
  fill: none;
  stroke: rgba(28,94,87,.35);
  stroke-width: 4;
}

.walker,
.seated-guest {
  transform-box: fill-box;
  transform-origin: center bottom;
}

.walker {
  opacity: 0;
}

.walker-a {
  animation: guestWalkA 4.45s cubic-bezier(.42,0,.16,1) .35s forwards;
}

.walker-b {
  animation: guestWalkB 4.65s cubic-bezier(.42,0,.16,1) .55s forwards;
}

.seated-guest {
  opacity: 0;
  animation: seatedAppear .9s ease-out 4.85s forwards;
}

.guest-head {
  fill: #8b5f45;
  stroke: #613e2b;
  stroke-width: 2;
}

.guest-body {
  stroke: #17342f;
  stroke-width: 3;
  stroke-linejoin: round;
}

.dress {
  fill: #ff8a5c;
}

.shirt {
  fill: #58c4b8;
}

.guest-limbs,
.guest-arm,
.guest-leg {
  stroke: #613e2b;
  stroke-width: 4;
}

.guest-arm,
.guest-leg {
  transform-box: fill-box;
  transform-origin: 50% 0%;
}

.arm-front,
.leg-back {
  animation: stepSwingA .78s ease-in-out infinite;
}

.arm-back,
.leg-front {
  animation: stepSwingB .78s ease-in-out infinite;
}

.blueprint-animation path,
.blueprint-animation rect {
  vector-effect: non-scaling-stroke;
}

.bp-paper {
  fill: url("#paperWash");
  stroke: rgba(19,63,56,.22);
  stroke-width: 2;
  filter: url("#blueprintShadow");
}

.bp-grid {
  fill: none;
  stroke: rgba(19,63,56,.08);
  stroke-width: 1;
}

.bp-line,
.bp-route,
.bp-yield,
.bp-label-line {
  fill: none;
  stroke-linecap: square;
  stroke-linejoin: round;
}

.bp-line {
  stroke: #143f38;
  stroke-width: 7;
}

.bp-line.draw-soft {
  stroke: rgba(20,63,56,.5);
  stroke-width: 4;
}

.bp-label-line {
  stroke: rgba(20,63,56,.32);
  stroke-width: 5;
}

.draw-main,
.draw-soft {
  stroke-dasharray: none;
  stroke-dashoffset: 0;
  animation: blueprintBreath 6s ease-in-out infinite;
}

.bp-floor .draw-soft,
.bp-calendar .draw-soft {
  animation-delay: .6s;
}

.bp-panel {
  fill: rgba(255,255,255,.52);
  stroke: rgba(20,63,56,.28);
  stroke-width: 2;
}

.bp-block {
  stroke: none;
  opacity: .78;
}

.block-a {
  fill: #d9a441;
  animation: blockFade 4.2s ease-in-out infinite;
}

.block-b {
  fill: #2b8a73;
  animation: blockFade 4.2s ease-in-out infinite 1.1s;
}

.bp-route {
  stroke: rgba(43,138,115,.46);
  stroke-width: 6;
  stroke-dasharray: 18 16;
  animation: blueprintDash 6s linear infinite;
}

.bp-yield {
  stroke: url("#inkLine");
  stroke-width: 9;
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  animation: yieldDraw 5.2s ease-in-out infinite .4s;
}

.tool-view {
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 28px);
  box-sizing: border-box;
}

.tool-shell {
  display: grid;
  gap: 16px;
  width: min(1080px, 100%);
  max-height: calc(100svh - 56px);
  overflow: auto;
  border: 1px solid rgba(19,63,56,.16);
  border-radius: 8px;
  padding: clamp(16px, 2.7vw, 28px);
  background: rgba(255,253,246,.9);
  box-shadow: 0 24px 60px rgba(24,64,57,.13);
}

.tool-topbar,
.result-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tool-topbar .eyebrow,
.result-actions .eyebrow {
  margin-bottom: 3px;
}

.tool-topbar strong {
  display: block;
  color: #17342f;
  font-size: 16px;
}

.tool-text-button {
  min-height: 38px;
  border: 1px solid rgba(19,63,56,.18);
  border-radius: 8px;
  padding: 0 12px;
  background: #f8f1de;
  color: #17342f;
  cursor: pointer;
  font-weight: 900;
}

.tool-text-button:hover {
  background: #efe3c4;
}

.tool-home-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid rgba(19,63,56,.18);
  border-radius: 18px 18px 18px 4px;
  padding: 0 16px 0 14px;
  background: linear-gradient(135deg, #fff8df, #e6f8ec);
  color: #17342f;
  cursor: pointer;
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(20,73,67,.08);
}

.tool-home-button:hover {
  border-color: rgba(255,138,92,.34);
  background: linear-gradient(135deg, #fff0c2, #dff6ec);
  transform: translateY(-1px);
}

.home-glyph {
  position: relative;
  width: 22px;
  height: 20px;
  display: inline-block;
}

.home-glyph::before,
.home-glyph::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.home-glyph::before {
  top: 1px;
  width: 16px;
  height: 16px;
  border-left: 4px solid #0f6d5f;
  border-top: 4px solid #0f6d5f;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 3px 0 0 0;
}

.home-glyph::after {
  bottom: 1px;
  width: 15px;
  height: 12px;
  border: 4px solid #0f6d5f;
  border-top: 0;
  border-radius: 2px;
  background: rgba(255,255,255,.65);
}

.public-home .calculator-band {
  padding: 0;
  background: transparent;
}

.public-home .wizard-stage {
  width: 100%;
  margin: 0;
}

.public-home .wizard-calculator {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 3vw, 36px);
  box-shadow: none;
  background:
    linear-gradient(112deg, rgba(255,253,246,.98) 0 58%, rgba(231,249,240,.94) 58% 100%);
  border: 1px solid rgba(32, 91, 82, .14);
  box-shadow: 0 26px 70px rgba(20, 73, 67, .11);
}

.public-home .wizard-calculator::before {
  background: linear-gradient(90deg, #ff8a5c 0 22%, #ffc857 22% 46%, #2fa772 46% 72%, #39a7c8 72% 100%);
}

.public-home .wizard-calculator::after {
  content: "";
  position: absolute;
  inset: 8px 0 auto;
  height: 42px;
  background:
    linear-gradient(135deg, transparent 0 34%, rgba(57,167,200,.08) 34% 62%, transparent 62% 100%);
  pointer-events: none;
}

.public-home .wizard-top {
  position: relative;
  z-index: 1;
  align-items: end;
  margin-bottom: clamp(16px, 3vw, 28px);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(22, 66, 59, .12);
}

.public-home .wizard-top .eyebrow {
  width: fit-content;
  border: 1px solid rgba(255, 138, 92, .24);
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff4d7;
  color: #a24f2f;
}

.public-home .wizard-top h2 {
  font-size: clamp(24px, 3vw, 38px);
}

.public-home .wizard-step {
  position: relative;
  z-index: 1;
  min-height: 0;
  padding: 0;
}

.public-home .question-head {
  display: grid;
  gap: 8px;
  margin-bottom: clamp(18px, 3vw, 28px);
  padding: 0 0 0 clamp(14px, 2vw, 22px);
  border-left: 0;
}

.public-home .question-head::before {
  content: "";
  width: 76px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff8a5c, #ffc857);
}

.public-home .question-head h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 1.06;
}

.public-home .question-head span {
  display: none;
}

.public-home .field input,
.public-home .field select,
.public-home .field textarea {
  min-height: 54px;
  border: 0;
  border-bottom: 2px solid #bcd7ce;
  border-radius: 0;
  padding-inline: 0;
  background: transparent;
  font-size: 18px;
}

.public-home .field input:focus,
.public-home .field select:focus,
.public-home .field textarea:focus {
  border-color: #ff9d4d;
  box-shadow: none;
}

.public-home .field {
  border: 1px solid rgba(22, 66, 59, .11);
  border-radius: 14px 14px 14px 3px;
  padding: 14px 16px 12px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 12px 28px rgba(20,73,67,.05);
}

.public-home .field:focus-within {
  border-color: rgba(255, 157, 77, .55);
  box-shadow: 0 14px 34px rgba(255, 157, 77, .12);
}

.public-home .amenity-grid label {
  min-height: 78px;
  align-items: center;
  border-color: rgba(22, 66, 59, .14);
  border-radius: 18px 18px 18px 4px;
  background: rgba(255,255,255,.74);
  font-size: 16px;
  box-shadow: 0 12px 24px rgba(20,73,67,.05);
}

.public-home .amenity-grid label:has(input:checked) {
  border-color: #ff9d4d;
  background: linear-gradient(135deg, #fff2bf, #e3f8ec);
  box-shadow: 0 16px 32px rgba(19,63,56,.10);
}

.public-home .amenity-grid input {
  width: 20px;
  height: 20px;
  accent-color: #ff9d4d;
}

.visitor-yield-grid {
  align-items: stretch;
}

.model-assumption {
  display: grid;
  align-content: center;
  gap: 6px;
  min-height: 92px;
  border: 1px solid rgba(255,138,92,.2);
  border-radius: 18px 18px 18px 4px;
  padding: 16px 18px;
  background: #fff7dd;
  color: #365e58;
}

.model-assumption strong {
  color: #17342f;
  font-size: 16px;
}

.model-assumption span {
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.public-home .wizard-controls {
  margin-top: clamp(18px, 3vw, 28px);
  padding-top: 18px;
  border-top: 1px solid rgba(22, 66, 59, .12);
}

.public-home .primary-button,
.public-home .secondary-button {
  width: auto;
  min-width: 160px;
  border-radius: 16px 16px 16px 4px;
  box-shadow: none;
}

.public-home .primary-button {
  background: linear-gradient(135deg, #ff8a5c, #ffc857);
  color: #17342f;
  clip-path: none;
  box-shadow: 0 16px 30px rgba(255, 138, 92, .18);
}

.public-home .primary-button:hover {
  background: linear-gradient(135deg, #ff784d, #ffd36e);
}

.public-home .secondary-button {
  background: #f8f1de;
}

.public-home .live-estimate {
  width: 100%;
  border-color: rgba(19,63,56,.12);
  background: #f8f1de;
  box-shadow: none;
}

.public-home .public-results,
.public-home .public-lead {
  width: 100%;
  margin: 0;
  padding: 0;
}

.public-home .public-results {
  display: grid;
  gap: 14px;
}

.result-summary-card {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(22,66,59,.12);
  border-radius: 20px 20px 20px 6px;
  padding: clamp(22px, 3.2vw, 38px);
  background: rgba(255,255,255,.94);
  box-shadow: 0 20px 54px rgba(20,73,67,.09);
}

.result-summary-card h2 {
  max-width: 820px;
  margin: 0;
  color: #14231f;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.02;
}

.result-summary-card > p:not(.eyebrow) {
  max-width: 780px;
  margin: 0;
  color: #60736d;
  font-size: 16px;
  font-weight: 740;
  line-height: 1.5;
}

.result-sentence {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px 24px;
  margin-top: 8px;
  border: 1px solid rgba(15,109,95,.16);
  border-radius: 18px 18px 18px 5px;
  padding: 18px 22px;
  background: #eef8f2;
}

.result-sentence > span,
.result-sentence small {
  color: #49655e;
  font-weight: 850;
}

.result-sentence > span {
  text-transform: uppercase;
  font-size: 12px;
}

.result-sentence strong {
  grid-row: span 2;
  color: #0f4c43;
  font-size: clamp(38px, 5vw, 72px);
  line-height: .9;
}

.result-sentence small {
  font-size: 15px;
  line-height: 1.35;
}

.result-options-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) minmax(240px, .72fr);
  gap: 12px;
}

.result-option-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 194px;
  border: 1px solid rgba(22,66,59,.12);
  border-radius: 18px 18px 18px 5px;
  padding: 20px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 34px rgba(20,73,67,.07);
}

.result-option-card .option-label {
  color: #60736d;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

body.public-home[data-public-view="result"] .option-agency-subtitle {
  display: block;
  margin-top: -5px;
  color: #b8613b;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

body.public-home[data-public-view="result"] .result-benefit-copy {
  max-width: 760px;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.16;
}

body.public-home[data-public-view="result"] .result-benefit-copy b {
  color: #00947d;
  white-space: nowrap;
}

body.public-home[data-public-view="result"] .option-traditional > strong {
  display: block;
  font-size: clamp(34px, 3.35vw, 54px);
  line-height: .98;
  white-space: nowrap;
}

body.public-home[data-public-view="result"] .option-traditional .option-label {
  white-space: nowrap;
}

body.public-home[data-public-view="result"] .result-benefit-line {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

body.public-home[data-public-view="result"] .result-benefit-line > div {
  min-width: 0;
}

body.public-home[data-public-view="result"] .result-benefit-copy {
  display: block;
  max-width: 780px;
  overflow-wrap: normal;
}

body.public-home[data-public-view="result"] .result-benefit-line > #metric-difference {
  justify-self: end;
  white-space: nowrap;
  font-size: clamp(38px, 4vw, 58px);
}

@media (max-width: 720px) {
  body.public-home[data-public-view="result"] .option-traditional .option-label {
    white-space: normal;
  }

  body.public-home[data-public-view="result"] .result-benefit-line {
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: start;
  }

  body.public-home[data-public-view="result"] .result-benefit-line > #metric-difference {
    grid-column: 2;
    justify-self: start;
    font-size: clamp(34px, 12vw, 48px);
  }
}

.result-option-card strong {
  color: #14231f;
  font-size: clamp(34px, 4vw, 56px);
  line-height: .95;
}

.result-option-card p {
  margin: 0;
  color: #49655e;
  font-weight: 780;
  line-height: 1.42;
}

.result-option-card small {
  color: #6e7f7a;
  font-weight: 850;
}

.option-mine {
  border-color: rgba(15,109,95,.28);
  background: #0f4c43;
}

.option-mine .option-label,
.option-mine strong,
.option-mine p,
.option-mine small {
  color: #fff;
}

.option-mine small,
.option-mine p {
  opacity: .82;
}

.option-traditional {
  background: #fff6ee;
}

.option-self {
  background: #f7faf8;
}

.result-benefit-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255,138,92,.2);
  border-radius: 16px 16px 16px 5px;
  padding: 16px 18px;
  background: #fff9e9;
}

.result-benefit-line span {
  color: #8d5322;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.result-benefit-line strong {
  color: #0f4c43;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.result-benefit-line small {
  max-width: 300px;
  color: #60736d;
  font-weight: 780;
  line-height: 1.35;
}

.result-story,
.result-compare-grid,
.result-difference-card,
.result-facts,
.result-detail-drawer,
.result-cta-row {
  width: 100%;
}

.result-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  gap: clamp(16px, 3vw, 28px);
  align-items: stretch;
  border: 1px solid rgba(22,66,59,.13);
  border-radius: 22px 22px 22px 6px;
  padding: clamp(18px, 3vw, 30px);
  background:
    linear-gradient(120deg, rgba(255,253,246,.98) 0 58%, rgba(229,249,241,.96) 58% 100%);
  box-shadow: 0 24px 60px rgba(20,73,67,.11);
}

.result-copy {
  display: grid;
  align-content: center;
}

.result-copy h2 {
  max-width: 660px;
  margin-bottom: 12px;
  font-size: clamp(31px, 4.3vw, 54px);
  line-height: 1;
}

#result-subline {
  max-width: 680px;
  margin: 0;
  color: #46635e;
  font-size: 16px;
  font-weight: 760;
  line-height: 1.55;
}

.result-signal-card {
  display: grid;
  align-content: center;
  min-height: 190px;
  border: 1px solid rgba(255,138,92,.24);
  border-radius: 22px 22px 22px 6px;
  padding: clamp(20px, 3vw, 30px);
  background:
    radial-gradient(circle at 90% 10%, rgba(255,200,87,.34), transparent 34%),
    linear-gradient(135deg, #fff2bf 0%, #fff8e5 52%, #e6f8ec 100%);
  box-shadow: 0 18px 42px rgba(255,138,92,.12);
}

.result-signal-card span {
  color: #8d5322;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.result-signal-card strong {
  display: block;
  margin: 10px 0;
  color: #123f38;
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: .95;
}

.result-signal-card small {
  color: #46635e;
  font-weight: 780;
  line-height: 1.4;
}

.public-home .result-main-number {
  display: grid;
  align-content: center;
  min-height: 220px;
  margin: 0;
  border-radius: 22px 22px 22px 6px;
  padding: clamp(20px, 3vw, 30px);
  background:
    radial-gradient(circle at 86% 12%, rgba(255,200,87,.32), transparent 34%),
    linear-gradient(135deg, #0f6d5f 0%, #27a276 72%, #ffc857 100%);
  box-shadow: 0 22px 46px rgba(15,109,95,.2);
}

.public-home .result-main-number strong {
  font-size: clamp(52px, 7.4vw, 92px);
}

.result-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.compare-tile {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  min-height: 178px;
  border: 1px solid rgba(22,66,59,.12);
  border-radius: 20px 20px 20px 5px;
  padding: 20px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 36px rgba(20,73,67,.08);
}

.compare-tile::after {
  content: "";
  position: absolute;
  inset: auto -16% -42% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
}

.compare-mine {
  background: linear-gradient(135deg, #123f38, #17846f);
  color: #fff;
}

.compare-traditional {
  background: linear-gradient(135deg, #fff7df, #ffe3d8);
  color: #17342f;
}

.compare-kicker {
  position: relative;
  z-index: 1;
  color: inherit;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.compare-tile strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}

.compare-tile small {
  position: relative;
  z-index: 1;
  max-width: 420px;
  color: inherit;
  opacity: .78;
  font-weight: 760;
  line-height: 1.45;
}

.compare-track {
  position: relative;
  z-index: 1;
  height: 12px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
}

.compare-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #ffc857;
  transition: width 240ms ease;
}

.compare-track.muted {
  background: rgba(23,52,47,.12);
}

.compare-track.muted span {
  background: #d97658;
}

.result-difference-card {
  display: grid;
  grid-template-columns: minmax(0, .7fr) auto minmax(0, .9fr);
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255,138,92,.24);
  border-radius: 18px 18px 18px 5px;
  padding: 18px 22px;
  background: linear-gradient(100deg, #fff2bf, #fff8e5 54%, #e6f8ec);
  box-shadow: 0 14px 34px rgba(255,138,92,.12);
}

.result-difference-card span {
  color: #8d5322;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.result-difference-card strong {
  color: #123f38;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.result-difference-card small {
  color: #46635e;
  font-weight: 780;
  line-height: 1.4;
}

.result-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.result-facts article {
  min-height: 104px;
  border: 1px solid rgba(22,66,59,.12);
  border-radius: 16px 16px 16px 4px;
  padding: 16px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 26px rgba(20,73,67,.06);
}

.result-facts span {
  display: block;
  color: #58706a;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.result-facts strong {
  display: block;
  margin-top: 8px;
  color: #10211e;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.result-detail-drawer {
  margin-top: 0;
  border-color: rgba(22,66,59,.14);
  border-radius: 18px 18px 18px 5px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 12px 30px rgba(20,73,67,.06);
}

.result-detail-drawer summary {
  padding: 17px 20px;
  color: #123f38;
}

.result-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, 1.05fr);
  gap: 14px;
  padding: 0 20px 20px;
}

.result-detail-layout .result-facts {
  grid-column: 1 / -1;
}

.result-detail-layout .breakdown {
  align-content: start;
  border-top: 0;
  padding-top: 0;
}

.price-breakdown-panel {
  border: 1px solid rgba(22,66,59,.1);
  border-radius: 14px 14px 14px 4px;
  padding: 16px;
  background: #fbfff9;
}

.price-breakdown-panel h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.result-cta-row {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.result-cta-row .primary-button,
.result-cta-row .secondary-button {
  margin-top: 0;
}

.public-home .lead-screen {
  grid-template-columns: minmax(220px,.7fr) minmax(0,1.3fr);
  background: transparent;
}

@keyframes blueprintDraw {
  0% { stroke-dashoffset: 900; opacity: .25; }
  28%, 72% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -900; opacity: .25; }
}

@keyframes blueprintBreath {
  0%, 100% { opacity: .8; }
  45%, 70% { opacity: 1; }
}

@keyframes yieldDraw {
  0% { stroke-dashoffset: 620; opacity: .2; }
  38%, 76% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -620; opacity: .2; }
}

@keyframes blueprintDash {
  to { stroke-dashoffset: -68; }
}

@keyframes blockFade {
  0%, 100% { opacity: .35; }
  50% { opacity: .9; }
}

@keyframes sunFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.04); }
}

@keyframes birdFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(16px, -7px); }
}

@keyframes poleOpen {
  0% { stroke-dashoffset: 96; opacity: 0; }
  18% { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}

@keyframes canopyOpen {
  0% { opacity: 0; transform: scale(.08, .04) rotate(-2deg); }
  62% { opacity: 1; transform: scale(1.08, 1) rotate(1deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes patioFade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes chairOpen {
  0% { opacity: .35; transform: translateY(13px) rotate(-8deg) scale(.55, .18); }
  70% { opacity: 1; transform: translateY(-2px) rotate(2deg) scale(1.04); }
  100% { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}

@keyframes guestWalkA {
  0% { opacity: 0; transform: translate(330px, 356px) scale(.82); }
  10% { opacity: 1; transform: translate(330px, 356px) scale(.82); }
  24% { transform: translate(352px, 366px) scale(.84); }
  40% { transform: translate(380px, 380px) scale(.86); }
  58% { opacity: 1; transform: translate(408px, 392px) scale(.86); }
  76%, 100% { opacity: 0; transform: translate(408px, 392px) scale(.86); }
}

@keyframes guestWalkB {
  0% { opacity: 0; transform: translate(336px, 356px) scale(.82); }
  10% { opacity: 1; transform: translate(336px, 356px) scale(.82); }
  26% { transform: translate(386px, 370px) scale(.84); }
  44% { transform: translate(462px, 384px) scale(.86); }
  62% { opacity: 1; transform: translate(528px, 392px) scale(.86); }
  78%, 100% { opacity: 0; transform: translate(528px, 392px) scale(.86); }
}

@keyframes seatedAppear {
  0% { opacity: 0; transform: translateY(7px) scale(.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes stepSwingA {
  0%, 100% { transform: rotate(-18deg); }
  50% { transform: rotate(20deg); }
}

@keyframes stepSwingB {
  0%, 100% { transform: rotate(18deg); }
  50% { transform: rotate(-20deg); }
}

@media (max-width: 980px) {
  .intro-view {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(720px, calc(100% - 32px));
    padding-top: 24px;
  }

  .intro-copy {
    min-height: auto;
  }

  .intro-copy h1 {
    font-size: clamp(42px, 11vw, 68px);
  }

  .blueprint-visual,
  .holiday-visual {
    min-height: 260px;
    border-left: 0;
    padding-left: 0;
  }

  .tool-shell {
    max-height: calc(100svh - 32px);
  }
}

@media (max-width: 760px) {
  .public-home .site-header {
    display: none;
  }

  .public-home .brand {
    width: auto;
  }

  .public-home .site-nav {
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
  }

  .tool-app,
  .app-view {
    height: 100svh;
    min-height: 0;
  }

  .intro-view {
    width: calc(100% - 28px);
    padding: 18px 0 22px;
  }

  .intro-copy h1 {
    margin-bottom: 12px;
  }

  .intro-copy .lead {
    font-size: 16px;
  }

  .launch-row {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .launch-button {
    min-width: 0;
    width: 100%;
  }

  .blueprint-visual,
  .holiday-visual {
    min-height: 230px;
    border-left: 0;
    padding-left: 0;
  }

  .tool-view {
    padding: 10px;
  }

  .utility-links {
    top: 14px;
    right: 14px;
    bottom: auto;
    gap: 8px;
  }

  .utility-links a {
    min-width: 74px;
    padding: 8px 10px 8px 13px;
  }

  .utility-links a small {
    display: none;
  }

  .tool-shell {
    max-height: calc(100svh - 20px);
    padding: 14px;
  }

  .tool-topbar,
  .result-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .public-home .lead-screen,
  .public-home .lead-form {
    grid-template-columns: 1fr;
  }

  .result-summary-card {
    gap: 10px;
    padding: 14px;
  }

  .result-summary-card h2 {
    font-size: clamp(24px, 6.7vw, 31px);
  }

  .result-summary-card > p:not(.eyebrow) {
    display: none;
  }

  .result-sentence {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 14px 16px;
  }

  .result-sentence strong {
    grid-row: auto;
    font-size: clamp(38px, 11vw, 52px);
  }

  .result-options-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .result-option-card {
    min-height: 0;
    gap: 5px;
    padding: 14px 16px;
  }

  .result-option-card strong {
    font-size: clamp(33px, 10vw, 43px);
  }

  .result-option-card p {
    font-size: 13px;
  }

  .result-option-card p,
  .result-option-card small {
    display: none;
  }

  .option-self p,
  .option-self small {
    display: none;
  }

  .option-self {
    display: none;
  }

  .result-benefit-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px;
  }

  .result-benefit-line strong {
    font-size: clamp(34px, 10vw, 46px);
  }

  .result-story,
  .result-compare-grid,
  .result-difference-card,
  .result-facts,
  .result-detail-layout {
    grid-template-columns: 1fr;
  }

  .result-story {
    gap: 14px;
    padding: 16px;
  }

  .result-copy h2 {
    font-size: clamp(26px, 7.3vw, 32px);
  }

  #result-subline {
    display: none;
  }

  .public-home .result-main-number {
    min-height: 164px;
    padding: 18px;
  }

  .public-home .result-main-number strong {
    font-size: clamp(46px, 13vw, 62px);
  }

  .result-signal-card {
    min-height: 112px;
    padding: 14px 16px;
  }

  .result-signal-card strong {
    margin: 5px 0;
    font-size: clamp(36px, 10.5vw, 48px);
  }

  .result-signal-card small {
    font-size: 12px;
  }

  .compare-tile {
    min-height: 118px;
    padding: 15px 17px;
  }

  .compare-tile strong {
    font-size: clamp(32px, 10vw, 42px);
  }

  .compare-tile small {
    display: none;
  }

  .compare-track {
    margin-top: 12px;
  }

  .result-difference-card {
    gap: 8px;
    padding: 16px;
  }

  .result-facts {
    gap: 10px;
  }

  .result-facts article {
    min-height: 82px;
  }

  .result-detail-layout {
    padding: 0 14px 14px;
  }

  .result-cta-row {
    flex-direction: column;
  }

  .public-home[data-public-view="result"] .tool-topbar > div {
    display: none;
  }

  .public-home .wizard-calculator {
    padding: 16px;
  }

  .public-home .wizard-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 10px;
  }

  .public-home .wizard-top h2 {
    display: none;
  }

  .public-home .wizard-meter {
    width: 100%;
    flex-basis: auto;
    margin-top: 0;
  }

  .public-home .question-head {
    margin-bottom: 14px;
    padding-left: 0;
  }

  .public-home .question-head h3 {
    font-size: clamp(27px, 8vw, 34px);
  }

  .public-home .simple-grid,
  .public-home .amenity-grid,
  .public-home .public-metrics {
    grid-template-columns: 1fr;
  }

  .public-home .country-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .public-home .country-choice-grid label {
    min-height: 70px;
    padding: 13px 34px 12px 13px;
  }

  .public-home .country-choice-grid span {
    font-size: 19px;
  }

  .public-home .country-choice-grid small {
    font-size: 11px;
    line-height: 1.15;
  }

  .public-home .country-choice-grid input {
    inset: 12px 12px auto auto;
    width: 16px;
    height: 16px;
  }

  .public-home .field input,
  .public-home .field select,
  .public-home .field textarea {
    font-size: 16px;
  }

  .public-home .primary-button,
  .public-home .secondary-button {
    width: 100%;
  }

  .cookie-consent {
    left: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 12px;
  }

  .cookie-consent-copy p {
    font-size: 13px;
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-consent-actions .primary-button,
  .cookie-consent-actions .secondary-button {
    min-width: 0;
    width: 100%;
    min-height: 40px;
    padding-inline: 10px;
  }
}

/* Final professional polish overrides - must stay last */
.site-header {
  background: rgba(255,255,255,.94);
  border-bottom-color: rgba(20,33,29,.08);
  box-shadow: 0 12px 32px rgba(18,33,29,.06);
}

.public-home,
.tool-app,
.page-main {
  background:
    linear-gradient(110deg, rgba(244,246,242,.98) 0 55%, rgba(232,240,235,.9) 55% 100%);
}

.intro-copy h1 {
  color: #14211d;
  font-size: clamp(52px, 6.8vw, 96px);
  line-height: .92;
}

.intro-copy .lead {
  color: #334540;
}

.launch-button,
.public-home .primary-button,
.primary-button {
  border: 0;
  border-radius: 16px;
  background: #123c36;
  color: #fff;
  clip-path: none;
  box-shadow: 0 16px 32px rgba(18,60,54,.14);
}

.launch-button:hover,
.public-home .primary-button:hover,
.primary-button:hover {
  background: #174b43;
}

.launch-button::after {
  content: "";
  right: 22px;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  background: transparent;
}

.launch-button small {
  color: rgba(255,255,255,.72);
}

.holiday-animation {
  display: none !important;
}

.portfolio-visual {
  display: block;
  width: min(760px, 100%);
  height: auto;
  overflow: visible;
}

.tool-shell,
.public-home .wizard-calculator,
.result-summary-card,
.result-option-card,
.result-benefit-line,
.result-detail-drawer,
.page-card,
.lead-form,
.lead-copy {
  border-color: rgba(18,60,54,.12);
  border-radius: 18px;
  box-shadow: 0 18px 54px rgba(18,33,29,.08);
}

.public-home .wizard-calculator,
.result-summary-card,
.result-detail-drawer {
  background: #fff;
}

.public-home .wizard-calculator::before {
  background: #123c36;
}

.public-home .wizard-calculator::after {
  display: none;
}

.public-home .question-head::before {
  background: #246b5d;
}

.public-home .field,
.public-home .amenity-grid label,
.country-choice-grid label {
  border-color: rgba(18,60,54,.12);
  border-radius: 16px;
  background: #fbfcfa;
  box-shadow: none;
}

.country-choice-grid label:has(input:checked),
.public-home .amenity-grid label:has(input:checked) {
  border-color: #246b5d;
  background: #eef6f1;
  box-shadow: none;
}

.public-home .field:focus-within {
  border-color: rgba(36,107,93,.44);
  box-shadow: 0 0 0 4px rgba(36,107,93,.08);
}

.public-home .field input:focus,
.public-home .field select:focus,
.public-home .field textarea:focus {
  border-color: #246b5d;
}

.result-sentence {
  border-color: rgba(36,107,93,.18);
  border-radius: 14px;
  background: #f0f6f2;
}

.option-mine {
  background: #123c36;
}

.option-traditional {
  background: #f7f3ee;
}

.option-self {
  background: #f8faf8;
}

.result-benefit-line {
  background: #fbf8ef;
}

.secondary-button,
.public-home .secondary-button {
  border-color: #dbe5de;
  background: #fff;
  color: #123c36;
}

.page-visual {
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(18,60,54,.78), rgba(36,107,93,.44)),
    url("/assets/holiday-revenue-hero.png") center / cover no-repeat;
  box-shadow: 0 24px 64px rgba(18,33,29,.14);
}

@media (max-width: 760px) {
  .intro-copy h1 {
    font-size: clamp(38px, 10vw, 58px);
  }

  .holiday-visual {
    min-height: 220px;
  }
}

/* Active final polish - actual last layer */
.public-home,
.tool-app,
.page-main {
  background:
    linear-gradient(112deg, #f7f4ec 0 47%, #edf5ef 47% 70%, #e3f1f1 70% 100%);
}

.intro-view {
  grid-template-columns: minmax(360px, .9fr) minmax(480px, 1.1fr);
  width: min(1280px, calc(100% - 96px));
  gap: clamp(40px, 6vw, 96px);
}

.intro-copy {
  max-width: 650px;
}

.intro-copy .eyebrow,
.public-home .eyebrow,
.page-main .eyebrow {
  color: #8e6a2f;
  letter-spacing: .04em;
}

.intro-copy h1 {
  max-width: 650px;
  color: #14211d;
  font-size: clamp(52px, 6.2vw, 92px);
  line-height: .96;
}

.intro-copy .lead {
  max-width: 600px;
  color: #2f423d;
  font-size: clamp(18px, 1.35vw, 21px);
}

.launch-button,
.public-home .primary-button,
.primary-button {
  border: 0;
  border-radius: 16px;
  background: #123c36;
  color: #fff;
  clip-path: none;
  box-shadow: 0 16px 32px rgba(18,60,54,.14);
}

.launch-button:hover,
.public-home .primary-button:hover,
.primary-button:hover {
  background: #184d45;
}

.launch-button small {
  color: rgba(255,255,255,.76);
}

.launch-row p {
  color: #48645e;
}

.holiday-visual {
  min-height: 470px;
}

.portfolio-visual {
  display: block;
  filter: drop-shadow(0 28px 44px rgba(18,33,29,.12));
}

.holiday-animation {
  display: none !important;
}

.utility-links a {
  border-color: rgba(18,60,54,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 36px rgba(18,33,29,.08);
}

.utility-links a::before {
  background: #d39a43;
}

.tool-shell {
  width: min(1120px, calc(100% - 24px));
  max-height: calc(100svh - 44px);
  border-radius: 22px;
  padding: clamp(16px, 2.2vw, 24px);
  background: rgba(255,255,255,.88);
  box-shadow: 0 28px 70px rgba(18,33,29,.11);
  scrollbar-width: thin;
}

.tool-home-button {
  border-radius: 999px;
  background: #fff;
  box-shadow: none;
}

.public-home .wizard-calculator {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: min(540px, calc(100svh - 158px));
  border-radius: 20px;
  padding: clamp(18px, 2.6vw, 30px);
  background: #fff;
  box-shadow: none;
}

.public-home .wizard-calculator::before {
  height: 5px;
  background: #123c36;
}

.public-home .wizard-calculator::after {
  display: none;
}

.public-home .wizard-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: center;
  margin-bottom: clamp(16px, 2.4vw, 24px);
}

.public-home .wizard-top .eyebrow {
  border: 0;
  padding: 0;
  background: transparent;
  color: #8e6a2f;
}

.public-home .wizard-top h2 {
  margin-top: 2px;
  font-size: clamp(24px, 2.4vw, 34px);
}

.public-home .wizard-meter {
  height: 8px;
  background: #e6ede8;
}

.public-home .wizard-meter span {
  background: linear-gradient(90deg, #123c36, #9fb66d, #d39a43);
}

.public-home .question-head {
  margin-bottom: clamp(14px, 2vw, 22px);
  padding-left: 0;
}

.public-home .question-head::before {
  width: 54px;
  height: 4px;
  background: #d39a43;
}

.public-home .question-head h3 {
  max-width: 820px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.08;
}

.country-choice-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.country-choice-grid label {
  min-height: 96px;
  border-radius: 14px;
  padding: 16px;
  background: #fbfcfa;
  box-shadow: none;
}

.country-choice-grid span {
  font-size: clamp(20px, 1.8vw, 25px);
}

.country-choice-grid small {
  color: #62736e;
  line-height: 1.25;
}

.country-choice-grid label:has(input:checked),
.public-home .amenity-grid label:has(input:checked) {
  border-color: rgba(18,60,54,.46);
  background: #eef6f1;
  box-shadow: inset 0 0 0 2px rgba(18,60,54,.05);
}

.country-choice-grid input,
.public-home .amenity-grid input {
  accent-color: #123c36;
}

.public-home .field,
.public-home .amenity-grid label {
  border-radius: 14px;
  background: #fbfcfa;
  box-shadow: none;
}

.public-home .field input,
.public-home .field select,
.public-home .field textarea {
  min-height: 48px;
  border-bottom-color: #d5e2db;
  font-size: 17px;
}

.public-home .field:focus-within {
  border-color: rgba(18,60,54,.34);
  box-shadow: 0 0 0 4px rgba(18,60,54,.07);
}

.public-home .field input:focus,
.public-home .field select:focus,
.public-home .field textarea:focus {
  border-color: #123c36;
}

.public-home .amenity-grid label {
  min-height: 62px;
}

.model-assumption {
  border-color: rgba(211,154,67,.28);
  border-radius: 14px;
  background: #fbf4df;
}

.result-summary-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  align-items: stretch;
  gap: clamp(18px, 3vw, 34px);
  border-radius: 22px;
  padding: clamp(22px, 3vw, 34px);
}

.result-summary-card > .eyebrow,
.result-summary-card > h2,
.result-summary-card > p:not(.eyebrow) {
  grid-column: 1;
}

.result-summary-card h2 {
  max-width: 680px;
  font-size: clamp(32px, 4.2vw, 54px);
}

.result-sentence {
  grid-column: 2;
  grid-row: 1 / span 3;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 12px;
  margin: 0;
  border: 0;
  border-radius: 20px;
  padding: clamp(22px, 3vw, 30px);
  background: #123c36;
}

.result-sentence > span,
.result-sentence small,
.result-sentence small b {
  color: rgba(255,255,255,.82);
}

.result-sentence strong {
  grid-row: auto;
  color: #fff;
  font-size: clamp(48px, 6vw, 76px);
}

.result-options-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.result-option-card {
  min-height: 168px;
  border-radius: 18px;
  padding: clamp(18px, 2.4vw, 24px);
  box-shadow: none;
}

.option-mine {
  background: #123c36;
}

.option-traditional {
  background: #fbf4ef;
}

.option-self {
  display: none;
}

.result-benefit-line {
  border-radius: 18px;
  background: #fbf4df;
}

.result-detail-drawer {
  border-radius: 18px;
  box-shadow: none;
}

body:not(.public-home) {
  background: #f7f4ec;
}

.page-main {
  min-height: calc(100svh - 88px);
  padding: clamp(34px, 6vw, 84px) clamp(20px, 5vw, 72px);
}

.page-hero,
.page-grid {
  width: min(1160px, 100%);
  margin-inline: auto;
}

.page-hero {
  gap: clamp(28px, 5vw, 70px);
}

.page-hero h1 {
  color: #14211d;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: .98;
}

.page-text {
  color: #3d504b;
}

.page-card,
.lead-form,
.lead-copy,
.contact-form {
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 20px 56px rgba(18,33,29,.08);
}

.site-footer {
  background: #fff;
}

@media (max-width: 900px) {
  .intro-view {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    gap: 22px;
    overflow: auto;
  }

  .holiday-visual {
    min-height: 260px;
  }

  .public-home .wizard-top,
  .result-summary-card,
  .result-options-grid {
    grid-template-columns: 1fr;
  }

  .result-sentence {
    grid-column: auto;
    grid-row: auto;
  }

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

@media (max-width: 760px) {
  .intro-copy h1 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .tool-shell {
    width: calc(100% - 12px);
    max-height: calc(100svh - 12px);
    padding: 12px;
  }

  .tool-topbar > div {
    display: none;
  }

  .public-home .wizard-calculator {
    min-height: calc(100svh - 88px);
    padding: 16px;
  }

  .public-home .wizard-top h2 {
    font-size: 25px;
  }

  .public-home .question-head h3 {
    font-size: clamp(27px, 8vw, 34px);
  }

  .country-choice-grid {
    grid-template-columns: 1fr;
  }

  .country-choice-grid label {
    min-height: 76px;
  }
}

/* Last mile usability */
.intro-copy h1 {
  max-width: 560px;
  font-size: clamp(46px, 5.4vw, 76px);
  line-height: .98;
}

.cookie-consent {
  left: auto;
  right: clamp(14px, 3vw, 28px);
  top: clamp(14px, 3vw, 28px);
  bottom: auto;
  width: min(430px, calc(100% - 28px));
  max-height: calc(100svh - 28px);
  overflow: auto;
  z-index: 30;
}

@media (max-width: 760px) {
  .cookie-consent {
    top: auto;
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
  }
}

.wizard-step.is-active,
.public-home .wizard-step.is-active {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

/* Result fit and clarity - tail */
.result-summary-card {
  gap: clamp(14px, 2vw, 24px);
  padding: clamp(18px, 2.4vw, 28px);
}

.result-summary-card h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.02;
}

.result-summary-card > p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.45;
}

.result-sentence {
  padding: clamp(18px, 2.4vw, 24px);
}

.result-sentence strong {
  font-size: clamp(42px, 5.2vw, 66px);
}

.result-option-card {
  min-height: 138px;
  gap: 7px;
  padding: clamp(16px, 2vw, 20px);
}

.result-option-card strong {
  font-size: clamp(34px, 3.8vw, 48px);
}

.result-option-card p {
  font-size: 14px;
  line-height: 1.34;
}

.result-option-card small {
  font-size: 12px;
}

.result-benefit-line {
  min-height: 58px;
  padding: 12px 16px;
}

.result-cta-row {
  gap: 10px;
}

/* Result viewport fit - tighter */
.result-summary-card {
  padding: 20px 24px;
}

.result-summary-card h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.result-summary-card > p:not(.eyebrow) {
  font-size: 14px;
}

.result-sentence strong {
  font-size: clamp(40px, 4.8vw, 58px);
}

.result-option-card {
  min-height: 118px;
  padding: 16px 20px;
}

.result-option-card strong {
  font-size: clamp(32px, 3.4vw, 44px);
}

.result-option-card p {
  font-size: 13px;
}

.result-option-card small {
  font-size: 11px;
}

.result-benefit-line {
  min-height: 48px;
  padding: 10px 14px;
}

/* Cookie placement per page type - EOF */
body:not(.public-home) .cookie-consent {
  left: 18px;
  right: auto;
  top: auto;
  bottom: 18px;
  width: min(380px, calc(100% - 36px));
}

body:not(.public-home) .cookie-consent {
  width: min(320px, calc(100% - 36px));
  padding: 14px 16px;
}

body:not(.public-home) .cookie-consent-copy p {
  display: none;
}

body:not(.public-home) .cookie-consent-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

body:not(.public-home) .cookie-consent-actions .primary-button,
body:not(.public-home) .cookie-consent-actions .secondary-button {
  min-width: 0;
  width: 100%;
  padding-inline: 8px;
  font-size: 13px;
  white-space: normal;
}

/* Owner-facing polish - final layer */
.public-home,
.tool-app,
.page-main {
  background:
    linear-gradient(116deg, #f8f5ec 0 42%, #edf7ef 42% 68%, #dff0f3 68% 100%);
}

.site-header {
  min-height: 72px;
  padding-block: 10px;
}

.site-nav {
  gap: 10px;
}

.site-nav a,
.site-nav button,
.nav-action,
.tool-home-button {
  border: 1px solid rgba(20,65,58,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #153e37;
  box-shadow: 0 10px 24px rgba(18,33,29,.06);
}

.site-nav a:hover,
.site-nav button:hover,
.nav-action:hover,
.tool-home-button:hover {
  background: #fff;
  border-color: rgba(20,65,58,.28);
}

.intro-view {
  align-items: center;
}

.intro-copy h1 {
  max-width: 680px;
  color: #10211e;
}

.intro-copy .lead {
  max-width: 590px;
  color: #314b45;
}

.launch-button,
.public-home .primary-button,
.primary-button {
  border-radius: 18px;
  background: linear-gradient(135deg, #123e37 0%, #19584d 100%);
  box-shadow: 0 18px 34px rgba(18,60,54,.18);
}

.launch-button:hover,
.public-home .primary-button:hover,
.primary-button:hover {
  background: linear-gradient(135deg, #174f45 0%, #207061 100%);
}

.launch-button::after {
  border-color: #f6c45d;
}

.public-home .secondary-button,
.secondary-button {
  border-radius: 18px;
  background: #fffaf0;
  border-color: rgba(142,106,47,.22);
  color: #153e37;
}

.holiday-visual {
  min-height: clamp(360px, 46vw, 560px);
}

.portfolio-visual {
  width: min(760px, 100%);
  filter: drop-shadow(0 28px 48px rgba(18,33,29,.13));
}

.portfolio-visual text {
  display: none;
}

.tool-shell {
  background: rgba(255,255,255,.88);
  border-radius: 28px;
}

.tool-topbar {
  align-items: center;
}

.tool-home-button {
  min-height: 46px;
  padding-inline: 18px;
}

.home-glyph {
  color: #1c7a68;
}

.public-home .wizard-calculator {
  border-radius: 26px;
  padding: clamp(24px, 3vw, 34px);
}

.public-home .wizard-calculator::before {
  height: 6px;
  background: linear-gradient(90deg, #123e37, #3d987e, #f2bd57);
}

.public-home .wizard-top {
  align-items: center;
}

.public-home .wizard-top h2 {
  color: #13221f;
  font-size: clamp(30px, 3.6vw, 48px);
}

.public-home .question-head {
  margin-top: 18px;
}

.public-home .question-head h3 {
  max-width: 860px;
  color: #13221f;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.04;
}

.simple-grid {
  gap: 16px;
}

.public-home .field,
.public-home .amenity-grid label,
.country-choice-grid label,
.model-assumption {
  border-radius: 20px;
  border-color: rgba(20,65,58,.13);
  background: rgba(255,255,255,.9);
  box-shadow: 0 12px 28px rgba(18,33,29,.045);
}

.public-home .field {
  padding: 16px 18px;
}

.public-home .field input,
.public-home .field select {
  color: #10211e;
  font-size: 17px;
}

.field-hint,
.model-assumption span {
  color: #60736d;
}

.model-assumption {
  background: #fff7e2;
  border-color: rgba(214,153,57,.24);
}

.model-assumption strong {
  color: #153e37;
}

.wizard-controls {
  gap: 12px;
}

.wizard-controls .primary-button,
.wizard-controls .secondary-button {
  min-width: 164px;
}

.public-home .public-results {
  display: grid;
  gap: 16px;
}

.result-summary-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
  align-items: stretch;
  gap: 22px 32px;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(24px, 3.2vw, 36px);
  background:
    linear-gradient(106deg, rgba(255,255,250,.98) 0 62%, rgba(231,245,237,.94) 62% 100%);
  box-shadow: 0 22px 56px rgba(18,33,29,.09);
}

.result-summary-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #123e37, #3d987e, #f2bd57);
}

.result-summary-card > .eyebrow,
.result-summary-card > h2,
.result-summary-card > p:not(.eyebrow) {
  grid-column: 1;
}

.result-summary-card h2 {
  max-width: 720px;
  color: #10211e;
  font-size: clamp(34px, 3.7vw, 52px);
  line-height: 1.02;
}

.result-summary-card > p:not(.eyebrow) {
  max-width: 650px;
  color: #536b64;
  font-size: 16px;
  font-weight: 740;
}

.result-sentence {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  margin: 0;
  border: 0;
  border-radius: 24px;
  padding: clamp(24px, 3vw, 34px);
  background: linear-gradient(150deg, #113e37, #1b6b5d);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 18px 38px rgba(18,60,54,.18);
}

.result-sentence > span,
.result-sentence small,
.result-sentence small b {
  color: rgba(255,255,255,.82);
}

.result-sentence strong {
  color: #fff;
  font-size: clamp(48px, 5vw, 76px);
  letter-spacing: 0;
}

.result-sentence small {
  max-width: 300px;
  font-size: 15px;
}

.result-options-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.result-option-card {
  min-height: 168px;
  border-radius: 24px;
  padding: clamp(20px, 2.5vw, 26px);
  box-shadow: 0 18px 42px rgba(18,33,29,.075);
}

.result-option-card strong {
  font-size: clamp(38px, 4.2vw, 58px);
}

.result-option-card p {
  max-width: 500px;
  color: #455d56;
}

.option-mine {
  background: linear-gradient(145deg, #113e37, #154f46);
}

.option-traditional {
  background: #fff8f2;
  border-color: rgba(223,119,80,.16);
}

.option-self {
  grid-column: 1 / -1;
  min-height: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px 22px;
  background: #f8fbf8;
}

.option-self p,
.option-self small {
  margin: 0;
}

.result-benefit-line {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(220px, .7fr);
  align-items: center;
  gap: 18px;
  min-height: 76px;
  border-radius: 22px;
  padding: 16px 22px;
  background: #fff5dd;
  border-color: rgba(214,153,57,.28);
}

.result-benefit-line strong {
  color: #0f4c43;
  font-size: clamp(42px, 4.6vw, 66px);
}

.result-benefit-line small {
  max-width: 360px;
}

.result-cta-row {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.result-cta-row .primary-button,
.result-cta-row .secondary-button {
  min-width: 210px;
}

.result-detail-drawer {
  border-radius: 24px;
  background: rgba(255,255,255,.94);
}

.result-detail-drawer summary {
  color: #153e37;
  font-weight: 950;
}

.result-detail-layout {
  gap: 16px;
}

.result-facts article {
  border-radius: 18px;
}

@media (max-width: 980px) {
  .result-summary-card,
  .result-options-grid,
  .result-benefit-line,
  .option-self {
    grid-template-columns: 1fr;
  }

  .result-sentence {
    grid-column: auto;
    grid-row: auto;
  }

  .result-cta-row {
    justify-content: stretch;
    flex-direction: column;
  }

  .result-cta-row .primary-button,
  .result-cta-row .secondary-button {
    width: 100%;
    min-width: 0;
  }
}

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

  .intro-view {
    width: calc(100% - 24px);
    gap: 18px;
  }

  .holiday-visual {
    min-height: 250px;
  }

  .public-home .wizard-calculator {
    padding: 18px;
  }

  .public-home .question-head h3 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .wizard-controls {
    grid-template-columns: 1fr;
  }

  .wizard-controls .primary-button,
  .wizard-controls .secondary-button {
    width: 100%;
    min-width: 0;
  }
}

/* Result readability tightening */
.result-summary-card {
  padding: clamp(22px, 2.7vw, 30px);
}

.result-summary-card h2 {
  font-size: clamp(31px, 3.2vw, 46px);
}

.result-sentence {
  padding: clamp(22px, 2.4vw, 30px);
}

.result-sentence strong {
  font-size: clamp(44px, 4.5vw, 68px);
}

.result-option-card {
  min-height: 148px;
}

.option-mine .option-label,
.option-mine strong,
.option-mine p,
.option-mine small {
  color: #fff;
}

.option-mine p,
.option-mine small {
  opacity: .88;
}

.option-self {
  display: none;
}
/* Final landing balance - must remain at EOF */
body.public-home[data-public-view="intro"] .intro-view::after {
  display: none !important;
}

body.public-home[data-public-view="intro"] .intro-copy h1 {
  max-width: 660px;
  font-size: clamp(50px, 6.35vw, 90px);
  line-height: .92;
}

body.public-home[data-public-view="intro"] .intro-copy .lead {
  max-width: 560px;
  margin-top: 22px;
  font-size: clamp(17px, 1.25vw, 21px);
}

body.public-home[data-public-view="intro"] .launch-row {
  margin-top: 30px;
}

body.public-home[data-public-view="intro"] .launch-row p {
  display: none !important;
}

body.public-home[data-public-view="intro"] .intro-view::before {
  bottom: 28px;
}

@media (max-height: 760px) and (min-width: 761px) {
  body.public-home[data-public-view="intro"] .intro-view {
    padding-top: 86px;
    padding-bottom: 42px;
  }

  body.public-home[data-public-view="intro"] .intro-copy h1 {
    max-width: 620px;
    font-size: clamp(48px, 5.8vw, 78px);
  }

  body.public-home[data-public-view="intro"] .intro-copy .lead {
    max-width: 520px;
    margin-top: 18px;
    font-size: 17px;
  }

  body.public-home[data-public-view="intro"] .launch-row {
    margin-top: 24px;
  }

  body.public-home[data-public-view="intro"] .launch-button {
    min-width: 330px;
    padding-block: 15px;
  }
}

/* Final result viewport balance - must remain at EOF */
body.public-home[data-public-view="result"] .tool-shell {
  max-height: calc(100svh - 54px);
}

body.public-home[data-public-view="result"] .tool-topbar {
  min-height: 46px;
  padding-bottom: 8px;
}

body.public-home[data-public-view="result"] .public-results {
  gap: 12px;
  padding: 14px;
}

body.public-home[data-public-view="result"] .result-summary-card {
  min-height: 218px;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 390px);
}

body.public-home[data-public-view="result"] .result-copy-block {
  padding: clamp(22px, 3vw, 36px);
}

body.public-home[data-public-view="result"] .result-summary-card h2 {
  max-width: 700px;
  font-size: clamp(32px, 3.55vw, 50px);
  line-height: .98;
}

body.public-home[data-public-view="result"] .result-copy-block > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.35;
}

body.public-home[data-public-view="result"] .result-sentence {
  padding: clamp(22px, 3vw, 34px);
}

body.public-home[data-public-view="result"] .result-sentence strong {
  font-size: clamp(48px, 5vw, 72px);
}

body.public-home[data-public-view="result"] .result-options-grid {
  gap: 12px;
}

body.public-home[data-public-view="result"] .result-option-card,
body.public-home[data-public-view="result"] .result-benefit-line {
  min-height: 158px;
  border-radius: 24px;
  padding: 22px;
}

body.public-home[data-public-view="result"] .result-option-card strong {
  margin-top: 14px;
  font-size: clamp(38px, 4.2vw, 58px);
}

body.public-home[data-public-view="result"] .result-option-card p {
  font-size: 13px;
  line-height: 1.32;
}

body.public-home[data-public-view="result"] .result-option-card small {
  font-size: 12px;
}

body.public-home[data-public-view="result"] .result-benefit-line strong {
  font-size: clamp(38px, 4.1vw, 58px);
}

body.public-home[data-public-view="result"] .result-cta-row {
  margin-top: 0;
}

body.public-home[data-public-view="result"] .result-cta-row .primary-button,
body.public-home[data-public-view="result"] .result-cta-row .secondary-button {
  min-height: 48px;
}

/* Final result micro-fit - must remain at EOF */
body.public-home[data-public-view="result"] .tool-topbar {
  min-height: 38px;
  padding-bottom: 6px;
}

body.public-home[data-public-view="result"] .tool-topbar strong {
  color: rgba(255,255,255,.86);
}

body.public-home[data-public-view="result"] .result-summary-card {
  min-height: 204px;
}

body.public-home[data-public-view="result"] .result-summary-card h2 {
  font-size: clamp(30px, 3.3vw, 46px);
}

body.public-home[data-public-view="result"] .result-option-card,
body.public-home[data-public-view="result"] .result-benefit-line {
  min-height: 146px;
  padding: 20px;
}

body.public-home[data-public-view="result"] .result-option-card strong,
body.public-home[data-public-view="result"] .result-benefit-line strong {
  font-size: clamp(36px, 3.8vw, 54px);
}

body.public-home[data-public-view="result"] .result-cta-row .primary-button,
body.public-home[data-public-view="result"] .result-cta-row .secondary-button {
  min-height: 44px;
}

/* Final hero direction: no stock-photo cover, refined split composition */
body.public-home[data-public-view="intro"] .tool-app {
  min-height: 100svh;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,198,95,.2), transparent 24%),
    linear-gradient(118deg, #fbf2df 0 35%, #eaf7ee 35% 68%, #d9eef6 68% 100%);
}

body.public-home[data-public-view="intro"] .site-header {
  position: fixed;
  top: 22px;
  left: clamp(20px, 4vw, 70px);
  right: clamp(20px, 4vw, 70px);
  min-height: 66px;
  border: 1px solid rgba(17,61,54,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 52px rgba(17,42,38,.08);
}

body.public-home[data-public-view="intro"] .intro-view {
  width: min(1320px, calc(100% - 120px));
  min-height: 100svh;
  margin-inline: auto;
  padding: clamp(124px, 15vh, 170px) 0 clamp(54px, 8vh, 92px);
  display: grid;
  grid-template-columns: minmax(380px, .9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: clamp(52px, 7vw, 110px);
  background: none;
  overflow: visible;
}

body.public-home[data-public-view="intro"] .intro-view::before {
  content: "";
  position: absolute;
  left: clamp(20px, 5vw, 90px);
  right: clamp(20px, 5vw, 90px);
  bottom: clamp(20px, 4vh, 44px);
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f4c43, #2e967f 44%, #f7c45b 72%, #ff8a5c);
  opacity: .85;
  box-shadow: 0 18px 44px rgba(15,76,67,.16);
}

body.public-home[data-public-view="intro"] .intro-view::after {
  display: none !important;
}

body.public-home[data-public-view="intro"] .intro-copy {
  max-width: 650px;
}

body.public-home[data-public-view="intro"] .intro-copy .eyebrow {
  width: max-content;
  margin-bottom: 24px;
  border: 1px solid rgba(151,105,45,.2);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255,255,255,.62);
  color: #8c5d28;
  box-shadow: 0 14px 34px rgba(17,42,38,.07);
}

body.public-home[data-public-view="intro"] .intro-copy h1 {
  max-width: 620px;
  color: #09231f;
  font-size: clamp(54px, 6.55vw, 104px);
  line-height: .92;
  letter-spacing: 0;
}

body.public-home[data-public-view="intro"] .intro-copy .lead {
  max-width: 570px;
  margin-top: 26px;
  color: #263f39;
  font-size: clamp(18px, 1.3vw, 22px);
  line-height: 1.52;
  font-weight: 650;
}

body.public-home[data-public-view="intro"] .launch-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 38px;
}

body.public-home[data-public-view="intro"] .launch-row p {
  display: block !important;
  max-width: 260px;
  margin: 0;
  color: #345952;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

body.public-home[data-public-view="intro"] .launch-button {
  min-width: min(100%, 330px);
  border-radius: 24px 24px 24px 8px;
  padding: 19px 64px 18px 24px;
  background: linear-gradient(135deg, #103e37, #176453);
  box-shadow: 0 22px 54px rgba(15,76,67,.2);
}

body.public-home[data-public-view="intro"] .launch-button .launch-main {
  font-size: 22px;
}

body.public-home[data-public-view="intro"] .launch-button::after {
  right: 25px;
  border-color: #f7c45b;
}

body.public-home[data-public-view="intro"] .holiday-visual {
  display: grid !important;
  place-items: center;
  min-height: 520px;
}

body.public-home[data-public-view="intro"] .portfolio-visual,
body.public-home[data-public-view="intro"] .holiday-animation {
  display: none !important;
}

.signature-visual {
  position: relative;
  width: min(650px, 100%);
  aspect-ratio: 1.16;
}

.signature-visual * {
  box-sizing: border-box;
}

.visual-backplate {
  position: absolute;
  inset: 7% 2% 9% 7%;
  border: 1px solid rgba(17,61,54,.13);
  border-radius: 42px 42px 42px 14px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.72), rgba(237,249,241,.76)),
    repeating-linear-gradient(0deg, rgba(17,61,54,.05) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(90deg, rgba(17,61,54,.05) 0 1px, transparent 1px 32px);
  box-shadow: 0 34px 80px rgba(17,42,38,.13);
}

.visual-house-card {
  position: absolute;
  left: 5%;
  right: 14%;
  bottom: 7%;
  height: 60%;
  overflow: hidden;
  border: 1px solid rgba(17,61,54,.14);
  border-radius: 34px 34px 34px 10px;
  background:
    linear-gradient(180deg, rgba(240,251,249,.94), rgba(255,250,239,.94));
  box-shadow: 0 24px 58px rgba(17,42,38,.12);
}

.visual-sun {
  position: absolute;
  right: 16%;
  top: 13%;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #ffdd8b;
}

.visual-hills {
  position: absolute;
  inset: auto -4% 0;
  height: 44%;
  background:
    radial-gradient(120% 90% at 26% 100%, #cde8b3 0 45%, transparent 46%),
    radial-gradient(110% 85% at 78% 100%, #98d1c4 0 50%, transparent 51%);
}

.visual-house {
  position: absolute;
  left: 17%;
  bottom: 20%;
  width: 58%;
  height: 48%;
}

.roof-line {
  position: absolute;
  left: 3%;
  top: 0;
  width: 92%;
  height: 54%;
  border-top: 12px solid #123f37;
  border-right: 12px solid #123f37;
  transform: skewY(-38deg);
  transform-origin: left top;
}

.roof-line::after {
  content: "";
  position: absolute;
  left: 12px;
  top: -27px;
  width: 97%;
  border-top: 10px solid #ffb15f;
}

.house-body {
  position: absolute;
  left: 11%;
  right: 7%;
  bottom: 0;
  height: 58%;
  border: 9px solid #123f37;
  background: #fffaf0;
}

.house-door {
  position: absolute;
  left: 25%;
  bottom: 0;
  width: 15%;
  height: 39%;
  border: 7px solid #123f37;
  border-bottom: 0;
  background: #ffd98f;
}

.house-window {
  position: absolute;
  bottom: 23%;
  width: 14%;
  height: 18%;
  border: 6px solid #123f37;
  background: #e4f8f3;
}

.window-one {
  left: 50%;
}

.window-two {
  left: 70%;
}

.visual-path {
  position: absolute;
  left: 13%;
  right: 18%;
  bottom: 12%;
  height: 8px;
  border-radius: 999px;
  background: rgba(18,63,55,.3);
}

.visual-yield-card {
  position: absolute;
  right: 2%;
  top: 8%;
  display: grid;
  align-content: center;
  gap: 6px;
  width: 220px;
  min-height: 162px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 28px 28px 28px 9px;
  padding: 24px;
  background: linear-gradient(145deg, #103e37, #1d7a67);
  color: #fff;
  box-shadow: 0 28px 58px rgba(15,76,67,.22);
}

.visual-yield-card span,
.visual-yield-card small {
  color: rgba(255,255,255,.76);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-yield-card strong {
  color: #fff;
  font-size: 68px;
  line-height: .9;
}

.visual-calendar-card {
  position: absolute;
  right: 11%;
  bottom: 4%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: 190px;
  border: 1px solid rgba(17,61,54,.12);
  border-radius: 24px;
  padding: 20px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 24px 50px rgba(17,42,38,.1);
}

.visual-calendar-card span {
  aspect-ratio: 1;
  border-radius: 7px;
  background: #dce9e3;
}

.visual-calendar-card span:nth-child(3n),
.visual-calendar-card span:nth-child(5) {
  background: #f4bf58;
}

.visual-calendar-card span:nth-child(8),
.visual-calendar-card span:nth-child(11) {
  background: #38a486;
}

.visual-service-card {
  position: absolute;
  left: 1%;
  top: 15%;
  display: grid;
  gap: 9px;
  width: 184px;
  border: 1px solid rgba(17,61,54,.12);
  border-radius: 24px 24px 24px 8px;
  padding: 18px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 24px 50px rgba(17,42,38,.1);
}

.visual-service-card span {
  border-radius: 999px;
  padding: 9px 12px;
  background: #f5f1e4;
  color: #174f45;
  font-size: 12px;
  font-weight: 950;
}

body.public-home[data-public-view="intro"] .utility-links {
  right: clamp(18px, 3.5vw, 52px);
  bottom: clamp(22px, 4vh, 46px);
}

body.public-home[data-public-view="intro"] .utility-links a {
  border-radius: 20px 20px 20px 7px;
  background: rgba(255,255,255,.82);
}

@media (max-height: 760px) and (min-width: 761px) {
  body.public-home[data-public-view="intro"] .intro-view {
    padding-top: 100px;
    padding-bottom: 50px;
  }

  body.public-home[data-public-view="intro"] .intro-copy h1 {
    font-size: clamp(50px, 5.7vw, 82px);
  }

  body.public-home[data-public-view="intro"] .intro-copy .lead {
    margin-top: 18px;
    font-size: 17px;
  }

  body.public-home[data-public-view="intro"] .launch-row {
    margin-top: 26px;
  }

  body.public-home[data-public-view="intro"] .holiday-visual {
    min-height: 440px;
  }
}

@media (max-width: 980px) {
  body.public-home[data-public-view="intro"] .intro-view {
    width: min(720px, calc(100% - 36px));
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 116px;
  }

  body.public-home[data-public-view="intro"] .holiday-visual {
    min-height: 360px;
  }

  .signature-visual {
    width: min(560px, 100%);
  }
}

@media (max-width: 760px) {
  body.public-home[data-public-view="intro"] .intro-view {
    width: calc(100% - 26px);
    padding: 102px 0 128px;
  }

  body.public-home[data-public-view="intro"] .intro-copy h1 {
    font-size: clamp(42px, 12vw, 62px);
  }

  body.public-home[data-public-view="intro"] .launch-row {
    flex-direction: column;
    align-items: stretch;
  }

  body.public-home[data-public-view="intro"] .launch-row p {
    display: none !important;
  }

  body.public-home[data-public-view="intro"] .launch-button {
    width: 100%;
  }

  .visual-yield-card,
  .visual-service-card {
    transform: scale(.86);
  }
}

/* Compact cookie panel on the intro screen */
body.public-home[data-public-view="intro"] .cookie-consent {
  top: auto;
  left: auto;
  right: clamp(14px, 3vw, 38px);
  bottom: clamp(86px, 12vh, 116px);
  width: min(330px, calc(100% - 28px));
  border-radius: 22px;
  padding: 16px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 58px rgba(17,42,38,.14);
}

body.public-home[data-public-view="intro"] .cookie-consent-copy p {
  display: none;
}

body.public-home[data-public-view="intro"] .cookie-consent-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

body.public-home[data-public-view="intro"] .cookie-consent-actions .primary-button,
body.public-home[data-public-view="intro"] .cookie-consent-actions .secondary-button {
  min-width: 0;
  width: 100%;
  padding: 10px 12px;
  font-size: 13px;
}

/* 1. Design System Variables */
:root {
  --bg-main: #f8fafc;
  --text-main: #0f172a;
  --text-muted: #475569;
  --accent: #059669;
  --accent-hover: #047857;
  --glass-bg: rgba(255, 255, 255, 0.4);
  --glass-border: rgba(255, 255, 255, 0.6);
  --radius-premium: 16px;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

/* 2. Premium Landing System */
body {
  margin: 0;
  overflow-x: hidden;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-sans);
}

body.public-home[data-public-view="intro"] {
  background:
    radial-gradient(circle at 82% 16%, rgba(5, 150, 105, .14), transparent 30%),
    radial-gradient(circle at 12% 74%, rgba(14, 165, 233, .09), transparent 32%),
    var(--bg-main);
}

body.public-home[data-public-view="intro"] .tool-app {
  min-height: 100svh;
  background: transparent;
}

body.public-home[data-public-view="intro"] .site-header {
  position: fixed;
  z-index: 20;
  top: 24px;
  left: clamp(18px, 4vw, 64px);
  right: clamp(18px, 4vw, 64px);
  min-height: 68px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
}

body.public-home[data-public-view="intro"] .brand {
  color: var(--text-main);
}

body.public-home[data-public-view="intro"] .brand-mark {
  border-radius: 14px;
  background: var(--text-main);
  color: #fff;
}

body.public-home[data-public-view="intro"] .site-nav a,
body.public-home[data-public-view="intro"] .site-nav button,
body.public-home[data-public-view="intro"] .nav-action {
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  box-shadow: none;
}

body.public-home[data-public-view="intro"] .site-nav a:hover,
body.public-home[data-public-view="intro"] .site-nav button:hover,
body.public-home[data-public-view="intro"] .nav-action:hover {
  border-color: rgba(5, 150, 105, .18);
  background: rgba(5, 150, 105, .08);
  color: var(--text-main);
}

.hero-container,
body.public-home[data-public-view="intro"] .hero-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  align-items: center;
  width: min(1200px, calc(100% - 40px));
  max-width: 1200px;
  min-height: 100svh;
  margin: 0 auto;
  padding: 112px 20px 80px;
  background: transparent;
  overflow: visible;
}

body.public-home[data-public-view="intro"] .hero-container::before,
body.public-home[data-public-view="intro"] .hero-container::after {
  display: none !important;
}

.hero-left,
body.public-home[data-public-view="intro"] .hero-left {
  grid-column: span 7;
  max-width: 680px;
}

.hero-right,
body.public-home[data-public-view="intro"] .hero-right {
  grid-column: span 5;
}

body.public-home[data-public-view="intro"] .intro-copy .eyebrow {
  width: max-content;
  margin-bottom: 22px;
  border: 1px solid rgba(5, 150, 105, .18);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(236, 253, 245, .72);
  color: var(--accent-hover);
  box-shadow: none;
  letter-spacing: .04em;
}

body.public-home[data-public-view="intro"] .intro-copy h1 {
  max-width: 680px;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: clamp(52px, 6.5vw, 94px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: 0;
}

body.public-home[data-public-view="intro"] .intro-copy .lead {
  max-width: 590px;
  margin-top: 26px;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 560;
  line-height: 1.55;
}

body.public-home[data-public-view="intro"] .launch-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
}

body.public-home[data-public-view="intro"] .launch-row p {
  display: block !important;
  max-width: 260px;
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 780;
  line-height: 1.4;
}

body.public-home[data-public-view="intro"] .launch-button,
body.public-home[data-public-view="intro"] .primary-button {
  border: 0;
  border-radius: var(--radius-premium);
  background: var(--accent);
  color: #fff;
  clip-path: none;
  box-shadow: 0 22px 42px rgba(5, 150, 105, .22);
}

body.public-home[data-public-view="intro"] .launch-button {
  min-width: min(100%, 330px);
  padding: 18px 62px 18px 22px;
}

body.public-home[data-public-view="intro"] .launch-button:hover,
body.public-home[data-public-view="intro"] .primary-button:hover {
  background: var(--accent-hover);
}

body.public-home[data-public-view="intro"] .launch-button .launch-main {
  font-size: 22px;
  font-weight: 900;
}

body.public-home[data-public-view="intro"] .launch-button small {
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
}

body.public-home[data-public-view="intro"] .launch-button::after {
  right: 24px;
  border-color: #d1fae5;
}

/* 3. Glassmorphism voor de visual/calculator modules */
.calculator-card,
body.public-home[data-public-view="intro"] .signature-visual,
body.public-home .calculator-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-premium);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body.public-home[data-public-view="intro"] .holiday-visual {
  display: grid !important;
  place-items: center;
  min-height: 520px;
}

body.public-home[data-public-view="intro"] .portfolio-visual,
body.public-home[data-public-view="intro"] .holiday-animation {
  display: none !important;
}

body.public-home[data-public-view="intro"] .signature-visual {
  position: relative;
  width: min(590px, 100%);
  aspect-ratio: 1.08;
  overflow: visible;
  border-radius: 28px;
}

body.public-home[data-public-view="intro"] .visual-backplate {
  inset: 8% 3% 8% 8%;
  border: 1px solid rgba(255, 255, 255, .64);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.58), rgba(240,253,250,.48)),
    repeating-linear-gradient(0deg, rgba(15,23,42,.04) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(15,23,42,.04) 0 1px, transparent 1px 34px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

body.public-home[data-public-view="intro"] .visual-house-card {
  left: 7%;
  right: 13%;
  bottom: 8%;
  height: 58%;
  border-color: rgba(15, 23, 42, .08);
  border-radius: 26px;
  background: rgba(255,255,255,.56);
  box-shadow: 0 24px 56px rgba(15, 23, 42, .08);
}

body.public-home[data-public-view="intro"] .visual-yield-card {
  right: 1%;
  top: 9%;
  width: 210px;
  min-height: 152px;
  border-color: rgba(255,255,255,.72);
  border-radius: 24px;
  background: linear-gradient(145deg, var(--accent-hover), var(--accent));
  box-shadow: 0 26px 52px rgba(5, 150, 105, .2);
}

body.public-home[data-public-view="intro"] .visual-calendar-card,
body.public-home[data-public-view="intro"] .visual-service-card {
  border-color: rgba(255,255,255,.72);
  border-radius: 22px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 20px 46px rgba(15, 23, 42, .08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.public-home[data-public-view="intro"] .visual-service-card span {
  background: #f1f5f9;
  color: var(--text-main);
}

body.public-home[data-public-view="intro"] .visual-calendar-card span:nth-child(3n),
body.public-home[data-public-view="intro"] .visual-calendar-card span:nth-child(5) {
  background: #bfdbfe;
}

body.public-home[data-public-view="intro"] .visual-calendar-card span:nth-child(8),
body.public-home[data-public-view="intro"] .visual-calendar-card span:nth-child(11) {
  background: var(--accent);
}

.premium-input,
.public-home .field input,
.public-home .field select,
.public-home .field textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  background: #fff;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 16px;
  padding: 14px 20px;
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}

.premium-input:focus,
.public-home .field input:focus,
.public-home .field select:focus,
.public-home .field textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 4px rgba(5, 150, 105, .12);
}

body.public-home .calculator-card {
  padding: 32px;
}

body.public-home .field,
body.public-home .amenity-grid label,
body.public-home .country-choice-grid label {
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--radius-premium);
  background: rgba(255,255,255,.68);
  box-shadow: none;
}

body.public-home[data-public-view="intro"] .utility-links {
  right: clamp(18px, 4vw, 64px);
  bottom: clamp(22px, 4vh, 46px);
}

body.public-home[data-public-view="intro"] .utility-links a {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-premium);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, .07);
}

body.public-home[data-public-view="intro"] .utility-links a span {
  color: var(--text-main);
}

body.public-home[data-public-view="intro"] .utility-links a small {
  color: var(--text-muted);
}

body.public-home[data-public-view="intro"] .cookie-consent {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-premium);
  background: rgba(255,255,255,.76);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, .08);
}

@media (max-width: 980px) {
  .hero-container,
  body.public-home[data-public-view="intro"] .hero-container {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 36px));
    padding-top: 116px;
  }

  .hero-left,
  .hero-right,
  body.public-home[data-public-view="intro"] .hero-left,
  body.public-home[data-public-view="intro"] .hero-right {
    grid-column: auto;
  }

  body.public-home[data-public-view="intro"] .holiday-visual {
    min-height: 390px;
  }
}

@media (max-width: 760px) {
  body.public-home[data-public-view="intro"] .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    border-radius: var(--radius-premium);
  }

  .hero-container,
  body.public-home[data-public-view="intro"] .hero-container {
    width: calc(100% - 24px);
    padding: 104px 0 126px;
    gap: 28px;
  }

  body.public-home[data-public-view="intro"] .intro-copy h1 {
    font-size: clamp(40px, 12vw, 62px);
  }

  body.public-home[data-public-view="intro"] .launch-row {
    align-items: stretch;
    flex-direction: column;
  }

  body.public-home[data-public-view="intro"] .launch-row p {
    display: none !important;
  }

  body.public-home[data-public-view="intro"] .launch-button {
    width: 100%;
  }

  body.public-home[data-public-view="intro"] .signature-visual {
    width: min(420px, 100%);
  }

  body.public-home[data-public-view="intro"] .visual-yield-card,
  body.public-home[data-public-view="intro"] .visual-service-card {
    transform: scale(.82);
  }
}

@media (max-width: 760px) {
  body.public-home[data-public-view="intro"] .utility-links {
    display: none;
  }
}

/* Final premium hero override: Rendement Preview Tool */
:root {
  --bg-main: #f4f6f8;
  --hero-ink-soft: #334155;
  --hero-glow-green: rgba(5, 150, 105, .15);
  --hero-glow-blue: rgba(56, 189, 248, .13);
}

body {
  background:
    radial-gradient(circle at 82% 10%, rgba(16, 185, 129, .18), transparent 30rem),
    radial-gradient(circle at 96% 34%, rgba(56, 189, 248, .14), transparent 27rem),
    linear-gradient(135deg, #f4f6f8 0%, #f8fafc 48%, #eef7f5 100%);
}

body.public-home[data-public-view="intro"] {
  background-color: #f4f6f8;
  background-image:
    radial-gradient(circle at 80% 8%, rgba(16, 185, 129, .2), transparent 32rem),
    radial-gradient(circle at 102% 42%, rgba(56, 189, 248, .16), transparent 30rem),
    radial-gradient(circle at 12% 82%, rgba(255, 255, 255, .82), transparent 28rem),
    linear-gradient(135deg, #f4f6f8 0%, #f8fafc 52%, #eef7f5 100%);
}

body.public-home[data-public-view="intro"] .intro-copy h1 {
  max-width: 650px;
  color: transparent;
  background: linear-gradient(120deg, var(--text-main) 0%, #111827 48%, var(--hero-ink-soft) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(58px, 7.4vw, 92px);
  line-height: 1.1;
  letter-spacing: 0;
}

body.public-home[data-public-view="intro"] .intro-copy .lead {
  max-width: 620px;
  color: var(--text-muted);
}

body.public-home[data-public-view="intro"] .hero-address-card {
  border: 1px solid rgba(15, 23, 42, .075);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 18px 48px rgba(15, 23, 42, .055);
}

body.public-home[data-public-view="intro"] .hero-address-card:focus-within {
  border-color: rgba(5, 150, 105, .36);
  box-shadow: 0 0 10px rgba(5, 150, 105, .15), 0 20px 52px rgba(15, 23, 42, .06);
}

body.public-home[data-public-view="intro"] .hero-address-card .premium-input {
  border: 1px solid rgba(15, 23, 42, .07);
  background: rgba(255, 255, 255, .9);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

body.public-home[data-public-view="intro"] .hero-address-card .premium-input:focus {
  border-color: rgba(5, 150, 105, .45);
  box-shadow: 0 0 10px rgba(5, 150, 105, .15);
}

body.public-home[data-public-view="intro"] .launch-button {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  box-shadow: 0 22px 46px rgba(5, 150, 105, .22);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

body.public-home[data-public-view="intro"] .launch-button:hover {
  background: linear-gradient(135deg, #047857 0%, #059669 100%);
  box-shadow: 0 28px 56px rgba(5, 150, 105, .26);
  transform: translateY(-2px);
}

body.public-home[data-public-view="intro"] .yield-preview-card {
  position: relative;
  width: min(500px, 100%);
  min-height: 520px;
  padding: clamp(30px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 28px;
  background: rgba(255, 255, 255, .65);
  box-shadow: 0 30px 60px rgba(15, 23, 42, .08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
}

body.public-home[data-public-view="intro"] .yield-preview-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 24% 0%, rgba(16, 185, 129, .18), transparent 25rem),
    radial-gradient(circle at 100% 18%, rgba(56, 189, 248, .18), transparent 22rem);
  pointer-events: none;
}

body.public-home[data-public-view="intro"] .yield-preview-card > * {
  position: relative;
  z-index: 1;
}

body.public-home[data-public-view="intro"] .yield-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

body.public-home[data-public-view="intro"] .yield-card-top .eyebrow {
  margin: 0;
}

body.public-home[data-public-view="intro"] .yield-card-top > span {
  border: 1px solid rgba(5, 150, 105, .14);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--accent-hover);
  background: rgba(236, 253, 245, .64);
  font-size: 12px;
  font-weight: 850;
}

body.public-home[data-public-view="intro"] .yield-preview-display {
  display: grid;
  place-items: center;
  min-height: 210px;
  margin: 38px 0 30px;
  border: 1px solid rgba(15, 23, 42, .06);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .62), rgba(255, 255, 255, .28)),
    radial-gradient(circle at 50% 0%, rgba(16, 185, 129, .1), transparent 18rem);
}

body.public-home[data-public-view="intro"] .yield-lock {
  position: relative;
  width: 38px;
  height: 30px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: rgba(15, 23, 42, .86);
  box-shadow: 0 12px 24px rgba(15, 23, 42, .12);
}

body.public-home[data-public-view="intro"] .yield-lock::before {
  content: "";
  position: absolute;
  left: 8px;
  top: -18px;
  width: 20px;
  height: 22px;
  border: 4px solid rgba(15, 23, 42, .86);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

body.public-home[data-public-view="intro"] .yield-lock::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 12px;
  width: 5px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .76);
}

body.public-home[data-public-view="intro"] .yield-preview-display strong {
  color: var(--text-main);
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

body.public-home[data-public-view="intro"] .yield-preview-display strong span {
  filter: blur(2.2px);
  opacity: .72;
}

body.public-home[data-public-view="intro"] .yield-preview-display small {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 800;
}

body.public-home[data-public-view="intro"] .yield-progress-list {
  display: grid;
  gap: 17px;
}

body.public-home[data-public-view="intro"] .yield-progress-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: center;
  color: #64748b;
}

body.public-home[data-public-view="intro"] .yield-progress-item span {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(100, 116, 139, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 0 0 6px rgba(100, 116, 139, .06);
}

body.public-home[data-public-view="intro"] .yield-progress-item p {
  position: relative;
  margin: 0;
  padding-bottom: 9px;
  font-size: 14px;
  font-weight: 820;
}

body.public-home[data-public-view="intro"] .yield-progress-item p::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(100, 116, 139, .16);
}

body.public-home[data-public-view="intro"] .yield-progress-item.is-active,
body.public-home.has-hero-input[data-public-view="intro"] .yield-progress-item:nth-child(-n + 2) {
  color: var(--text-main);
}

body.public-home[data-public-view="intro"] .yield-progress-item.is-active span,
body.public-home.has-hero-input[data-public-view="intro"] .yield-progress-item:nth-child(-n + 2) span {
  border-color: rgba(5, 150, 105, .4);
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(5, 150, 105, .1), 0 0 18px rgba(5, 150, 105, .2);
}

body.public-home[data-public-view="intro"] .yield-statusbar {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

body.public-home[data-public-view="intro"] .yield-statusbar span {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0 26%, rgba(148, 163, 184, .22) 26% 100%);
}

body.public-home.has-hero-input[data-public-view="intro"] .yield-statusbar span {
  background: linear-gradient(90deg, var(--accent) 0 52%, rgba(148, 163, 184, .22) 52% 100%);
}

body.public-home[data-public-view="intro"] .yield-statusbar strong {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 820;
}

@media (max-width: 980px) {
  body.public-home[data-public-view="intro"] .intro-copy h1 {
    font-size: clamp(48px, 10vw, 72px);
  }

  body.public-home[data-public-view="intro"] .yield-preview-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  body.public-home[data-public-view="intro"] .intro-copy h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  body.public-home[data-public-view="intro"] .yield-preview-display {
    min-height: 184px;
  }

  body.public-home[data-public-view="intro"] .yield-card-top {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 760px) {
  body.public-home[data-public-view="intro"] .utility-links {
    display: none !important;
  }
}

/* Fintech hero rebuild: animated mesh, radar and ticker */
@keyframes meshDriftEmerald {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  35% { transform: translate3d(-8vw, 7vh, 0) scale(1.08); }
  70% { transform: translate3d(5vw, 13vh, 0) scale(.92); }
}

@keyframes meshDriftBlue {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  40% { transform: translate3d(9vw, -6vh, 0) scale(1.1); }
  76% { transform: translate3d(-6vw, -11vh, 0) scale(.94); }
}

@keyframes pulseRadar {
  0% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.4); }
  70% { transform: scale(1.1); opacity: 0; box-shadow: 0 0 0 40px rgba(5, 150, 105, 0); }
  100% { transform: scale(0.95); opacity: 0; }
}

@keyframes radarSweep {
  to { transform: rotate(360deg); }
}

@keyframes tickerRoll {
  0%, 12% { transform: translateY(0); }
  88%, 100% { transform: translateY(-74%); }
}

@keyframes glassSweep {
  0% { transform: translateX(-140%) skewX(-18deg); opacity: 0; }
  38% { opacity: .75; }
  100% { transform: translateX(165%) skewX(-18deg); opacity: 0; }
}

@keyframes buttonShine {
  0% { transform: translateX(-130%) skewX(-18deg); opacity: 0; }
  30% { opacity: .85; }
  100% { transform: translateX(160%) skewX(-18deg); opacity: 0; }
}

body.public-home {
  position: relative;
  isolation: isolate;
  background: #eef4f7;
}

body.public-home::before,
body.public-home::after {
  content: "";
  position: fixed;
  width: 52rem;
  height: 52rem;
  border-radius: 999px;
  filter: blur(120px);
  opacity: .15;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

body.public-home::before {
  right: -10rem;
  top: -16rem;
  background: #059669;
  animation: meshDriftEmerald 20s ease-in-out infinite;
}

body.public-home::after {
  left: 22vw;
  bottom: -18rem;
  background: #3b82f6;
  animation: meshDriftBlue 20s ease-in-out infinite reverse;
}

body.public-home .site-header,
body.public-home .tool-app,
body.public-home .utility-links,
body.public-home .cookie-consent {
  position: relative;
  z-index: 1;
}

body.public-home[data-public-view="intro"] {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .86), transparent 32rem),
    linear-gradient(135deg, #eef4f7 0%, #f8fafc 46%, #e9f8f5 100%);
}

body.public-home[data-public-view="intro"] .hero-container {
  min-height: 100svh;
  gap: clamp(44px, 7vw, 92px);
  padding-top: 60px;
  padding-bottom: 34px;
}

body.public-home[data-public-view="intro"] .intro-copy h1 {
  max-width: 660px;
  color: transparent;
  background:
    linear-gradient(115deg, #07111f 0%, #122033 44%, #355067 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(48px, 5.9vw, 72px);
  line-height: 1.06;
  letter-spacing: 0;
}

body.public-home[data-public-view="intro"] .intro-copy .lead {
  max-width: 610px;
  color: #475569;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
}

body.public-home[data-public-view="intro"] .hero-start-form {
  margin-top: 22px;
  gap: 12px;
}

body.public-home[data-public-view="intro"] .hero-address-card {
  padding: 12px;
}

body.public-home[data-public-view="intro"] .hero-address-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .72));
  box-shadow: 0 24px 70px rgba(15, 23, 42, .075);
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
}

body.public-home[data-public-view="intro"] .hero-address-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(5, 150, 105, .0), rgba(59, 130, 246, .0));
  opacity: 0;
  transition: opacity .4s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
}

body.public-home[data-public-view="intro"] .hero-address-card:focus-within {
  border-color: rgba(5, 150, 105, .48);
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(5, 150, 105, .16),
    0 0 28px rgba(5, 150, 105, .2),
    0 26px 80px rgba(15, 23, 42, .1);
}

body.public-home[data-public-view="intro"] .hero-address-card:focus-within::before {
  opacity: 1;
  background: linear-gradient(135deg, rgba(5, 150, 105, .12), rgba(59, 130, 246, .08));
}

body.public-home[data-public-view="intro"] .hero-address-card span,
body.public-home[data-public-view="intro"] .hero-address-card input {
  position: relative;
  z-index: 1;
}

body.public-home[data-public-view="intro"] .hero-address-card .premium-input {
  height: 54px;
  border: 1px solid rgba(15, 23, 42, .08);
  background: rgba(255, 255, 255, .78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86);
}

body.public-home[data-public-view="intro"] .hero-address-card .premium-input:focus {
  border-color: rgba(5, 150, 105, .5);
  box-shadow: 0 0 18px rgba(5, 150, 105, .18);
}

body.public-home[data-public-view="intro"] .launch-button {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .32);
  background:
    linear-gradient(135deg, #047857 0%, #059669 45%, #10b981 100%);
  box-shadow:
    0 24px 54px rgba(5, 150, 105, .26),
    inset 0 1px 0 rgba(255, 255, 255, .28);
  transition:
    transform .45s cubic-bezier(.16, 1, .3, 1),
    box-shadow .45s cubic-bezier(.16, 1, .3, 1),
    filter .45s cubic-bezier(.16, 1, .3, 1);
}

body.public-home[data-public-view="intro"] .launch-button::before {
  content: "";
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .52), transparent);
  transform: translateX(-130%) skewX(-18deg);
  pointer-events: none;
}

body.public-home[data-public-view="intro"] .launch-button:hover {
  transform: scale(1.02) translateY(-3px);
  filter: saturate(1.08);
  box-shadow:
    0 34px 74px rgba(5, 150, 105, .32),
    inset 0 1px 0 rgba(255, 255, 255, .32);
}

body.public-home[data-public-view="intro"] .launch-button:hover::before {
  animation: buttonShine .95s cubic-bezier(.16, 1, .3, 1);
}

body.public-home[data-public-view="intro"] .yield-preview-card {
  position: relative;
  width: min(520px, 100%);
  min-height: 510px;
  padding: clamp(26px, 3.4vw, 38px);
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(8, 18, 31, .84), rgba(13, 32, 48, .7)),
    rgba(8, 18, 31, .68);
  color: #f8fafc;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, .08),
    0 34px 90px rgba(15, 23, 42, .22),
    inset 0 1px 0 rgba(255, 255, 255, .2);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  overflow: hidden;
}

body.public-home[data-public-view="intro"] .yield-preview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 22% 8%, rgba(5, 150, 105, .28), transparent 16rem),
    radial-gradient(circle at 100% 0%, rgba(59, 130, 246, .25), transparent 16rem),
    linear-gradient(120deg, rgba(255, 255, 255, .18), transparent 32%);
  pointer-events: none;
}

body.public-home[data-public-view="intro"] .yield-preview-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 31px;
  border: 1px solid rgba(255, 255, 255, .08);
  pointer-events: none;
}

body.public-home[data-public-view="intro"] .yield-card-top,
body.public-home[data-public-view="intro"] .yield-preview-display,
body.public-home[data-public-view="intro"] .yield-progress-list,
body.public-home[data-public-view="intro"] .yield-statusbar {
  position: relative;
  z-index: 1;
}

body.public-home[data-public-view="intro"] .yield-card-top .eyebrow {
  color: #86efac;
}

body.public-home[data-public-view="intro"] .yield-card-top > span {
  border-color: rgba(134, 239, 172, .24);
  background: rgba(5, 150, 105, .12);
  color: #bbf7d0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

body.public-home[data-public-view="intro"] .yield-preview-display {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  min-height: 238px;
  margin: 26px 0 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .04)),
    radial-gradient(circle at 50% 30%, rgba(5, 150, 105, .18), transparent 14rem);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    0 22px 70px rgba(0, 0, 0, .16);
  overflow: hidden;
}

body.public-home[data-public-view="intro"] .yield-preview-display::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, .12) 42%, transparent 64%);
  transform: translateX(-140%) skewX(-18deg);
  animation: glassSweep 4.8s ease-in-out infinite;
  pointer-events: none;
}

body.public-home[data-public-view="intro"] .radar-scanner {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 8px;
  border: 1px solid rgba(134, 239, 172, .18);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(16, 185, 129, .25) 0 8%, transparent 9% 100%),
    repeating-radial-gradient(circle, rgba(134, 239, 172, .18) 0 1px, transparent 1px 28px);
}

body.public-home[data-public-view="intro"] .radar-wave {
  position: absolute;
  inset: 30px;
  border-radius: 999px;
  animation: pulseRadar 2s infinite ease-out;
}

body.public-home[data-public-view="intro"] .radar-wave-two {
  animation-delay: .85s;
}

body.public-home[data-public-view="intro"] .radar-sweep {
  position: absolute;
  inset: 7px;
  border-radius: 999px;
  background: conic-gradient(from 0deg, rgba(16, 185, 129, .0), rgba(16, 185, 129, .44), rgba(59, 130, 246, .0) 34%);
  mask: radial-gradient(circle, transparent 0 14%, #000 15% 100%);
  animation: radarSweep 5.4s linear infinite;
  opacity: .72;
}

body.public-home[data-public-view="intro"] .radar-core {
  position: absolute;
  inset: 39px;
  border-radius: 999px;
  background: #34d399;
  box-shadow: 0 0 26px rgba(52, 211, 153, .72);
}

body.public-home[data-public-view="intro"] .yield-ticker {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14);
  overflow: hidden;
}

body.public-home[data-public-view="intro"] .yield-ticker::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.34), transparent 34%, rgba(255,255,255,.16)),
    linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
}

body.public-home[data-public-view="intro"] .ticker-currency,
body.public-home[data-public-view="intro"] .ticker-dot {
  position: relative;
  z-index: 1;
  color: #f8fafc;
  font-size: clamp(32px, 3.7vw, 44px);
  font-weight: 900;
  line-height: .9;
}

body.public-home[data-public-view="intro"] .ticker-window {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: .62em;
  height: 1em;
  overflow: hidden;
  color: #f8fafc;
  font-size: clamp(32px, 3.7vw, 44px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 24px rgba(134, 239, 172, .28);
  filter: blur(.7px);
  opacity: .78;
}

body.public-home[data-public-view="intro"] .ticker-window.small {
  width: .5em;
}

body.public-home[data-public-view="intro"] .ticker-strip {
  display: grid;
  gap: .08em;
  animation: tickerRoll 3.2s cubic-bezier(.16, 1, .3, 1) infinite alternate;
}

body.public-home[data-public-view="intro"] .ticker-strip b {
  display: block;
  height: 1em;
  font: inherit;
  line-height: 1;
}

body.public-home[data-public-view="intro"] .ticker-delay-one { animation-delay: .18s; }
body.public-home[data-public-view="intro"] .ticker-delay-two { animation-delay: .34s; }
body.public-home[data-public-view="intro"] .ticker-delay-three { animation-delay: .5s; }
body.public-home[data-public-view="intro"] .ticker-delay-four { animation-delay: .66s; }

body.public-home[data-public-view="intro"] .yield-preview-display small {
  position: relative;
  z-index: 2;
  display: block;
  width: min(340px, 100%);
  margin-top: 0;
  text-align: center;
  color: rgba(226, 232, 240, .72);
  line-height: 1.35;
}

body.public-home[data-public-view="intro"] .yield-progress-item {
  color: rgba(226, 232, 240, .48);
}

body.public-home[data-public-view="intro"] .yield-progress-item p::after {
  background: rgba(226, 232, 240, .13);
}

body.public-home[data-public-view="intro"] .yield-progress-item span {
  border-color: rgba(226, 232, 240, .2);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, .03);
}

body.public-home[data-public-view="intro"] .yield-progress-item.is-active,
body.public-home.has-hero-input[data-public-view="intro"] .yield-progress-item:nth-child(-n + 2) {
  color: #f8fafc;
}

body.public-home[data-public-view="intro"] .yield-statusbar span {
  overflow: hidden;
  background: rgba(255, 255, 255, .12);
}

body.public-home[data-public-view="intro"] .yield-statusbar span i {
  display: block;
  width: 28%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #059669, #3b82f6);
  box-shadow: 0 0 18px rgba(16, 185, 129, .34);
  transition: width .45s cubic-bezier(.16, 1, .3, 1);
}

body.public-home.has-hero-input[data-public-view="intro"] .yield-statusbar span i {
  width: 52%;
}

body.public-home[data-public-view="intro"] .yield-statusbar strong {
  color: rgba(226, 232, 240, .68);
}

body.public-home[data-public-view="intro"] .cookie-consent {
  left: auto !important;
  right: clamp(18px, 4vw, 48px) !important;
  bottom: clamp(18px, 3vh, 34px) !important;
  max-width: min(360px, calc(100vw - 36px));
}

body.public-home[data-public-view="intro"] .utility-links {
  top: clamp(18px, 3vh, 34px) !important;
  right: clamp(18px, 4vw, 48px) !important;
  bottom: auto !important;
}

@media (max-width: 980px) {
  body.public-home[data-public-view="intro"] .yield-preview-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  body.public-home::before,
  body.public-home::after {
    width: 34rem;
    height: 34rem;
    filter: blur(96px);
  }

  body.public-home[data-public-view="intro"] .intro-copy h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  body.public-home[data-public-view="intro"] .yield-preview-display {
    min-height: 250px;
  }

  body.public-home[data-public-view="intro"] .yield-ticker {
    padding-inline: 14px;
    gap: 5px;
  }
}
/* Premium luxury hero refresh */
:root {
  --bg-main: #f4f6f8;
  --text-main: #0f172a;
  --text-muted: #475569;
  --accent: #059669;
  --accent-hover: #047857;
  --accent-soft: #10b981;
  --ocean: #38bdf8;
  --gold: #d7a84f;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.82);
  --radius-premium: 24px;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.public-home {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 86% 8%, rgba(5, 150, 105, 0.08), transparent 28rem),
    radial-gradient(circle at 72% 82%, rgba(56, 189, 248, 0.08), transparent 32rem),
    var(--bg-main) !important;
  color: var(--text-main);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body.public-home::before,
body.public-home::after {
  content: "";
  position: fixed;
  width: 54rem;
  height: 54rem;
  border-radius: 999px;
  filter: blur(140px);
  opacity: 0.08;
  pointer-events: none;
  z-index: -1;
}

body.public-home::before {
  top: -22rem;
  right: -16rem;
  background: #059669;
}

body.public-home::after {
  right: 18vw;
  bottom: -26rem;
  background: #3b82f6;
}

body.public-home .tool-app {
  position: relative;
  z-index: 1;
}

body.public-home[data-public-view="intro"] .hero-container,
.hero-container {
  display: grid !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(450px, 0.92fr) !important;
  gap: clamp(44px, 5.6vw, 72px) !important;
  width: min(1240px, calc(100% - 56px)) !important;
  max-width: 1240px !important;
  min-height: calc(100svh - 86px) !important;
  margin: 0 auto !important;
  padding: clamp(56px, 8vh, 92px) 0 clamp(48px, 7vh, 74px) !important;
  align-items: center !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

body.public-home[data-public-view="intro"] .hero-container::before,
body.public-home[data-public-view="intro"] .hero-container::after,
.hero-container::before,
.hero-container::after {
  content: none !important;
}

body.public-home[data-public-view="intro"] .hero-left,
.hero-left {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

body.public-home[data-public-view="intro"] .intro-copy .eyebrow {
  width: max-content;
  margin-bottom: 22px;
  border: 1px solid rgba(5, 150, 105, 0.16);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.72);
  color: #067a57;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
  letter-spacing: 0.03em;
}

body.public-home[data-public-view="intro"] .intro-copy h1 {
  max-width: 720px !important;
  margin: 0 0 24px !important;
  color: var(--text-main) !important;
  background: none !important;
  -webkit-text-fill-color: var(--text-main) !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  font-size: clamp(42px, 4.45vw, 60px) !important;
  font-weight: 850 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
}

body.public-home[data-public-view="intro"] .intro-copy .lead {
  max-width: 610px !important;
  margin: 0 !important;
  color: var(--text-muted) !important;
  font-size: clamp(18px, 1.65vw, 21px) !important;
  font-weight: 500 !important;
  line-height: 1.65 !important;
}

body.public-home[data-public-view="intro"] .hero-start-form {
  display: grid !important;
  width: min(520px, 100%) !important;
  max-width: 520px !important;
  gap: 14px !important;
  margin-top: 36px !important;
}

body.public-home[data-public-view="intro"] .hero-address-card,
body.public-home[data-public-view="intro"] .launch-button {
  width: 100% !important;
  box-sizing: border-box !important;
  border-radius: 18px !important;
}

body.public-home[data-public-view="intro"] .hero-address-card {
  display: grid !important;
  gap: 9px !important;
  margin: 0 !important;
  border: 1px solid #e2e8f0 !important;
  padding: 14px !important;
  background: rgba(255, 255, 255, 0.86) !important;
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.07) !important;
  transition:
    border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

body.public-home[data-public-view="intro"] .hero-address-card:focus-within {
  border-color: rgba(5, 150, 105, 0.44) !important;
  box-shadow:
    0 0 10px rgba(5, 150, 105, 0.15),
    0 0 0 4px rgba(5, 150, 105, 0.09),
    0 24px 58px rgba(15, 23, 42, 0.08) !important;
  transform: translateY(-1px);
}

body.public-home[data-public-view="intro"] .hero-address-card > span {
  color: #334155 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
}

body.public-home[data-public-view="intro"] .hero-address-card .premium-input {
  width: 100% !important;
  height: 58px !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 14px !important;
  padding: 14px 18px !important;
  background: #fff !important;
  color: var(--text-main) !important;
  box-shadow: none !important;
  font-size: 16px !important;
  font-weight: 650 !important;
  outline: none !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
}

body.public-home[data-public-view="intro"] .hero-address-card .premium-input:focus {
  border-color: rgba(5, 150, 105, 0.46) !important;
  box-shadow: 0 0 10px rgba(5, 150, 105, 0.15) !important;
}

body.public-home[data-public-view="intro"] .launch-button {
  position: relative !important;
  min-width: 0 !important;
  min-height: 72px !important;
  margin: 0 !important;
  border: 0 !important;
  padding: 17px 64px 17px 22px !important;
  clip-path: none !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft)) !important;
  box-shadow: 0 22px 44px rgba(5, 150, 105, 0.22) !important;
  color: #fff !important;
  cursor: pointer;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.35s ease !important;
}

body.public-home[data-public-view="intro"] .launch-button::before {
  content: "";
  position: absolute;
  inset: -70% auto -70% -35%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: rotate(18deg) translateX(-90%);
  opacity: 0;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

body.public-home[data-public-view="intro"] .launch-button::after {
  right: 22px !important;
  width: 18px !important;
  height: 18px !important;
  border-color: #fff !important;
}

body.public-home[data-public-view="intro"] .launch-button:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 30px 62px rgba(5, 150, 105, 0.28) !important;
  filter: saturate(1.05);
}

body.public-home[data-public-view="intro"] .launch-button:hover::before {
  opacity: 1;
  transform: rotate(18deg) translateX(370%);
}

body.public-home[data-public-view="intro"] .launch-button .launch-main {
  position: relative;
  z-index: 1;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 850 !important;
}

body.public-home[data-public-view="intro"] .launch-button small {
  position: relative;
  z-index: 1;
  display: block !important;
  margin-top: 4px !important;
  color: rgba(255, 255, 255, 0.83) !important;
  font-size: 12px !important;
  font-weight: 750 !important;
  letter-spacing: 0 !important;
}

body.public-home[data-public-view="intro"] .hero-right,
.hero-right {
  position: relative;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 0;
}

body.public-home[data-public-view="intro"] .hero-right .calculator-card,
body.public-home[data-public-view="intro"] .hero-right .yield-preview-card {
  display: none !important;
}

body.public-home[data-public-view="intro"] .luxury-visual-mockup {
  position: relative;
  width: min(535px, 100%);
  min-height: 520px;
  border-radius: 30px;
}

body.public-home[data-public-view="intro"] .luxury-visual-mockup::before {
  content: "";
  position: absolute;
  inset: 52px 16px 34px 38px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.14), rgba(56, 189, 248, 0.18));
  filter: blur(26px);
  opacity: 0.8;
  transform: rotate(-4deg);
}

body.public-home[data-public-view="intro"] .villa-scene {
  position: absolute;
  inset: 32px 0 72px 0;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-premium);
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.82) 0%, rgba(244, 251, 248, 0.78) 45%, rgba(222, 246, 250, 0.82) 100%),
    radial-gradient(circle at 80% 16%, rgba(255, 210, 122, 0.42), transparent 9rem),
    radial-gradient(circle at 18% 92%, rgba(16, 185, 129, 0.18), transparent 14rem);
  box-shadow:
    0 34px 80px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

body.public-home[data-public-view="intro"] .villa-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 26%, #000 82%, transparent 100%);
}

body.public-home[data-public-view="intro"] .scene-sun {
  position: absolute;
  top: 38px;
  right: 74px;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fde68a, #fbbf24);
  box-shadow: 0 20px 55px rgba(251, 191, 36, 0.24);
}

body.public-home[data-public-view="intro"] .scene-mountain {
  position: absolute;
  bottom: 140px;
  border-radius: 999px 999px 0 0;
  transform: skewX(-18deg);
  opacity: 0.78;
}

body.public-home[data-public-view="intro"] .scene-mountain-one {
  left: -72px;
  width: 360px;
  height: 150px;
  background: linear-gradient(135deg, rgba(187, 247, 208, 0.55), rgba(20, 184, 166, 0.18));
}

body.public-home[data-public-view="intro"] .scene-mountain-two {
  right: -64px;
  width: 300px;
  height: 128px;
  background: linear-gradient(135deg, rgba(191, 219, 254, 0.52), rgba(45, 212, 191, 0.16));
}

body.public-home[data-public-view="intro"] .scene-water {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 122px;
  background:
    radial-gradient(ellipse at 22% 34%, rgba(255, 255, 255, 0.6), transparent 12rem),
    linear-gradient(180deg, rgba(125, 211, 252, 0.24), rgba(20, 184, 166, 0.24));
}

body.public-home[data-public-view="intro"] .scene-water::after {
  content: "";
  position: absolute;
  inset: 36px 30px auto;
  height: 46px;
  border-top: 5px solid rgba(255, 255, 255, 0.68);
  border-bottom: 5px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  transform: rotate(-3deg);
}

body.public-home[data-public-view="intro"] .scene-shore {
  position: absolute;
  left: 54px;
  right: 42px;
  bottom: 104px;
  height: 72px;
  border-radius: 80% 70% 0 0;
  background: linear-gradient(90deg, rgba(255, 244, 214, 0.9), rgba(209, 250, 229, 0.68));
  transform: rotate(-2deg);
}

body.public-home[data-public-view="intro"] .scene-tree {
  position: absolute;
  width: 24px;
  height: 144px;
  bottom: 112px;
  border-radius: 20px 20px 8px 8px;
  background: linear-gradient(180deg, #b77938, #7c4a1d);
  transform-origin: bottom;
  z-index: 5;
}

body.public-home[data-public-view="intro"] .scene-tree::before,
body.public-home[data-public-view="intro"] .scene-tree::after {
  content: "";
  position: absolute;
  border-radius: 999px 999px 999px 24px;
  background: linear-gradient(135deg, #22c55e, #059669);
  box-shadow: 0 10px 22px rgba(5, 150, 105, 0.16);
}

body.public-home[data-public-view="intro"] .scene-tree::before {
  width: 86px;
  height: 46px;
  left: -66px;
  top: 16px;
  transform: rotate(-16deg);
}

body.public-home[data-public-view="intro"] .scene-tree::after {
  width: 94px;
  height: 50px;
  left: 2px;
  top: 42px;
  transform: rotate(12deg);
}

body.public-home[data-public-view="intro"] .scene-tree-a {
  left: 78px;
  transform: rotate(9deg);
}

body.public-home[data-public-view="intro"] .scene-tree-b {
  right: 108px;
  bottom: 100px;
  height: 118px;
  transform: scale(0.78) rotate(-8deg);
  opacity: 0.9;
}

body.public-home[data-public-view="intro"] .villa-silhouette {
  position: absolute;
  left: 156px;
  right: 78px;
  bottom: 128px;
  height: 218px;
  z-index: 4;
}

body.public-home[data-public-view="intro"] .villa-roof {
  position: absolute;
  border-radius: 8px;
  background: #0f4a42;
  box-shadow: 7px 7px 0 #f6b15e;
}

body.public-home[data-public-view="intro"] .villa-roof-main {
  left: 4px;
  right: 64px;
  top: 42px;
  height: 12px;
  transform: rotate(-33deg);
  transform-origin: left center;
}

body.public-home[data-public-view="intro"] .villa-roof-main::after {
  content: "";
  position: absolute;
  right: -144px;
  top: 79px;
  width: 204px;
  height: 12px;
  border-radius: inherit;
  background: inherit;
  transform: rotate(64deg);
  transform-origin: left center;
  box-shadow: inherit;
}

body.public-home[data-public-view="intro"] .villa-roof-side {
  right: 24px;
  top: 112px;
  width: 108px;
  height: 10px;
  transform: rotate(30deg);
  transform-origin: right center;
  opacity: 0.96;
}

body.public-home[data-public-view="intro"] .villa-body,
body.public-home[data-public-view="intro"] .villa-wing {
  position: absolute;
  border: 7px solid #0f4a42;
  background: rgba(255, 255, 248, 0.92);
}

body.public-home[data-public-view="intro"] .villa-body {
  left: 34px;
  bottom: 0;
  width: 236px;
  height: 116px;
  border-radius: 4px 4px 8px 8px;
}

body.public-home[data-public-view="intro"] .villa-wing {
  right: 0;
  bottom: 0;
  width: 112px;
  height: 78px;
  border-radius: 4px 8px 8px 4px;
}

body.public-home[data-public-view="intro"] .villa-window,
body.public-home[data-public-view="intro"] .villa-door {
  position: absolute;
  z-index: 6;
  border: 6px solid #0f4a42;
  border-radius: 8px;
  background: rgba(236, 254, 255, 0.78);
}

body.public-home[data-public-view="intro"] .villa-window::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 100%;
  height: 5px;
  background: #0f4a42;
  transform: translateY(-50%);
}

body.public-home[data-public-view="intro"] .window-a {
  left: 168px;
  bottom: 52px;
  width: 48px;
  height: 42px;
}

body.public-home[data-public-view="intro"] .window-b {
  left: 228px;
  bottom: 52px;
  width: 48px;
  height: 42px;
}

body.public-home[data-public-view="intro"] .window-c {
  right: 34px;
  bottom: 34px;
  width: 42px;
  height: 34px;
}

body.public-home[data-public-view="intro"] .villa-door {
  left: 70px;
  bottom: 0;
  width: 52px;
  height: 76px;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #fde68a, #f6b15e);
}

body.public-home[data-public-view="intro"] .villa-terrace {
  position: absolute;
  left: 12px;
  right: -8px;
  bottom: -22px;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 74, 66, 0.44);
  box-shadow: 0 20px 0 rgba(15, 74, 66, 0.18);
}

body.public-home[data-public-view="intro"] .yield-glass-card {
  position: absolute;
  left: 34px;
  right: 32px;
  bottom: 4px;
  z-index: 8;
  display: grid;
  gap: 16px;
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 22px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

body.public-home[data-public-view="intro"] .yield-glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.38), transparent 66% 100%);
  opacity: 0.58;
  pointer-events: none;
}

body.public-home[data-public-view="intro"] .yield-glass-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

body.public-home[data-public-view="intro"] .yield-glass-header span {
  color: #334155;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body.public-home[data-public-view="intro"] .yield-glass-header strong {
  border: 1px solid rgba(215, 168, 79, 0.34);
  border-radius: 999px;
  padding: 8px 14px;
  background: linear-gradient(135deg, rgba(255, 247, 214, 0.95), rgba(16, 185, 129, 0.12));
  color: #0f4a42;
  box-shadow: 0 12px 28px rgba(215, 168, 79, 0.18);
  font-size: 18px;
  font-weight: 900;
}

body.public-home[data-public-view="intro"] .yield-glass-card p {
  position: relative;
  z-index: 1;
  margin: -8px 0 0;
  color: #475569;
  font-size: 15px;
  font-weight: 650;
}

body.public-home[data-public-view="intro"] .yield-chart {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 10px;
  min-height: 78px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 18px;
}

body.public-home[data-public-view="intro"] .chart-bar {
  display: block;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #10b981, #0f766e);
  box-shadow: 0 12px 22px rgba(5, 150, 105, 0.16);
}

body.public-home[data-public-view="intro"] .bar-one { height: 32px; opacity: 0.48; }
body.public-home[data-public-view="intro"] .bar-two { height: 48px; opacity: 0.64; }
body.public-home[data-public-view="intro"] .bar-three { height: 42px; opacity: 0.58; }
body.public-home[data-public-view="intro"] .bar-four { height: 64px; opacity: 0.82; }
body.public-home[data-public-view="intro"] .bar-five {
  height: 76px;
  background: linear-gradient(180deg, #f5c85f, #10b981);
}

@media (max-width: 980px) {
  body.public-home[data-public-view="intro"] .hero-container,
  .hero-container {
    grid-template-columns: 1fr !important;
    width: min(680px, calc(100% - 36px)) !important;
    gap: 38px !important;
    min-height: auto !important;
    padding-top: 42px !important;
  }

  body.public-home[data-public-view="intro"] .hero-left,
  .hero-left {
    max-width: none;
  }

  body.public-home[data-public-view="intro"] .luxury-visual-mockup {
    width: min(560px, 100%);
    min-height: 460px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  body.public-home::before,
  body.public-home::after {
    width: 34rem;
    height: 34rem;
    filter: blur(100px);
  }

  body.public-home[data-public-view="intro"] .hero-container,
  .hero-container {
    width: min(100% - 28px, 560px) !important;
    padding-top: 32px !important;
    padding-bottom: 48px !important;
  }

  body.public-home[data-public-view="intro"] .intro-copy .eyebrow {
    margin-bottom: 16px;
  }

  body.public-home[data-public-view="intro"] .intro-copy h1 {
    font-size: clamp(38px, 11vw, 54px) !important;
  }

  body.public-home[data-public-view="intro"] .intro-copy .lead {
    font-size: 17px !important;
  }

  body.public-home[data-public-view="intro"] .hero-start-form {
    width: 100% !important;
  }

  body.public-home[data-public-view="intro"] .launch-button {
    min-height: 68px !important;
  }

  body.public-home[data-public-view="intro"] .luxury-visual-mockup {
    min-height: 390px;
  }

  body.public-home[data-public-view="intro"] .villa-scene {
    inset: 18px 0 62px;
  }

  body.public-home[data-public-view="intro"] .villa-silhouette {
    left: 92px;
    right: 34px;
    bottom: 108px;
    transform: scale(0.82);
    transform-origin: bottom center;
  }

  body.public-home[data-public-view="intro"] .scene-tree-a {
    left: 46px;
  }

  body.public-home[data-public-view="intro"] .scene-tree-b {
    right: 52px;
  }

  body.public-home[data-public-view="intro"] .yield-glass-card {
    left: 16px;
    right: 16px;
    padding: 18px;
  }

  body.public-home[data-public-view="intro"] .yield-glass-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  body.public-home[data-public-view="intro"] .yield-chart {
    min-height: 62px;
  }
}

/* Final placement lock: older 12-column hero rules must not affect this landing mockup. */
body.public-home[data-public-view="intro"] .hero-left,
.hero-left {
  grid-column: 1 !important;
  grid-row: 1 !important;
  align-self: center !important;
  display: block !important;
}

body.public-home[data-public-view="intro"] .hero-right,
.hero-right {
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: center !important;
  justify-self: end !important;
  width: 100% !important;
}

@media (max-width: 980px) {
  body.public-home[data-public-view="intro"] .hero-right,
  .hero-right {
    grid-column: 1 !important;
    grid-row: auto !important;
    justify-self: center !important;
    align-self: start !important;
  }

  body.public-home[data-public-view="intro"] .hero-container,
  .hero-container {
    align-items: start !important;
    align-content: start !important;
    height: auto !important;
    min-height: auto !important;
  }

  body.public-home[data-public-view="intro"] .hero-left,
  .hero-left {
    align-self: start !important;
  }
}

@media (max-width: 640px) {
  body.public-home[data-public-view="intro"] .intro-copy h1 {
    font-size: clamp(34px, 9.2vw, 42px) !important;
    line-height: 1.2 !important;
  }
}

/* Premium public homepage refresh */
html.public-document {
  background: #f7fafb;
}

body.public-home {
  min-width: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 26rem),
    radial-gradient(circle at 86% 20%, rgba(18, 184, 154, 0.12), rgba(18, 184, 154, 0) 28rem),
    radial-gradient(circle at 72% 92%, rgba(24, 198, 167, 0.10), rgba(24, 198, 167, 0) 30rem),
    linear-gradient(135deg, #f7fafb 0%, #eef7f6 100%) !important;
  color: #182333;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.premium-site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(52px, 1fr) auto minmax(300px, 1fr);
  align-items: center;
  gap: 24px;
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  padding: 52px 0 12px;
}

.premium-logo,
.premium-nav a {
  color: inherit;
  text-decoration: none;
}

.premium-logo {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
}

.premium-logo-mark {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background:
    linear-gradient(90deg, #12b89a 0 50%, rgba(18, 35, 51, 0.12) 50% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
  box-shadow:
    0 12px 30px rgba(18, 184, 154, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.premium-logo-mark span {
  position: absolute;
  inset: 50% 0 0;
  background: #182333;
}

.premium-brand-title {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 5px;
  color: #182333;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 18px 38px rgba(18, 35, 51, 0.08);
  white-space: nowrap;
}

.premium-brand-title::before,
.premium-brand-title::after {
  content: "";
  position: absolute;
  top: 25px;
  display: block;
  width: 148px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(36, 52, 71, 0.18));
}

.premium-brand-title::before {
  right: calc(100% + 28px);
}

.premium-brand-title::after {
  left: calc(100% + 28px);
}

.premium-brand-title::before,
.premium-brand-title::after {
  transform: translateY(2px);
}

.premium-brand-title {
  padding: 4px 10px 14px;
}

.premium-brand-title::after {
  background: linear-gradient(90deg, rgba(36, 52, 71, 0.18), transparent);
}

.premium-brand-title .brand-wordmark {
  position: relative;
  background: linear-gradient(120deg, #182333 0%, #243447 62%, #0d8f78 128%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.premium-brand-title .brand-wordmark::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(18, 184, 154, 0.62), transparent);
  box-shadow: 0 0 20px rgba(18, 184, 154, 0.18);
}

.premium-brand-title .brand-calculator {
  margin-top: 11px;
  color: rgba(11, 143, 120, 0.88);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.premium-brand-title::selection,
.premium-brand-title *::selection {
  background: rgba(18, 184, 154, 0.18);
}

.premium-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #243447;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
}

.premium-nav a {
  transition: color 0.22s ease, transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.premium-nav a:hover {
  color: #12b89a;
  transform: translateY(-1px);
}

.premium-nav-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 80px;
  min-height: 38px;
  border: 1px solid rgba(36, 52, 71, 0.08);
  border-radius: 999px;
  padding: 0 15px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.23)),
    rgba(255, 255, 255, 0.26);
  color: rgba(36, 52, 71, 0.72);
  font-size: 13px;
  font-weight: 820;
  white-space: nowrap;
  box-shadow:
    0 10px 24px rgba(18, 35, 51, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}

.premium-nav-secondary::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(18, 184, 154, 0.82);
  box-shadow: 0 0 14px rgba(18, 184, 154, 0.28);
  opacity: 0.68;
  transform: scale(0.82);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.premium-nav-secondary::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 7px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(18, 184, 154, 0.62), transparent);
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.premium-nav-secondary:hover {
  border-color: rgba(18, 184, 154, 0.20);
  background:
    radial-gradient(circle at 18% 46%, rgba(18, 184, 154, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.48);
  box-shadow:
    0 12px 26px rgba(18, 35, 51, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.premium-nav-secondary:hover::before {
  opacity: 1;
  transform: scale(1);
}

.premium-nav-secondary:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.premium-login-link {
  border: 1px solid rgba(36, 52, 71, 0.12);
  border-radius: 999px;
  padding: 13px 22px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

body.public-home .tool-app {
  position: relative;
  min-height: calc(100svh - 86px);
  background: transparent !important;
}

body.public-home .premium-landing {
  position: relative;
  isolation: isolate;
  display: grid !important;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr) !important;
  align-items: center !important;
  gap: 72px !important;
  width: min(1240px, calc(100% - 64px)) !important;
  min-height: calc(100svh - 132px) !important;
  margin: 0 auto !important;
  padding: 42px 0 86px !important;
  overflow: visible !important;
}

body.public-home .premium-landing::before,
body.public-home .premium-landing::after {
  content: none !important;
  display: none !important;
}

.premium-background-grid {
  position: absolute;
  z-index: -1;
  inset: -92px -9vw -60px;
  opacity: 0.5;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(36, 52, 71, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 52, 71, 0.045) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(circle at 72% 38%, #000 0, transparent 45%);
  animation: premium-grid-drift 24s linear infinite;
}

.premium-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  animation: premium-copy-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.premium-copy h1 {
  max-width: 540px;
  margin: 0;
  color: #182333;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

.premium-copy h1 span {
  color: #12b89a;
}

.premium-lead {
  margin: 28px 0 0;
  color: #738297;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.55;
}

.home-location-form {
  width: min(430px, 100%);
  margin-top: 40px;
  filter: none;
  opacity: 1;
  animation: premium-copy-in 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}

.home-income-button {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 10px 10px 10px 30px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.68);
  color: #182333;
  text-decoration: none;
  box-shadow:
    0 30px 82px rgba(18, 35, 51, 0.10),
    0 18px 42px rgba(18, 184, 154, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  cursor: pointer;
  font: inherit;
  text-align: left;
  touch-action: manipulation;
  overflow: hidden;
  animation: premium-cta-breathe 5.6s ease-in-out 1.2s infinite;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.home-income-button::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 86% 50%, rgba(18, 184, 154, 0.24), transparent 3.8rem),
    linear-gradient(90deg, transparent 0 32%, rgba(255, 255, 255, 0.58), transparent 64% 100%);
  opacity: 0;
  transform: translateX(-38%);
  pointer-events: none;
  animation: premium-cta-sheen 5.6s ease-in-out 1.2s infinite;
}

.home-income-button::after {
  content: "";
  position: absolute;
  inset: -18px auto -18px 64%;
  width: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 184, 154, 0.18), transparent 68%);
  filter: blur(14px);
  pointer-events: none;
  animation: premium-cta-glow 5.6s ease-in-out 1.2s infinite;
}

.home-income-button:focus-visible {
  outline: none;
}

.home-income-button:hover,
.home-income-button:focus-visible {
  border-color: rgba(18, 184, 154, 0.45);
  box-shadow:
    0 0 0 5px rgba(18, 184, 154, 0.09),
    0 30px 86px rgba(18, 35, 51, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transform: translateY(-1px);
}

.home-income-label {
  position: relative;
  z-index: 1;
  color: #243447;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
}

.home-income-arrow {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #12b89a, #18c6a7);
  box-shadow:
    0 14px 28px rgba(18, 184, 154, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  animation: premium-arrow-nudge 2.8s ease-in-out 1.5s infinite;
}

.home-income-arrow::before {
  content: "";
  width: 14px;
  height: 14px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateX(-2px) rotate(45deg);
}

.home-income-arrow::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(18, 184, 154, 0.36);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.78);
  animation: premium-arrow-ring 2.8s ease-in-out 1.5s infinite;
}

.home-income-button:hover .home-income-arrow,
.home-income-button:focus-visible .home-income-arrow {
  box-shadow:
    0 0 0 7px rgba(18, 184, 154, 0.11),
    0 18px 34px rgba(18, 184, 154, 0.3);
  filter: saturate(1.04);
  transform: scale(1.045);
}

.home-trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(520px, 100%);
  margin-top: 34px;
  color: #243447;
}

.home-trust-list div {
  min-width: 0;
  padding: 0 22px;
  border-left: 1px solid rgba(36, 52, 71, 0.11);
}

.home-trust-list div:first-child {
  border-left: 0;
  padding-left: 0;
}

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

.home-trust-list strong {
  color: #243447;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.home-trust-list span {
  margin-top: 5px;
  color: #78879a;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.premium-showcase {
  position: relative;
  z-index: 2;
  min-width: 0;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.premium-showcase::before,
.premium-showcase::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  transform: translateZ(-80px);
}

.premium-showcase::before {
  inset: auto -34px -54px auto;
  width: 420px;
  height: 230px;
  background: radial-gradient(ellipse at center, rgba(18, 184, 154, 0.20), transparent 68%);
  filter: blur(18px);
  opacity: 0.72;
  animation: premium-orbit-glow 18s ease-in-out infinite;
}

.premium-showcase::after {
  inset: 8px auto auto -36px;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.62), transparent 64%);
  filter: blur(12px);
  opacity: 0.42;
}

.premium-dashboard-card {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  padding: 38px 36px 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(247, 253, 252, 0.58)),
    rgba(255, 255, 255, 0.68);
  box-shadow:
    0 42px 110px rgba(18, 35, 51, 0.15),
    0 18px 44px rgba(18, 184, 154, 0.10),
    0 1px 0 rgba(255, 255, 255, 0.86) inset,
    -1px -1px 0 rgba(255, 255, 255, 0.72) inset;
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  transform-style: preserve-3d;
  animation:
    premium-card-enter 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both,
    premium-card-float 8s ease-in-out 1.4s infinite;
  transition: box-shadow 0.35s ease, transform 0.35s ease, filter 0.35s ease;
}

.premium-dashboard-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 23% 19%, rgba(24, 198, 167, 0.16), transparent 15rem),
    linear-gradient(115deg, transparent 0 33%, rgba(255, 255, 255, 0.58) 46%, transparent 60% 100%);
  opacity: 0.68;
  pointer-events: none;
  transform: translateX(-36%);
  animation: premium-card-sheen 13s ease-in-out infinite;
}

.premium-dashboard-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 24%, rgba(18, 184, 154, 0.14), transparent 16rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), transparent 28%),
    linear-gradient(315deg, rgba(18, 184, 154, 0.08), transparent 42%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.56),
    inset 0 -32px 80px rgba(18, 184, 154, 0.07);
}

.premium-dashboard-card > * {
  position: relative;
  z-index: 1;
}

.premium-dashboard-card:hover {
  box-shadow:
    0 48px 124px rgba(18, 35, 51, 0.18),
    0 22px 52px rgba(18, 184, 154, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  filter: saturate(1.04);
  transform: translateY(-7px) rotateX(2deg) rotateY(-2.4deg) scale(1.006);
}

.dashboard-watermark {
  position: absolute;
  inset: auto -82px 30px auto;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  opacity: 0.38;
  background:
    repeating-radial-gradient(circle, rgba(18, 184, 154, 0.18) 0 1px, transparent 1px 22px),
    linear-gradient(45deg, transparent 49.5%, rgba(18, 184, 154, 0.16) 50%, transparent 50.5%),
    linear-gradient(-12deg, transparent 49.5%, rgba(36, 52, 71, 0.09) 50%, transparent 50.5%);
  pointer-events: none;
  animation: premium-radar-drift 18s ease-in-out infinite;
}

.dashboard-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.dashboard-header p {
  margin: 0;
  color: #243447;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
}

.dashboard-amount {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 7px;
  margin-top: 18px;
}

.dashboard-amount strong {
  display: inline-block;
  width: max-content;
  min-width: 0;
  color: #12b89a;
  font-size: 54px;
  font-weight: 780;
  line-height: 0.96;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  white-space: nowrap;
}

.dashboard-amount span {
  display: inline-block;
  color: #7d8a9c;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.dashboard-badge {
  display: inline-grid;
  align-content: center;
  min-width: 96px;
  height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.66);
  color: #12b89a;
  box-shadow: 0 18px 40px rgba(18, 35, 51, 0.06);
  text-align: center;
  font-size: 15px;
  font-weight: 850;
  animation: premium-badge-pulse 22s ease-in-out 11.8s infinite;
}

.dashboard-badge small {
  margin-top: 5px;
  color: #8290a3;
  font-size: 11px;
  font-weight: 650;
}

.dashboard-chart {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  padding: 22px 8px 0;
  transform: translateZ(22px);
}

.dashboard-chart::before {
  content: "";
  position: absolute;
  inset: 4px 4px 28px;
  border-radius: 18px;
  background:
    linear-gradient(rgba(36, 52, 71, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 52, 71, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 84% 26%, rgba(18, 184, 154, 0.12), transparent 38%);
  background-size: 100% 52px, 56px 100%, auto;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 88%, transparent);
  opacity: 0.9;
  pointer-events: none;
}

.dashboard-chart::after {
  content: "";
  position: absolute;
  left: 5%;
  right: 4%;
  bottom: 36px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(18, 184, 154, 0.16), transparent 70%);
  filter: blur(14px);
  opacity: 0.78;
  transform: rotateX(62deg);
  pointer-events: none;
  animation: premium-chart-glow 22s ease-in-out infinite;
}

.chart-bars {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  gap: 14px;
  height: 228px;
  padding-inline: 12px;
  perspective: 900px;
  transform-style: preserve-3d;
}

.chart-bars span {
  --height: 50%;
  --delay: 0ms;
  --bar-a: rgba(126, 230, 213, 0.54);
  --bar-b: rgba(18, 184, 154, 0.14);
  --cap: rgba(255, 255, 255, 0.92);
  position: relative;
  display: block;
  height: var(--height);
  min-height: 16px;
  border-radius: 18px 18px 10px 10px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.54), transparent 32%, rgba(8, 104, 91, 0.22) 100%),
    radial-gradient(ellipse at 28% 18%, rgba(255, 255, 255, 0.72), transparent 42%),
    linear-gradient(180deg, var(--bar-a), var(--bar-b));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset -10px 0 16px rgba(8, 104, 91, 0.14),
    inset 7px 0 15px rgba(255, 255, 255, 0.22),
    10px 20px 28px rgba(18, 184, 154, 0.13),
    0 2px 0 rgba(255, 255, 255, 0.34);
  filter: drop-shadow(8px 16px 16px rgba(18, 35, 51, 0.055));
  transform: translate3d(0, 16px, -10px) rotateX(12deg) scaleY(0.1);
  transform-origin: bottom;
  animation: premium-bar-loop 22s ease-in-out var(--delay) infinite both;
}

.chart-bars span::before {
  content: "";
  position: absolute;
  left: 2px;
  right: -5px;
  top: -8px;
  height: 16px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 35% 35%, var(--cap), rgba(255, 255, 255, 0.42) 43%, rgba(18, 184, 154, 0.18) 100%);
  box-shadow:
    0 0 20px rgba(18, 184, 154, 0.2),
    inset -6px -2px 9px rgba(8, 104, 91, 0.12);
  transform: skewX(-18deg);
}

.chart-bars span::after {
  content: "";
  position: absolute;
  top: 5px;
  right: -8px;
  bottom: 4px;
  width: 10px;
  border-radius: 0 15px 8px 0;
  background: linear-gradient(180deg, rgba(12, 150, 128, 0.30), rgba(8, 104, 91, 0.08));
  filter: blur(0.1px);
  opacity: 0.82;
}

.chart-bars span:nth-child(1) { --height: 28%; --delay: 0ms; }
.chart-bars span:nth-child(2) { --height: 40%; --delay: 140ms; }
.chart-bars span:nth-child(3) { --height: 36%; --delay: 280ms; }
.chart-bars span:nth-child(4) { --height: 55%; --delay: 420ms; }
.chart-bars span:nth-child(5) { --height: 64%; --delay: 560ms; }
.chart-bars span:nth-child(6) { --height: 74%; --delay: 700ms; }
.chart-bars span:nth-child(7) { --height: 100%; --delay: 840ms; --bar-a: rgba(24, 198, 167, 0.82); --bar-b: rgba(18, 184, 154, 0.28); }
.chart-bars span:nth-child(8) { --height: 94%; --delay: 980ms; --bar-a: rgba(24, 198, 167, 0.76); --bar-b: rgba(18, 184, 154, 0.24); }
.chart-bars span:nth-child(9) { --height: 70%; --delay: 1120ms; }
.chart-bars span:nth-child(10) { --height: 58%; --delay: 1260ms; }
.chart-bars span:nth-child(11) { --height: 34%; --delay: 1400ms; }
.chart-bars span:nth-child(12) { --height: 76%; --delay: 1540ms; --bar-a: rgba(24, 198, 167, 0.72); --bar-b: rgba(18, 184, 154, 0.22); }

.chart-bars span:nth-child(7)::before,
.chart-bars span:nth-child(8)::before,
.chart-bars span:nth-child(12)::before {
  box-shadow:
    0 0 24px rgba(18, 184, 154, 0.32),
    inset -5px -2px 8px rgba(8, 104, 91, 0.10);
}

.chart-months {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
  color: #8190a2;
  font-size: 12px;
  font-weight: 650;
  text-align: center;
}

.chart-months span:nth-child(7),
.chart-months span:nth-child(8),
.chart-months span:last-child {
  color: #12b89a;
  font-weight: 850;
}

.dashboard-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid rgba(36, 52, 71, 0.08);
  padding-top: 22px;
}

.dashboard-metrics div {
  min-width: 0;
  border-left: 1px solid rgba(36, 52, 71, 0.08);
  padding: 0 18px;
}

.dashboard-metrics div:first-child {
  border-left: 0;
  padding-left: 0;
}

.dashboard-metrics span,
.dashboard-metrics strong {
  display: block;
}

.dashboard-metrics span {
  color: #7d8a9c;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.dashboard-metrics strong {
  margin-top: 9px;
  color: #243447;
  font-size: 23px;
  font-weight: 760;
  line-height: 1.1;
}

@keyframes premium-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes premium-input-clear {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes premium-card-enter {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96) rotateX(8deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0);
  }
}

@keyframes premium-card-float {
  0%,
  100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: translateY(-8px) rotateX(0.7deg) rotateY(-0.8deg);
  }
}

@keyframes premium-orbit-glow {
  0%,
  100% {
    opacity: 0.52;
    transform: translate3d(0, 0, -80px) scale(0.96);
  }
  48% {
    opacity: 0.86;
    transform: translate3d(-24px, -16px, -80px) scale(1.08);
  }
}

@keyframes premium-card-sheen {
  0%,
  34% {
    opacity: 0;
    transform: translateX(-42%);
  }
  54% {
    opacity: 0.72;
    transform: translateX(22%);
  }
  82%,
  100% {
    opacity: 0;
    transform: translateX(48%);
  }
}

@keyframes premium-grid-drift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 76px 76px, 76px 76px;
  }
}

@keyframes premium-radar-drift {
  0%,
  100% {
    opacity: 0.27;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(0.98);
  }
  50% {
    opacity: 0.44;
    transform: translate3d(-18px, -10px, 18px) rotate(10deg) scale(1.04);
  }
}

@keyframes premium-chart-glow {
  0%,
  100% {
    opacity: 0.22;
    transform: rotateX(62deg) scaleX(0.72);
  }
  62%,
  86% {
    opacity: 0.92;
    transform: rotateX(62deg) scaleX(1);
  }
}

@keyframes premium-cta-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow:
      0 30px 82px rgba(18, 35, 51, 0.10),
      0 18px 42px rgba(18, 184, 154, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.84);
  }
  48% {
    transform: translateY(-3px) scale(1.016);
    border-color: rgba(18, 184, 154, 0.34);
    box-shadow:
      0 0 0 7px rgba(18, 184, 154, 0.07),
      0 34px 90px rgba(18, 35, 51, 0.11),
      0 22px 48px rgba(18, 184, 154, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }
}

@keyframes premium-cta-sheen {
  0%,
  38% {
    opacity: 0;
    transform: translateX(-42%);
  }
  54% {
    opacity: 0.8;
    transform: translateX(18%);
  }
  76%,
  100% {
    opacity: 0;
    transform: translateX(46%);
  }
}

@keyframes premium-cta-glow {
  0%,
  100% {
    opacity: 0.48;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

@keyframes premium-arrow-nudge {
  0%,
  70%,
  100% {
    transform: translateX(0);
  }
  78% {
    transform: translateX(4px);
  }
  86% {
    transform: translateX(0);
  }
}

@keyframes premium-arrow-ring {
  0%,
  60%,
  100% {
    opacity: 0;
    transform: scale(0.78);
  }
  72% {
    opacity: 0.82;
    transform: scale(1);
  }
  88% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@keyframes premium-badge-pulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 18px 40px rgba(18, 35, 51, 0.06);
  }
  8%,
  16% {
    transform: translateY(-2px);
    box-shadow:
      0 0 0 7px rgba(18, 184, 154, 0.08),
      0 18px 40px rgba(18, 35, 51, 0.08);
  }
}

@keyframes premium-bar-loop {
  0% {
    opacity: 0.18;
    transform: translate3d(0, 16px, -10px) rotateX(12deg) scaleY(0.1);
  }
  16% {
    opacity: 0.52;
    transform: translate3d(0, 12px, -6px) rotateX(9deg) scaleY(0.34);
  }
  44% {
    opacity: 0.86;
    transform: translate3d(0, 5px, 8px) rotateX(4deg) scaleY(0.74);
  }
  66%,
  88% {
    opacity: 1;
    transform: translate3d(0, 0, 18px) rotateX(0deg) scaleY(1);
  }
  96%,
  100% {
    opacity: 0.18;
    transform: translate3d(0, 16px, -10px) rotateX(12deg) scaleY(0.1);
  }
}

@media (max-width: 1120px) {
  .premium-site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .premium-brand-title {
    justify-self: center;
    font-size: 34px;
  }

  .premium-brand-title::before,
  .premium-brand-title::after {
    width: 72px;
  }

  .premium-nav {
    grid-column: auto;
    justify-content: flex-end;
    padding-top: 0;
  }

  body.public-home .premium-landing {
    grid-template-columns: 1fr !important;
    align-items: start !important;
    align-content: start !important;
    width: min(720px, calc(100% - 48px)) !important;
    gap: 54px !important;
    padding-top: 54px !important;
  }

  .premium-copy {
    max-width: none;
  }

  .premium-dashboard-card {
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .premium-site-header {
    width: min(100% - 32px, 560px);
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
    padding-top: 28px;
  }

  .premium-brand-title {
    justify-self: start;
    padding: 4px 0 8px;
    font-size: 26px;
  }

  .premium-brand-title .brand-calculator {
    margin-top: 9px;
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  .premium-brand-title::before,
  .premium-brand-title::after {
    display: none;
  }

  .premium-nav {
    justify-content: flex-end;
    overflow: visible;
    padding: 0;
    font-size: 13px;
  }

  .premium-login-link {
    padding: 11px 16px;
  }

  body.public-home .premium-landing {
    width: min(100% - 32px, 560px) !important;
    min-height: auto !important;
    gap: 40px !important;
    padding: 42px 0 56px !important;
  }

  .premium-copy h1 {
    font-size: 44px;
    line-height: 1.08;
  }

  .premium-lead {
    font-size: 18px;
  }

  .home-income-button {
    gap: 14px;
    min-height: 66px;
    padding: 9px 9px 9px 22px;
  }

  .home-income-label {
    font-size: 15px;
  }

  .home-income-arrow {
    width: 44px;
    height: 44px;
  }

  .home-trust-list {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .home-trust-list div,
  .home-trust-list div:first-child {
    border-left: 0;
    padding: 0;
  }

  .premium-dashboard-card {
    padding: 26px 18px 22px;
  }

  .dashboard-header {
    display: grid;
    gap: 18px;
  }

  .dashboard-badge {
    justify-self: start;
    min-width: 104px;
    height: 64px;
  }

  .dashboard-amount strong {
    font-size: 42px;
  }

  .chart-bars {
    height: 168px;
    gap: 7px;
    padding-inline: 4px;
  }

  .dashboard-metrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .dashboard-metrics div,
  .dashboard-metrics div:first-child {
    border-left: 0;
    padding: 0;
  }
}

@media (max-width: 420px) {
  .premium-copy h1 {
    font-size: 38px;
  }

  .dashboard-amount strong {
    font-size: 36px;
  }

  .chart-months {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-background-grid,
  .premium-copy,
  .home-location-form,
  .home-income-button,
  .home-income-button::before,
  .home-income-button::after,
  .home-income-arrow,
  .home-income-arrow::after,
  .premium-showcase::before,
  .premium-dashboard-card,
  .premium-dashboard-card::before,
  .dashboard-watermark,
  .dashboard-badge,
  .dashboard-chart::after,
  .chart-bars span {
    animation: none !important;
  }

  .home-location-form {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .premium-dashboard-card,
  .premium-dashboard-card:hover {
    opacity: 1;
    transform: none;
  }

  .chart-bars span {
    transform: translate3d(0, 0, 0) rotateX(0deg) scaleY(1);
  }

  .home-income-button::before,
  .home-income-button::after,
  .home-income-arrow::after {
    opacity: 0;
  }
}

.calculator-target {
  display: block;
  position: relative;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

body.public-home:has(#calculator-start:target) #intro-view {
  display: none !important;
}

body.public-home:has(#calculator-start:target) #tool-view,
body.public-home:has(#calculator-start:target) #calculator-panel {
  display: block !important;
}

body.public-home:has(#calculator-start:target) #result,
body.public-home:has(#calculator-start:target) #lead-screen {
  display: none !important;
}

body.public-home:has(#calculator-start:target) .wizard-step {
  display: none;
}

body.public-home:has(#calculator-start:target) .wizard-step.is-active {
  display: block;
}

body.public-home #calculator-form .wizard-step[hidden],
body.public-home #calculator-form .wizard-step:not(.is-active) {
  display: none !important;
}

body.public-home #calculator-form .wizard-step.is-active:not([hidden]) {
  display: block !important;
}

body.public-home[data-public-view="calculator"],
body.public-home[data-public-view="result"],
body.public-home[data-public-view="lead"] {
  background:
    radial-gradient(circle at 10% 10%, rgba(24, 198, 167, 0.13), transparent 32%),
    linear-gradient(135deg, #f7fafb 0%, #eef7f6 100%) !important;
  color: #182333;
}

body.public-home[data-public-view="calculator"] .tool-app,
body.public-home[data-public-view="result"] .tool-app,
body.public-home[data-public-view="lead"] .tool-app {
  position: fixed;
  z-index: 30;
  inset: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(24, 198, 167, 0.13), transparent 32%),
    linear-gradient(135deg, #f7fafb 0%, #eef7f6 100%);
}

body.public-home[data-public-view="calculator"] #tool-view,
body.public-home[data-public-view="result"] #tool-view,
body.public-home[data-public-view="lead"] #tool-view {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
  height: 100%;
  width: 100%;
  padding: clamp(24px, 4vh, 44px) 24px;
  box-sizing: border-box;
  overflow-x: hidden;
}

body.public-home[data-public-view="calculator"] .tool-shell,
body.public-home[data-public-view="result"] .tool-shell,
body.public-home[data-public-view="lead"] .tool-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 16px;
  width: min(1040px, 100%);
  max-height: calc(100svh - clamp(48px, 8vh, 88px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  padding: clamp(18px, 2.4vw, 28px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 64px rgba(24, 35, 51, 0.08);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

body.public-home[data-public-view="result"] .tool-shell,
body.public-home[data-public-view="lead"] .tool-shell {
  overflow: auto;
}

body.public-home[data-public-view="calculator"] .calculator-band {
  min-height: 0;
}

body.public-home[data-public-view="calculator"] .public-calculator {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 0;
  max-height: 100%;
  padding: clamp(20px, 2.8vw, 32px);
  border: 1px solid rgba(18, 184, 154, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: none;
  color: #182333;
  overflow: hidden;
}

body.public-home[data-public-view="calculator"] .public-calculator::before,
body.public-home[data-public-view="calculator"] .public-calculator::after {
  display: none !important;
}

body.public-home[data-public-view="calculator"] .wizard-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
  gap: 18px;
  align-items: center;
  margin-bottom: clamp(14px, 2vw, 22px);
  padding-bottom: clamp(12px, 1.8vw, 18px);
  border-bottom: 1px solid rgba(24, 35, 51, 0.08);
}

body.public-home[data-public-view="calculator"] .wizard-top h2 {
  margin: 0;
  color: #182333;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1;
}

body.public-home[data-public-view="calculator"] .wizard-top .eyebrow,
body.public-home[data-public-view="calculator"] .question-head::before {
  color: #12b89a;
}

body.public-home[data-public-view="calculator"] .wizard-meter {
  background: rgba(18, 184, 154, 0.12);
}

body.public-home[data-public-view="calculator"] .wizard-meter span {
  background: linear-gradient(90deg, #12b89a, #18c6a7);
}

body.public-home[data-public-view="calculator"] .question-head {
  margin-bottom: clamp(14px, 2vw, 22px);
  padding: 0;
}

body.public-home[data-public-view="calculator"] .question-head::before {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, #12b89a, #18c6a7);
}

body.public-home[data-public-view="calculator"] .question-head h3 {
  margin: 0;
  max-width: 820px;
  color: #182333;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.06;
}

body.public-home[data-public-view="calculator"] #calculator-form .wizard-step.is-active:not([hidden]) {
  min-height: 0;
  overflow-y: auto;
  padding: 0 6px 4px 0;
  scrollbar-width: thin;
}

body.public-home[data-public-view="calculator"] .simple-grid,
body.public-home[data-public-view="calculator"] .form-grid {
  gap: 14px;
}

body.public-home[data-public-view="calculator"] .field,
body.public-home[data-public-view="calculator"] .amenity-grid label,
body.public-home[data-public-view="calculator"] .country-choice-grid label {
  border: 1px solid rgba(24, 35, 51, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
  color: #182333;
}

body.public-home[data-public-view="calculator"] .field {
  padding: 14px 18px;
}

body.public-home[data-public-view="calculator"] .field input,
body.public-home[data-public-view="calculator"] .field select,
body.public-home[data-public-view="calculator"] .field textarea {
  min-height: 50px;
  padding: 12px 16px;
}

body.public-home[data-public-view="calculator"] .place-field {
  position: relative;
  z-index: 8;
  overflow: visible;
}

body.public-home[data-public-view="calculator"] .place-field.is-suggesting {
  z-index: 40;
}

body.public-home[data-public-view="calculator"] .place-input-shell {
  position: relative;
  display: block;
  width: 100%;
}

body.public-home[data-public-view="calculator"] .place-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 60;
  display: grid;
  gap: 5px;
  max-height: min(154px, 28vh);
  overflow: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(18, 184, 154, 0.24);
  border-radius: 16px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 48px rgba(24, 35, 51, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

@media (max-width: 620px) {
  body.public-home[data-public-view="calculator"] .place-suggestions {
    max-height: 132px;
  }
}

body.public-home[data-public-view="calculator"] .place-suggestions[hidden] {
  display: none;
}

body.public-home[data-public-view="calculator"] .place-suggestions button {
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 9px 12px;
  background: rgba(238, 247, 246, 0.72);
}

body.public-home[data-public-view="calculator"] .place-suggestions button:hover,
body.public-home[data-public-view="calculator"] .place-suggestions button:focus {
  border-color: rgba(18, 184, 154, 0.28);
  background: rgba(18, 198, 167, 0.14);
}

body.public-home[data-public-view="calculator"] .field-hint,
body.public-home[data-public-view="calculator"] .model-assumption span {
  font-size: 12px;
  line-height: 1.45;
}

body.public-home[data-public-view="calculator"] .model-assumption {
  padding: 20px;
}

body.public-home[data-public-view="calculator"] .country-choice-grid label:has(input:checked),
body.public-home[data-public-view="calculator"] .amenity-grid label:has(input:checked) {
  border-color: rgba(18, 184, 154, 0.46);
  background: rgba(238, 247, 246, 0.95);
}

body.public-home[data-public-view="calculator"] .primary-button {
  background: linear-gradient(135deg, #12b89a, #18c6a7);
}

body.public-home[data-public-view="calculator"] .secondary-button {
  background: rgba(255, 255, 255, 0.86);
  color: #182333;
}

body.public-home[data-public-view="calculator"] .wizard-controls {
  position: relative;
  z-index: 2;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(24, 35, 51, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.92));
}

@media (max-width: 760px) {
  body.public-home[data-public-view="calculator"] #tool-view,
  body.public-home[data-public-view="result"] #tool-view,
  body.public-home[data-public-view="lead"] #tool-view {
    padding: 28px 14px 34px;
  }

  body.public-home[data-public-view="calculator"] .wizard-top {
    grid-template-columns: 1fr;
  }

  body.public-home[data-public-view="calculator"] .country-choice-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 820px) and (min-width: 761px) {
  body.public-home[data-public-view="calculator"] #tool-view {
    padding-block: 18px;
  }

  body.public-home[data-public-view="calculator"] .tool-shell {
    max-height: calc(100svh - 36px);
    padding: 18px;
  }

  body.public-home[data-public-view="calculator"] .tool-topbar {
    min-height: 36px;
  }

  body.public-home[data-public-view="calculator"] .public-calculator {
    padding: 20px 24px;
  }

  body.public-home[data-public-view="calculator"] .wizard-top {
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  body.public-home[data-public-view="calculator"] .question-head h3 {
    font-size: clamp(26px, 3vw, 36px);
  }
}

body.public-home[data-public-view="calculator"] .premium-site-header,
body.public-home[data-public-view="result"] .premium-site-header,
body.public-home[data-public-view="lead"] .premium-site-header {
  display: none !important;
}

body.public-home[data-public-view="calculator"] #intro-view,
body.public-home[data-public-view="result"] #intro-view,
body.public-home[data-public-view="lead"] #intro-view {
  display: none !important;
  visibility: hidden !important;
}

body.public-home[data-public-view="intro"] #tool-view,
body.public-home[data-public-view="intro"] #calculator-panel,
body.public-home[data-public-view="intro"] #result,
body.public-home[data-public-view="intro"] #lead-screen {
  display: none !important;
}

body.public-home[data-public-view="intro"] {
  min-height: 100svh;
  overflow: hidden;
}

body.public-home[data-public-view="intro"] .premium-site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 50%;
  right: auto;
  width: min(1240px, calc(100% - 64px));
  margin: 0;
  padding: clamp(54px, 7.2vh, 82px) 0 16px;
  transform: translateX(-50%);
}

body.public-home[data-public-view="intro"] .premium-brand-title {
  font-size: clamp(82px, 7.2vw, 112px);
  gap: 10px;
  padding: 8px 24px 22px;
}

body.public-home[data-public-view="intro"] .premium-brand-title::before,
body.public-home[data-public-view="intro"] .premium-brand-title::after {
  top: 58px;
  width: clamp(150px, 13vw, 220px);
}

body.public-home[data-public-view="intro"] .premium-brand-title .brand-calculator {
  margin-top: 18px;
  font-size: 18px;
  letter-spacing: 0.34em;
}

body.public-home[data-public-view="intro"] .tool-app {
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
}

body.public-home[data-public-view="intro"] .premium-landing {
  height: 100svh !important;
  min-height: 100svh !important;
  align-content: center !important;
  align-items: center !important;
  padding: clamp(212px, 26vh, 270px) 0 clamp(30px, 5vh, 58px) !important;
  box-sizing: border-box;
}

body.public-home[data-public-view="intro"] .premium-copy {
  align-self: center;
}

body.public-home[data-public-view="intro"] .premium-showcase {
  align-self: center;
}

body.public-home[data-public-view="intro"] .premium-dashboard-card {
  margin-left: auto;
}

@media (max-width: 1120px) {
  body.public-home[data-public-view="intro"] .premium-brand-title {
    font-size: clamp(38px, 6vw, 52px);
    padding-inline: 10px;
  }

  body.public-home[data-public-view="intro"] .premium-brand-title::before,
  body.public-home[data-public-view="intro"] .premium-brand-title::after {
    top: 30px;
    width: 82px;
  }

  body.public-home[data-public-view="intro"] .premium-brand-title .brand-calculator {
    margin-top: 12px;
    font-size: 11px;
    letter-spacing: 0.22em;
  }

  body.public-home[data-public-view="intro"] .premium-nav-secondary {
    display: none;
  }

  body.public-home[data-public-view="intro"] {
    overflow-y: auto;
  }

  body.public-home[data-public-view="intro"] .tool-app {
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }

  body.public-home[data-public-view="intro"] .premium-landing {
    height: auto !important;
    min-height: 100svh !important;
    align-content: start !important;
    align-items: start !important;
    padding-top: clamp(138px, 18vh, 164px) !important;
    padding-bottom: 48px !important;
  }

  body.public-home[data-public-view="intro"] .premium-dashboard-card {
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  body.public-home[data-public-view="intro"] .premium-site-header {
    position: absolute;
    width: min(100% - 28px, 560px);
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    padding-top: 16px;
  }

  body.public-home[data-public-view="intro"] .premium-brand-title {
    justify-self: center;
    font-size: clamp(21px, 6vw, 27px);
    text-align: center;
  }

  body.public-home[data-public-view="intro"] .premium-logo {
    width: 34px;
    height: 34px;
  }

  body.public-home[data-public-view="intro"] .premium-login-link {
    padding: 10px 13px;
    font-size: 12px;
  }

  body.public-home[data-public-view="intro"] .premium-landing {
    width: min(100% - 28px, 560px) !important;
    gap: 30px !important;
    padding-top: 96px !important;
    padding-bottom: 34px !important;
  }

  body.public-home[data-public-view="intro"] .premium-copy h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

  body.public-home[data-public-view="intro"] .premium-lead {
    margin-top: 18px;
    font-size: 17px;
  }

  body.public-home[data-public-view="intro"] .home-location-form {
    margin-top: 28px;
    width: 100%;
  }

  body.public-home[data-public-view="intro"] .home-trust-list {
    margin-top: 24px;
  }

  body.public-home[data-public-view="intro"] .premium-dashboard-card {
    width: 100%;
    padding: 22px 16px 18px;
  }

  body.public-home[data-public-view="intro"] .dashboard-chart {
    margin-top: 24px;
    padding-inline: 0;
  }

  body.public-home[data-public-view="intro"] .chart-bars {
    height: 142px;
    gap: 5px;
  }

  body.public-home[data-public-view="intro"] .dashboard-amount strong {
    font-size: clamp(34px, 11vw, 42px);
  }
}

@media (max-width: 420px) {
  body.public-home[data-public-view="intro"] .premium-site-header {
    width: calc(100% - 22px);
    gap: 8px;
  }

  body.public-home[data-public-view="intro"] .premium-brand-title {
    font-size: 20px;
  }

  body.public-home[data-public-view="intro"] .premium-brand-title .brand-calculator {
    font-size: 8px;
    letter-spacing: 0.14em;
  }

  body.public-home[data-public-view="intro"] .premium-login-link {
    padding: 9px 11px;
  }

  body.public-home[data-public-view="intro"] .premium-landing {
    width: calc(100% - 22px) !important;
    padding-top: 88px !important;
  }
}

@media (max-width: 1120px) {
  html.public-document,
  body.public-home[data-public-view="intro"] {
    height: auto !important;
    min-height: 100svh !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }

  body.public-home[data-public-view="intro"] .tool-app,
  body.public-home[data-public-view="intro"] .app-view,
  body.public-home[data-public-view="intro"] .premium-landing {
    height: auto !important;
    overflow: visible !important;
  }
}

/* Premium contact page */
html.premium-contact-document {
  min-height: 100%;
  overflow-x: hidden;
  background: #f7fafb;
}

body.premium-contact-page {
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0) 28rem),
    radial-gradient(circle at 84% 18%, rgba(18, 184, 154, 0.13), rgba(18, 184, 154, 0) 30rem),
    radial-gradient(circle at 72% 88%, rgba(24, 198, 167, 0.10), rgba(24, 198, 167, 0) 32rem),
    linear-gradient(135deg, #f7fafb 0%, #eef7f6 100%);
  color: #182333;
}

body.premium-contact-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(36, 52, 71, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 52, 71, 0.04) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(circle at 70% 34%, #000 0, transparent 48%);
}

body.premium-contact-page::after {
  content: "";
  position: fixed;
  right: 0;
  bottom: -18vh;
  z-index: -1;
  width: min(560px, 70vw);
  height: min(560px, 70vw);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(18, 184, 154, 0.16), transparent 68%);
  filter: blur(24px);
  pointer-events: none;
}

.premium-page-header {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(130px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 24px;
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  padding: 44px 0 18px;
}

.premium-page-home,
.premium-page-nav a {
  color: inherit;
  text-decoration: none;
}

.premium-page-home {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid rgba(36, 52, 71, 0.09);
  border-radius: 999px;
  padding: 0 18px 0 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.28)),
    rgba(255, 255, 255, 0.42);
  box-shadow:
    0 16px 34px rgba(18, 35, 51, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  color: #243447;
  font-size: 15px;
  font-weight: 850;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.premium-page-home:hover,
.premium-page-home:focus-visible {
  border-color: rgba(18, 184, 154, 0.28);
  box-shadow:
    0 0 0 5px rgba(18, 184, 154, 0.07),
    0 18px 38px rgba(18, 35, 51, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  transform: translateY(-1px);
}

.premium-home-mark {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 17px;
  border: 3px solid #0f806f;
  border-top: 0;
  border-radius: 4px 4px 5px 5px;
}

.premium-home-mark::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -8px;
  width: 14px;
  height: 14px;
  border-top: 3px solid #12b89a;
  border-left: 3px solid #12b89a;
  transform: translateX(-50%) rotate(45deg);
}

.premium-home-mark::after {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 0;
  width: 5px;
  height: 8px;
  border-radius: 2px 2px 0 0;
  background: rgba(18, 184, 154, 0.28);
}

.premium-page-brand {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 4px 18px 12px;
  color: #182333;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.8vw, 74px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 18px 38px rgba(18, 35, 51, 0.08);
}

.premium-page-brand::before,
.premium-page-brand::after {
  content: "";
  position: absolute;
  top: 38%;
  width: clamp(70px, 10vw, 160px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(36, 52, 71, 0.18));
}

.premium-page-brand::before {
  right: calc(100% + 20px);
}

.premium-page-brand::after {
  left: calc(100% + 20px);
  background: linear-gradient(90deg, rgba(36, 52, 71, 0.18), transparent);
}

.premium-page-brand > span {
  background: linear-gradient(120deg, #182333 0%, #243447 62%, #0d8f78 128%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.premium-page-brand small {
  color: rgba(11, 143, 120, 0.88);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 840;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.premium-page-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.premium-page-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  min-height: 40px;
  border: 1px solid rgba(36, 52, 71, 0.08);
  border-radius: 999px;
  padding: 0 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.24)),
    rgba(255, 255, 255, 0.34);
  color: rgba(36, 52, 71, 0.74);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
  box-shadow:
    0 12px 28px rgba(18, 35, 51, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.premium-page-nav a::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 999px;
  background: rgba(18, 184, 154, 0.8);
  box-shadow: 0 0 12px rgba(18, 184, 154, 0.22);
  opacity: 0.64;
}

.premium-page-nav a:hover,
.premium-page-nav a:focus-visible,
.premium-page-nav a[aria-current="page"] {
  border-color: rgba(18, 184, 154, 0.24);
  color: #0f806f;
  box-shadow:
    0 0 0 5px rgba(18, 184, 154, 0.06),
    0 14px 32px rgba(18, 35, 51, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transform: translateY(-1px);
}

.premium-contact-main {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(46px, 7vw, 86px) 0 86px;
}

.premium-contact-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(42px, 7vw, 86px);
}

.premium-contact-shell::before {
  content: "";
  position: absolute;
  inset: -34px -34px -34px auto;
  z-index: -1;
  width: min(620px, 56vw);
  border-radius: 28px;
  background:
    radial-gradient(circle at 70% 28%, rgba(18, 184, 154, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.18);
  filter: blur(1px);
}

.premium-contact-copy {
  max-width: 560px;
  animation: premium-copy-in 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(18, 184, 154, 0.18);
  border-radius: 999px;
  padding: 0 16px;
  margin: 0 0 28px;
  background: rgba(255, 255, 255, 0.42);
  color: #0f806f;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.premium-contact-copy h1 {
  max-width: 620px;
  margin: 0;
  color: #182333;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 5vw, 76px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.premium-contact-copy p:not(.contact-kicker) {
  max-width: 540px;
  margin: 28px 0 0;
  color: #6f8094;
  font-size: 20px;
  font-weight: 520;
  line-height: 1.6;
}

.premium-contact-email {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 4px;
  padding: 0 16px;
  border: 1px solid rgba(18, 184, 154, 0.28);
  border-radius: 999px;
  color: #087f6d;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 10px 28px rgba(18, 184, 154, 0.1);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.premium-contact-email:hover,
.premium-contact-email:focus-visible {
  color: #05695c;
  border-color: rgba(18, 184, 154, 0.58);
  background: rgba(255, 255, 255, 0.86);
}

.premium-contact-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(560px, 100%);
  margin-top: 36px;
}

.premium-contact-notes span {
  min-width: 0;
  padding: 0 18px;
  border-left: 1px solid rgba(36, 52, 71, 0.11);
}

.premium-contact-notes span:first-child {
  border-left: 0;
  padding-left: 0;
}

.premium-contact-notes strong,
.premium-contact-notes small {
  display: block;
}

.premium-contact-notes strong {
  color: #243447;
  font-size: 15px;
  font-weight: 850;
}

.premium-contact-notes small {
  margin-top: 5px;
  color: #77869a;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.3;
}

.premium-contact-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 36px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.80), rgba(247, 253, 252, 0.60)),
    rgba(255, 255, 255, 0.68);
  box-shadow:
    0 42px 110px rgba(18, 35, 51, 0.13),
    0 18px 44px rgba(18, 184, 154, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  animation: premium-card-enter 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

.premium-contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 18%, rgba(18, 184, 154, 0.13), transparent 14rem),
    linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.56) 50%, transparent 64% 100%);
  opacity: 0.72;
}

.premium-contact-form > * {
  position: relative;
  z-index: 1;
}

.premium-contact-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: #243447;
  font-size: 13px;
  font-weight: 850;
}

.premium-contact-form .form-wide,
.premium-consent-row,
.premium-contact-submit,
.premium-contact-form .form-status {
  grid-column: 1 / -1;
}

.premium-contact-form input,
.premium-contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(36, 52, 71, 0.12);
  border-radius: 12px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.58);
  color: #182333;
  font: inherit;
  font-weight: 650;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.premium-contact-form textarea {
  min-height: 142px;
  padding: 14px;
  resize: vertical;
}

.premium-contact-form input:focus,
.premium-contact-form textarea:focus {
  border-color: rgba(18, 184, 154, 0.44);
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    0 0 0 5px rgba(18, 184, 154, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.premium-consent-row {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  margin-top: 2px;
  color: #6f8094 !important;
  font-size: 13px !important;
  font-weight: 760 !important;
}

.premium-consent-row input {
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin-top: 1px;
  accent-color: #12b89a;
}

.premium-contact-submit {
  justify-self: end;
  min-width: 190px;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  padding: 0 28px;
  background: linear-gradient(135deg, #12b89a, #18c6a7);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  box-shadow:
    0 18px 36px rgba(18, 184, 154, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.premium-contact-submit:hover,
.premium-contact-submit:focus-visible {
  box-shadow:
    0 0 0 7px rgba(18, 184, 154, 0.10),
    0 22px 42px rgba(18, 184, 154, 0.30);
  filter: saturate(1.04);
  transform: translateY(-1px);
}

.premium-contact-submit:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.premium-contact-form .form-status {
  min-height: 22px;
  margin: 0;
  color: #6f8094;
  font-size: 13px;
  font-weight: 820;
}

.premium-contact-form .form-status[data-state="success"] {
  color: #0f806f;
}

.premium-contact-form .form-status[data-state="error"] {
  color: #a43f2b;
}

@media (max-width: 1120px) {
  .premium-page-header,
  .premium-contact-main {
    width: min(100% - 48px, 760px);
  }

  .premium-page-header {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .premium-page-brand {
    justify-self: center;
    font-size: clamp(34px, 7vw, 58px);
  }

  .premium-page-brand::before,
  .premium-page-brand::after {
    display: none;
  }

  .premium-page-nav {
    grid-column: 1 / -1;
    justify-self: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .premium-contact-shell {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .premium-contact-copy {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .premium-page-header,
  .premium-contact-main {
    width: min(100% - 28px, 560px);
  }

  .premium-page-header {
    gap: 14px;
    padding-top: 24px;
  }

  .premium-page-home {
    min-height: 40px;
    padding-inline: 12px 14px;
  }

  .premium-page-brand {
    justify-self: end;
    font-size: 25px;
    text-align: right;
  }

  .premium-page-brand small {
    font-size: 8px;
    letter-spacing: 0.18em;
  }

  .premium-page-nav {
    justify-self: stretch;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .premium-page-nav a {
    min-width: 0;
    min-height: 38px;
    padding-inline: 10px;
    font-size: 12px;
  }

  .premium-page-nav a::before {
    display: none;
  }

  .premium-contact-main {
    padding-top: 38px;
    padding-bottom: 52px;
  }

  .premium-contact-copy h1 {
    font-size: clamp(39px, 11vw, 50px);
  }

  .premium-contact-copy p:not(.contact-kicker) {
    margin-top: 20px;
    font-size: 17px;
  }

  .premium-contact-notes {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .premium-contact-notes span,
  .premium-contact-notes span:first-child {
    border-left: 0;
    padding: 0;
  }

  .premium-contact-form {
    grid-template-columns: 1fr;
    padding: 22px 16px 20px;
    border-radius: 16px;
  }

  .premium-contact-submit {
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 420px) {
  .premium-page-header,
  .premium-contact-main {
    width: calc(100% - 22px);
  }

  .premium-page-brand {
    font-size: 22px;
  }

  .premium-page-nav {
    grid-template-columns: 1fr;
  }
}

/* Premium about page */
html.premium-static-document {
  min-height: 100%;
  overflow-x: hidden;
  background: #f7fafb;
}

body.premium-about-page {
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0) 28rem),
    radial-gradient(circle at 84% 18%, rgba(18, 184, 154, 0.13), rgba(18, 184, 154, 0) 31rem),
    radial-gradient(circle at 70% 86%, rgba(24, 198, 167, 0.10), rgba(24, 198, 167, 0) 32rem),
    linear-gradient(135deg, #f7fafb 0%, #eef7f6 100%);
  color: #182333;
}

body.premium-about-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(36, 52, 71, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 52, 71, 0.04) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(circle at 70% 34%, #000 0, transparent 48%);
}

body.premium-about-page::after {
  content: "";
  position: fixed;
  right: 0;
  bottom: -18vh;
  z-index: -1;
  width: min(560px, 70vw);
  height: min(560px, 70vw);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(18, 184, 154, 0.15), transparent 68%);
  filter: blur(24px);
  pointer-events: none;
}

.premium-about-main {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(42px, 6.2vw, 76px) 0 74px;
}

.premium-about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

.premium-about-copy {
  max-width: 640px;
  animation: premium-copy-in 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(18, 184, 154, 0.18);
  border-radius: 999px;
  padding: 0 16px;
  margin: 0 0 26px;
  background: rgba(255, 255, 255, 0.44);
  color: #0f806f;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.premium-about-copy h1 {
  margin: 0;
  color: #182333;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 5.1vw, 74px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.premium-about-copy h1 span {
  color: #12b89a;
}

.premium-about-copy p:not(.about-kicker) {
  max-width: 600px;
  margin: 26px 0 0;
  color: #6f8094;
  font-size: 19px;
  font-weight: 520;
  line-height: 1.62;
}

.premium-about-copy p + p {
  margin-top: 14px !important;
}

.premium-about-panel,
.premium-about-cards article,
.premium-about-cta,
.premium-about-trust {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.80), rgba(247, 253, 252, 0.60)),
    rgba(255, 255, 255, 0.68);
  box-shadow:
    0 34px 90px rgba(18, 35, 51, 0.10),
    0 16px 42px rgba(18, 184, 154, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

.premium-about-panel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: clamp(26px, 3vw, 38px);
  animation: premium-card-enter 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

.premium-about-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 14%, rgba(18, 184, 154, 0.15), transparent 14rem),
    linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.58) 50%, transparent 64% 100%);
  opacity: 0.74;
}

.premium-about-panel > * {
  position: relative;
  z-index: 1;
}

.premium-about-panel h2,
.premium-about-cards h2,
.premium-about-cta h2 {
  margin: 0;
  color: #182333;
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.premium-about-panel ul {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.premium-about-panel li {
  display: grid;
  gap: 5px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(36, 52, 71, 0.08);
}

.premium-about-panel li:first-child {
  border-top: 0;
  padding-top: 0;
}

.premium-about-panel strong {
  color: #243447;
  font-size: 16px;
  font-weight: 850;
}

.premium-about-panel span {
  color: #6f8094;
  font-size: 14px;
  font-weight: 620;
  line-height: 1.5;
}

.premium-about-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(34px, 5vw, 62px);
}

.premium-about-cards article {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 18px;
  padding: clamp(24px, 3vw, 34px);
}

.premium-about-cards article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 88% 16%, rgba(18, 184, 154, 0.11), transparent 13rem);
}

.premium-about-cards article > * {
  position: relative;
  z-index: 1;
}

.about-card-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid rgba(18, 184, 154, 0.18);
  border-radius: 999px;
  background: rgba(18, 184, 154, 0.08);
  color: #0f806f;
  font-size: 13px;
  font-weight: 900;
}

.premium-about-cards p:not(.about-kicker),
.premium-about-cards small {
  display: block;
  margin-top: 18px;
  color: #6f8094;
  font-size: 15px;
  font-weight: 620;
  line-height: 1.6;
}

.premium-about-cards small {
  margin-top: 14px;
  color: #46586d;
  font-weight: 780;
}

.premium-about-services {
  margin-top: clamp(42px, 5vw, 64px);
  text-align: center;
}

.premium-about-services h2 {
  position: relative;
  margin: 0 0 34px;
  color: #182333;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 400;
}

.premium-about-services h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #12b89a, transparent);
  transform: translateX(-50%);
}

.premium-service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.premium-service-grid span {
  display: grid;
  justify-items: center;
  gap: 6px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 16px;
  padding: 22px 12px 18px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 18px 44px rgba(18, 35, 51, 0.055);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.premium-service-grid span::before {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 6px;
  border: 1px solid rgba(18, 184, 154, 0.18);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 42%, rgba(18, 184, 154, 0.28), transparent 28%),
    rgba(18, 184, 154, 0.08);
}

.premium-service-grid strong,
.premium-service-grid small {
  display: block;
}

.premium-service-grid strong {
  color: #243447;
  font-size: 13px;
  font-weight: 850;
}

.premium-service-grid small {
  color: #6f8094;
  font-size: 12px;
  font-weight: 650;
}

.premium-about-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: clamp(34px, 5vw, 58px);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 32px);
}

.premium-about-cta .about-kicker {
  margin-bottom: 14px;
}

.premium-about-cta h2 {
  max-width: 760px;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.38;
}

.premium-about-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  min-height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, #12b89a, #18c6a7);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 850;
  box-shadow:
    0 18px 36px rgba(18, 184, 154, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.premium-about-cta a::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-left: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.premium-about-cta a:hover,
.premium-about-cta a:focus-visible {
  box-shadow:
    0 0 0 7px rgba(18, 184, 154, 0.10),
    0 22px 42px rgba(18, 184, 154, 0.30);
  transform: translateY(-1px);
}

.premium-about-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  border-radius: 18px;
  padding: 22px 28px;
}

.premium-about-trust span {
  min-width: 0;
  padding: 0 24px;
  border-left: 1px solid rgba(36, 52, 71, 0.10);
}

.premium-about-trust span:first-child {
  border-left: 0;
  padding-left: 0;
}

.premium-about-trust strong,
.premium-about-trust small {
  display: block;
}

.premium-about-trust strong {
  color: #243447;
  font-size: 14px;
  font-weight: 850;
}

.premium-about-trust small {
  margin-top: 5px;
  color: #6f8094;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

@media (max-width: 1120px) {
  .premium-about-main {
    width: min(100% - 48px, 820px);
  }

  .premium-about-hero,
  .premium-about-cards,
  .premium-about-cta {
    grid-template-columns: 1fr;
  }

  .premium-about-copy {
    max-width: none;
  }

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

@media (max-width: 720px) {
  .premium-about-main {
    width: min(100% - 28px, 560px);
    padding-top: 36px;
    padding-bottom: 52px;
  }

  .premium-about-copy h1 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .premium-about-copy p:not(.about-kicker) {
    font-size: 17px;
  }

  .premium-about-panel,
  .premium-about-cards article,
  .premium-about-cta,
  .premium-about-trust {
    border-radius: 16px;
  }

  .premium-service-grid,
  .premium-about-trust {
    grid-template-columns: 1fr;
  }

  .premium-about-trust {
    gap: 14px;
  }

  .premium-about-trust span,
  .premium-about-trust span:first-child {
    border-left: 0;
    padding: 0;
  }

  .premium-about-cta {
    justify-items: stretch;
  }

  .premium-about-cta a {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .premium-about-main {
    width: calc(100% - 22px);
  }
}

/* Public calculator result comparison refresh */
body.public-home[data-public-view="result"] .tool-app {
  min-height: 100svh;
  background:
    radial-gradient(circle at 18% 12%, rgba(18, 198, 167, 0.14), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(255, 255, 255, 0.72), transparent 26%),
    linear-gradient(135deg, #f7fafb 0%, #eef7f6 46%, #dff3f0 100%);
}

body.public-home[data-public-view="result"] #tool-view {
  align-items: flex-start;
  overflow-y: auto;
  padding-top: clamp(18px, 4vh, 40px);
  padding-bottom: clamp(28px, 6vh, 64px);
}

body.public-home[data-public-view="result"] .tool-shell {
  width: min(1180px, calc(100% - 40px));
  max-height: none !important;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 32px;
  padding: clamp(14px, 2.2vw, 24px);
  overflow: visible;
  background: rgba(255, 255, 255, 0.62);
  color: #182333;
  box-shadow:
    0 34px 90px rgba(24, 35, 51, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

body.public-home[data-public-view="result"] .tool-topbar {
  min-height: 54px;
  padding: 0 4px 16px;
  color: #182333;
}

body.public-home[data-public-view="result"] .tool-topbar strong,
body.public-home[data-public-view="result"] .tool-topbar .eyebrow {
  color: #182333;
}

body.public-home[data-public-view="result"] .tool-home-button {
  border-color: rgba(18, 184, 154, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: #18342f;
  box-shadow: 0 16px 36px rgba(24, 35, 51, 0.08);
}

body.public-home[data-public-view="result"] .public-results {
  display: grid;
  gap: 16px;
  width: 100%;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 28px;
  padding: clamp(16px, 2.4vw, 28px);
  overflow: visible;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.88) 0 62%, rgba(238, 247, 246, 0.88) 62% 100%);
  color: #182333;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body.public-home[data-public-view="result"] .result-premium-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.68fr);
  gap: 16px;
  min-height: 0;
  border: 0;
  border-radius: 26px;
  padding: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

body.public-home[data-public-view="result"] .result-premium-summary::before,
body.public-home[data-public-view="result"] .result-copy-block::after {
  display: none;
}

body.public-home[data-public-view="result"] .result-copy-block,
body.public-home[data-public-view="result"] .result-total-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  box-shadow: 0 22px 58px rgba(24, 35, 51, 0.075);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

body.public-home[data-public-view="result"] .result-copy-block {
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.72);
}

body.public-home[data-public-view="result"] .result-summary-card .eyebrow {
  margin-bottom: 12px;
  color: #0f9f88;
  font-size: 12px;
  letter-spacing: 0.12em;
}

body.public-home[data-public-view="result"] .result-summary-card h2 {
  max-width: 760px;
  margin: 0;
  color: #182333;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 400;
  line-height: 1.02;
}

body.public-home[data-public-view="result"] .result-copy-block > p:not(.eyebrow) {
  max-width: 760px;
  margin: 16px 0 0;
  color: #53697c;
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 650;
  line-height: 1.58;
}

body.public-home[data-public-view="result"] .result-recap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: clamp(18px, 2.6vw, 28px);
}

body.public-home[data-public-view="result"] .result-recap-grid article,
body.public-home[data-public-view="result"] .result-guest-recap article,
body.public-home[data-public-view="result"] .result-model-card {
  min-width: 0;
  border: 1px solid rgba(18, 184, 154, 0.12);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 44px rgba(24, 35, 51, 0.06);
}

body.public-home[data-public-view="result"] .result-recap-grid article {
  border-radius: 18px;
  padding: 14px;
}

body.public-home[data-public-view="result"] .result-recap-grid span,
body.public-home[data-public-view="result"] .result-guest-recap span,
body.public-home[data-public-view="result"] .option-label,
body.public-home[data-public-view="result"] .model-lines b {
  display: block;
  color: #6f8094;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body.public-home[data-public-view="result"] .result-recap-grid strong {
  display: block;
  margin-top: 7px;
  color: #243447;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

body.public-home[data-public-view="result"] .result-total-card {
  display: grid;
  align-content: center;
  gap: 12px;
  margin: 0;
  padding: clamp(24px, 3.4vw, 42px);
  background:
    radial-gradient(circle at 78% 22%, rgba(24, 198, 167, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(15, 76, 67, 0.98), rgba(22, 100, 83, 0.96));
  color: #fff;
}

body.public-home[data-public-view="result"] .result-total-card span,
body.public-home[data-public-view="result"] .result-total-card small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 780;
}

body.public-home[data-public-view="result"] .result-total-card strong {
  color: #fff;
  font-size: clamp(50px, 6vw, 84px);
  line-height: 0.92;
  letter-spacing: 0;
}

body.public-home[data-public-view="result"] .result-guest-recap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

body.public-home[data-public-view="result"] .result-guest-recap article {
  border-radius: 22px;
  padding: 20px;
}

body.public-home[data-public-view="result"] .result-guest-recap strong {
  display: block;
  margin-top: 8px;
  color: #182333;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

body.public-home[data-public-view="result"] .result-guest-recap small {
  display: block;
  margin-top: 10px;
  color: #6f8094;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

body.public-home[data-public-view="result"] .result-guest-recap .is-total {
  border-color: rgba(18, 184, 154, 0.24);
  background: linear-gradient(145deg, rgba(240, 255, 251, 0.9), rgba(255, 255, 255, 0.74));
}

body.public-home[data-public-view="result"] .result-guest-recap .is-total strong {
  color: #12b89a;
}

body.public-home[data-public-view="result"] .result-comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

body.public-home[data-public-view="result"] .result-model-card {
  display: grid;
  align-content: start;
  gap: 0;
  min-height: 0;
  border-radius: 24px;
  padding: clamp(20px, 2.4vw, 28px);
}

body.public-home[data-public-view="result"] .result-model-card strong {
  display: block;
  margin-top: 12px;
  color: #182333;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}

body.public-home[data-public-view="result"] .result-model-card p {
  margin: 12px 0 0;
  color: #52697b;
  font-size: 13px;
  font-weight: 720;
  line-height: 1.48;
}

body.public-home[data-public-view="result"] .result-model-card small {
  display: block;
  margin-top: 14px;
  color: #617387;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.38;
}

body.public-home[data-public-view="result"] .option-mine {
  border-color: rgba(18, 184, 154, 0.26);
  background:
    radial-gradient(circle at 82% 18%, rgba(18, 184, 154, 0.18), transparent 34%),
    rgba(247, 255, 252, 0.82);
}

body.public-home[data-public-view="result"] .option-mine > strong {
  color: #12b89a;
}

body.public-home[data-public-view="result"] .option-traditional {
  border-color: rgba(255, 138, 92, 0.18);
  background: rgba(255, 248, 244, 0.78);
}

body.public-home[data-public-view="result"] .model-lines {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(36, 52, 71, 0.08);
}

body.public-home[data-public-view="result"] .model-lines span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

body.public-home[data-public-view="result"] .model-lines em {
  color: #243447;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  text-align: right;
}

body.public-home[data-public-view="result"] .model-lines .is-total {
  margin-top: 4px;
  border-top: 1px solid rgba(36, 52, 71, 0.1);
  padding-top: 10px;
}

body.public-home[data-public-view="result"] .model-lines .is-total b,
body.public-home[data-public-view="result"] .model-lines .is-total em {
  color: #0f4c43;
  font-size: 14px;
}

body.public-home[data-public-view="result"] .result-benefit-line {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px 22px;
  min-height: 0;
  border: 1px solid rgba(18, 184, 154, 0.24);
  border-radius: 22px;
  padding: clamp(18px, 2.2vw, 24px);
  background:
    linear-gradient(135deg, rgba(18, 184, 154, 0.12), rgba(255, 255, 255, 0.72));
  box-shadow: 0 20px 48px rgba(18, 184, 154, 0.1);
}

body.public-home[data-public-view="result"] .result-benefit-line span,
body.public-home[data-public-view="result"] .result-benefit-line small {
  color: #345468;
  font-weight: 800;
}

body.public-home[data-public-view="result"] .result-benefit-line strong {
  grid-row: span 2;
  color: #12b89a;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  white-space: nowrap;
}

body.public-home[data-public-view="result"] .result-cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 0;
}

body.public-home[data-public-view="result"] .result-cta-row .primary-button,
body.public-home[data-public-view="result"] .result-cta-row .secondary-button {
  min-height: 52px;
  border-radius: 999px;
}

body.public-home[data-public-view="result"] .result-cta-row .primary-button {
  background: linear-gradient(135deg, #12b89a, #18c6a7);
  color: #fff;
  box-shadow: 0 18px 36px rgba(18, 184, 154, 0.22);
}

body.public-home[data-public-view="result"] .result-detail-drawer {
  margin: 0;
  border-color: rgba(18, 184, 154, 0.15);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  overflow: hidden;
}

body.public-home[data-public-view="result"] .result-detail-drawer summary {
  padding: 18px 22px;
  color: #0f4c43;
}

body.public-home[data-public-view="result"] .result-detail-layout {
  padding: 0 22px 22px;
}

@media (max-width: 1020px) {
  body.public-home[data-public-view="result"] .result-premium-summary,
  body.public-home[data-public-view="result"] .result-comparison-grid {
    grid-template-columns: 1fr;
  }

  body.public-home[data-public-view="result"] .result-recap-grid,
  body.public-home[data-public-view="result"] .result-guest-recap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.public-home[data-public-view="result"] .result-guest-recap .is-total {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  body.public-home[data-public-view="result"] .tool-shell {
    width: calc(100% - 22px);
    margin: 16px auto 28px;
    border-radius: 24px;
    padding: 10px;
  }

  body.public-home[data-public-view="result"] .tool-topbar {
    min-height: 48px;
    padding: 0 2px 10px;
  }

  body.public-home[data-public-view="result"] .public-results {
    border-radius: 22px;
    padding: 12px;
  }

  body.public-home[data-public-view="result"] .result-copy-block,
  body.public-home[data-public-view="result"] .result-total-card,
  body.public-home[data-public-view="result"] .result-model-card,
  body.public-home[data-public-view="result"] .result-benefit-line {
    border-radius: 18px;
  }

  body.public-home[data-public-view="result"] .result-summary-card h2 {
    font-size: clamp(30px, 11vw, 44px);
  }

  body.public-home[data-public-view="result"] .result-recap-grid,
  body.public-home[data-public-view="result"] .result-guest-recap {
    grid-template-columns: 1fr;
  }

  body.public-home[data-public-view="result"] .result-guest-recap .is-total {
    grid-column: auto;
  }

  body.public-home[data-public-view="result"] .result-benefit-line {
    grid-template-columns: 1fr;
  }

  body.public-home[data-public-view="result"] .result-benefit-line strong {
    grid-row: auto;
    white-space: normal;
  }

  body.public-home[data-public-view="result"] .result-cta-row {
    flex-direction: column;
  }

  body.public-home[data-public-view="result"] .result-cta-row .primary-button,
  body.public-home[data-public-view="result"] .result-cta-row .secondary-button {
    width: 100%;
  }
}

/* Result report layout inspired by the owner's mockup */
body.public-home[data-public-view="result"] .tool-topbar {
  display: none !important;
}

body.public-home[data-public-view="result"] #tool-view {
  padding: 18px;
  background:
    radial-gradient(circle at 88% 12%, rgba(18, 184, 154, 0.16), transparent 34%),
    linear-gradient(135deg, #f7fafb 0%, #eef7f6 100%);
}

body.public-home[data-public-view="result"] .tool-shell {
  width: min(1280px, calc(100% - 28px));
  border-radius: 18px;
  padding: 0;
  overflow: visible;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 30px 90px rgba(24, 35, 51, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

body.public-home[data-public-view="result"] .result-report {
  gap: clamp(22px, 2.6vw, 34px);
  border-radius: 18px;
  padding: 0 clamp(18px, 3vw, 36px) 26px;
  background:
    radial-gradient(circle at 92% 4%, rgba(18, 184, 154, 0.10), transparent 28%),
    rgba(255, 255, 255, 0.9);
}

body.public-home[data-public-view="result"] .result-report-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-inline: calc(clamp(18px, 3vw, 36px) * -1);
  border-bottom: 1px solid rgba(36, 52, 71, 0.08);
  padding: 18px clamp(18px, 3vw, 36px);
}

body.public-home[data-public-view="result"] .result-report-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #182333;
  text-decoration: none;
}

body.public-home[data-public-view="result"] .result-brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, #0f806f, #0d5b52);
  box-shadow: 0 14px 32px rgba(18, 184, 154, 0.22);
}

body.public-home[data-public-view="result"] .result-brand-mark::before {
  content: "";
  width: 18px;
  height: 15px;
  border-radius: 4px 4px 5px 5px;
  background: #fff;
  clip-path: polygon(50% 0, 100% 38%, 100% 100%, 0 100%, 0 38%);
}

body.public-home[data-public-view="result"] .result-brand-mark::after {
  content: "";
  position: absolute;
  bottom: 10px;
  width: 6px;
  height: 8px;
  border-radius: 3px 3px 0 0;
  background: #0f806f;
}

body.public-home[data-public-view="result"] .result-report-brand strong {
  font-size: 16px;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
}

body.public-home[data-public-view="result"] .result-report-nav nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 4vw, 58px);
}

body.public-home[data-public-view="result"] .result-report-nav nav a {
  position: relative;
  color: #243447;
  font-size: 15px;
  font-weight: 760;
  text-decoration: none;
}

body.public-home[data-public-view="result"] .result-report-nav nav a.is-active,
body.public-home[data-public-view="result"] .result-report-nav nav a:hover {
  color: #0b8a76;
}

body.public-home[data-public-view="result"] .result-report-nav nav a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #12b89a;
  transform: translateX(-50%);
}

body.public-home[data-public-view="result"] .result-report-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  padding-top: clamp(22px, 3.4vw, 44px);
}

body.public-home[data-public-view="result"] .result-report-hero .result-copy-block {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.public-home[data-public-view="result"] .result-report-hero .eyebrow {
  margin-bottom: 18px;
  color: #087967;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

body.public-home[data-public-view="result"] .result-report-hero h2 {
  max-width: 650px;
  color: #182333;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.4vw, 66px);
  font-weight: 400;
  line-height: 0.98;
}

body.public-home[data-public-view="result"] .result-report-hero h2 span {
  color: #0a8e78;
}

body.public-home[data-public-view="result"] .result-report-hero .result-copy-block > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 24px;
  color: #53697c;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 560;
  line-height: 1.62;
}

body.public-home[data-public-view="result"] .result-total-card {
  position: relative;
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: clamp(28px, 3.4vw, 42px);
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 28%, rgba(18, 198, 167, 0.24), transparent 26%),
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.10), transparent 32%),
    linear-gradient(145deg, #07584f 0%, #00483f 58%, #053c38 100%);
  box-shadow:
    0 24px 60px rgba(4, 72, 64, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

body.public-home[data-public-view="result"] .result-total-card > span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body.public-home[data-public-view="result"] .result-total-card > strong {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  color: #fff;
  font-size: clamp(58px, 6vw, 86px);
  font-weight: 850;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

body.public-home[data-public-view="result"] .result-total-card > small {
  position: relative;
  z-index: 1;
  max-width: 340px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 850;
}

body.public-home[data-public-view="result"] .result-delta-badge {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 3vw, 34px);
  top: 48%;
  display: grid;
  gap: 4px;
  width: 96px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 14px;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.public-home[data-public-view="result"] .result-delta-badge b {
  font-size: 17px;
  font-weight: 950;
}

body.public-home[data-public-view="result"] .result-delta-badge span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 780;
  line-height: 1.25;
}

body.public-home[data-public-view="result"] .result-sparkline {
  position: absolute;
  left: 36px;
  right: 28px;
  bottom: 26px;
  width: calc(100% - 64px);
  height: 120px;
  opacity: 0.74;
}

body.public-home[data-public-view="result"] .result-sparkline path {
  fill: none;
  stroke: #61d7c6;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(97, 215, 198, 0.45));
}

body.public-home[data-public-view="result"] .result-sparkline circle {
  fill: #d8fff8;
  filter: drop-shadow(0 0 10px rgba(97, 215, 198, 0.85));
}

body.public-home[data-public-view="result"] .result-recap-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(36, 52, 71, 0.08);
  border-radius: 18px;
  padding: 22px 22px 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 58px rgba(24, 35, 51, 0.08);
}

body.public-home[data-public-view="result"] .result-recap-grid article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 4px 14px;
  border: 0;
  border-left: 1px solid rgba(36, 52, 71, 0.08);
  border-radius: 0;
  padding: 8px 18px;
  background: transparent;
  box-shadow: none;
}

body.public-home[data-public-view="result"] .result-recap-grid article:nth-child(1),
body.public-home[data-public-view="result"] .result-recap-grid article:nth-child(7) {
  border-left: 0;
}

body.public-home[data-public-view="result"] .result-recap-grid article:nth-child(n+7) {
  grid-column: span 2;
  margin-top: 18px;
  border-top: 1px solid rgba(36, 52, 71, 0.08);
  padding-top: 22px;
}

body.public-home[data-public-view="result"] .result-recap-grid i {
  position: relative;
  grid-row: 1 / span 2;
  width: 28px;
  height: 28px;
  color: #078875;
}

body.public-home[data-public-view="result"] .result-recap-grid i::before,
body.public-home[data-public-view="result"] .result-recap-grid i::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

body.public-home[data-public-view="result"] .recap-location i::before {
  inset: 2px 6px 5px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

body.public-home[data-public-view="result"] .recap-location i::after {
  left: 12px;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

body.public-home[data-public-view="result"] .recap-bedrooms i::before {
  left: 2px;
  right: 2px;
  bottom: 7px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

body.public-home[data-public-view="result"] .recap-bedrooms i::after {
  left: 4px;
  bottom: 16px;
  width: 9px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

body.public-home[data-public-view="result"] .recap-bathrooms i::before {
  left: 6px;
  bottom: 5px;
  width: 17px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 0 0 10px 10px;
}

body.public-home[data-public-view="result"] .recap-bathrooms i::after {
  left: 7px;
  top: 2px;
  width: 9px;
  height: 12px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  border-radius: 8px 0 0;
}

body.public-home[data-public-view="result"] .recap-guests i::before {
  left: 3px;
  top: 3px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 13px 0 0 -1px #fff, 13px 0 0 1px currentColor;
}

body.public-home[data-public-view="result"] .recap-guests i::after {
  left: 1px;
  bottom: 4px;
  width: 24px;
  height: 11px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
}

body.public-home[data-public-view="result"] .recap-living i::before {
  inset: 4px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

body.public-home[data-public-view="result"] .recap-living i::after {
  content: "m2";
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: currentColor;
  font-size: 9px;
  font-weight: 950;
}

body.public-home[data-public-view="result"] .recap-outdoor i::before {
  left: 3px;
  right: 3px;
  top: 5px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 0 0;
  border-bottom: 0;
}

body.public-home[data-public-view="result"] .recap-outdoor i::after {
  left: 12px;
  top: 14px;
  width: 2px;
  height: 12px;
  background: currentColor;
}

body.public-home[data-public-view="result"] .recap-occupancy i::before,
body.public-home[data-public-view="result"] .recap-nights i::before,
body.public-home[data-public-view="result"] .recap-average i::before {
  inset: 3px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

body.public-home[data-public-view="result"] .recap-occupancy i::after {
  left: 14px;
  top: 4px;
  width: 2px;
  height: 11px;
  background: currentColor;
  transform-origin: bottom;
  transform: rotate(90deg);
}

body.public-home[data-public-view="result"] .recap-nights i::before {
  border-radius: 5px;
}

body.public-home[data-public-view="result"] .recap-nights i::after {
  left: 6px;
  right: 6px;
  top: 9px;
  border-top: 2px solid currentColor;
}

body.public-home[data-public-view="result"] .recap-average i::before {
  border-radius: 5px;
  transform: rotate(-45deg);
}

body.public-home[data-public-view="result"] .recap-average i::after {
  left: 11px;
  top: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

body.public-home[data-public-view="result"] .result-recap-grid span {
  color: #6f8094;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.public-home[data-public-view="result"] .result-recap-grid strong {
  margin: 0;
  color: #182333;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.35;
}

body.public-home[data-public-view="result"] .result-guest-recap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr) 46px minmax(0, 1fr);
  align-items: center;
  gap: clamp(12px, 2vw, 18px);
}

body.public-home[data-public-view="result"] .result-guest-recap article {
  min-height: 142px;
  border: 1px solid rgba(36, 52, 71, 0.08);
  border-radius: 16px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(24, 35, 51, 0.07);
}

body.public-home[data-public-view="result"] .result-guest-recap .is-total {
  border-color: rgba(18, 184, 154, 0.46);
  background:
    radial-gradient(circle at 88% 12%, rgba(18, 184, 154, 0.14), transparent 34%),
    rgba(243, 255, 252, 0.88);
}

body.public-home[data-public-view="result"] .result-guest-recap .equation-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  justify-self: center;
  border-radius: 999px;
  background: rgba(18, 184, 154, 0.08);
  color: #087967;
  font-size: 19px;
  font-weight: 900;
}

body.public-home[data-public-view="result"] .result-section-heading {
  display: grid;
  gap: 8px;
  margin-top: -2px;
}

body.public-home[data-public-view="result"] .result-section-heading h3 {
  margin: 0;
  color: #182333;
  font-size: 22px;
  font-weight: 900;
}

body.public-home[data-public-view="result"] .result-section-heading p {
  margin: 0;
  color: #52697b;
  font-size: 15px;
  font-weight: 600;
}

body.public-home[data-public-view="result"] .result-comparison-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 34px);
}

body.public-home[data-public-view="result"] .result-model-card {
  position: relative;
  min-height: 310px;
  border-radius: 16px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.78);
}

body.public-home[data-public-view="result"] .result-model-card .model-corner-icon {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(18, 184, 154, 0.10);
}

body.public-home[data-public-view="result"] .result-model-card .model-corner-icon::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

body.public-home[data-public-view="result"] .option-self {
  border-color: rgba(224, 151, 51, 0.36);
}

body.public-home[data-public-view="result"] .option-self .option-label,
body.public-home[data-public-view="result"] .option-self .model-lines .is-total b,
body.public-home[data-public-view="result"] .option-self .model-lines .is-total em {
  color: #c36f10;
}

body.public-home[data-public-view="result"] .option-self .model-corner-icon {
  color: #c36f10;
  background: rgba(224, 151, 51, 0.10);
}

body.public-home[data-public-view="result"] .option-mine {
  border: 2px solid #078875;
  background:
    radial-gradient(circle at 82% 10%, rgba(18, 184, 154, 0.15), transparent 34%),
    rgba(244, 255, 252, 0.92);
}

body.public-home[data-public-view="result"] .option-mine .option-label,
body.public-home[data-public-view="result"] .option-mine .model-lines .is-total b,
body.public-home[data-public-view="result"] .option-mine .model-lines .is-total em {
  color: #087967;
}

body.public-home[data-public-view="result"] .option-mine .model-corner-icon {
  color: #fff;
  background: linear-gradient(145deg, #12b89a, #078875);
}

body.public-home[data-public-view="result"] .option-traditional {
  border-color: rgba(255, 108, 67, 0.44);
  background: rgba(255, 250, 247, 0.9);
}

body.public-home[data-public-view="result"] .option-traditional .option-label,
body.public-home[data-public-view="result"] .option-traditional .model-lines .is-total b,
body.public-home[data-public-view="result"] .option-traditional .model-lines .is-total em {
  color: #d94d25;
}

body.public-home[data-public-view="result"] .option-traditional .model-corner-icon {
  color: #d94d25;
  background: rgba(255, 108, 67, 0.10);
}

body.public-home[data-public-view="result"] .result-model-card > strong {
  margin-top: 14px;
  font-size: clamp(31px, 3.1vw, 44px);
  font-weight: 900;
}

body.public-home[data-public-view="result"] .result-model-card p {
  min-height: 42px;
  margin-top: 10px;
  color: #52697b;
  font-size: 13px;
}

body.public-home[data-public-view="result"] .model-lines {
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid rgba(36, 52, 71, 0.12);
  padding-top: 8px;
}

body.public-home[data-public-view="result"] .model-lines span {
  border-bottom: 1px solid rgba(36, 52, 71, 0.10);
  padding: 9px 0;
}

body.public-home[data-public-view="result"] .model-lines b {
  color: #52697b;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

body.public-home[data-public-view="result"] .model-lines em {
  color: #182333;
  font-size: 13px;
}

body.public-home[data-public-view="result"] .model-lines .is-total {
  margin-top: 14px;
  border-top: 1px solid rgba(36, 52, 71, 0.14);
  border-bottom: 0;
  padding-top: 16px;
}

body.public-home[data-public-view="result"] .model-lines .is-total b,
body.public-home[data-public-view="result"] .model-lines .is-total em {
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
}

body.public-home[data-public-view="result"] .result-model-card small {
  margin-top: 14px;
}

body.public-home[data-public-view="result"] .result-benefit-line {
  grid-column: auto;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 20px;
  border-color: rgba(18, 184, 154, 0.38);
  border-radius: 16px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(239, 255, 251, 0.96), rgba(255, 255, 255, 0.82));
}

body.public-home[data-public-view="result"] .benefit-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(145deg, #12b89a, #087967);
  box-shadow: 0 18px 34px rgba(18, 184, 154, 0.26);
}

body.public-home[data-public-view="result"] .benefit-icon::before {
  content: "";
  width: 19px;
  height: 13px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(-45deg) translate(-1px, 3px);
}

body.public-home[data-public-view="result"] .result-benefit-line div > strong {
  display: block;
  color: #182333;
  font-size: 19px;
  line-height: 1.3;
}

body.public-home[data-public-view="result"] .result-benefit-line div > strong b {
  color: #087967;
}

body.public-home[data-public-view="result"] .result-benefit-line small {
  display: block;
  margin-top: 8px;
  color: #52697b;
  font-size: 14px;
}

body.public-home[data-public-view="result"] .result-benefit-line > strong {
  grid-row: auto;
  color: #087967;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
}

body.public-home[data-public-view="result"] .result-cta-row {
  justify-content: space-between;
  gap: 18px;
}

body.public-home[data-public-view="result"] .result-cta-row .primary-button,
body.public-home[data-public-view="result"] .result-cta-row .secondary-button {
  min-width: min(100%, 390px);
  min-height: 58px;
  border-radius: 10px;
}

body.public-home[data-public-view="result"] .result-cta-row .secondary-button {
  border: 1px solid rgba(36, 52, 71, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: #243447;
}

body.public-home[data-public-view="result"] .result-detail-drawer {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
}

@media (max-width: 1080px) {
  body.public-home[data-public-view="result"] .result-report-hero,
  body.public-home[data-public-view="result"] .result-comparison-grid {
    grid-template-columns: 1fr;
  }

  body.public-home[data-public-view="result"] .result-recap-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.public-home[data-public-view="result"] .result-recap-grid article,
  body.public-home[data-public-view="result"] .result-recap-grid article:nth-child(n+7) {
    grid-column: auto;
    margin-top: 0;
    border-top: 0;
    padding-top: 8px;
  }

  body.public-home[data-public-view="result"] .result-recap-grid article:nth-child(4),
  body.public-home[data-public-view="result"] .result-recap-grid article:nth-child(7) {
    border-left: 0;
  }

  body.public-home[data-public-view="result"] .result-guest-recap {
    grid-template-columns: 1fr;
  }

  body.public-home[data-public-view="result"] .result-guest-recap .equation-mark {
    margin-block: -4px;
  }
}

@media (max-width: 760px) {
  body.public-home[data-public-view="result"] #tool-view {
    padding: 10px;
  }

  body.public-home[data-public-view="result"] .tool-shell {
    width: 100%;
    border-radius: 14px;
  }

  body.public-home[data-public-view="result"] .result-report {
    gap: 20px;
    border-radius: 14px;
    padding: 0 14px 18px;
  }

  body.public-home[data-public-view="result"] .result-report-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-inline: -14px;
    padding: 16px 14px;
  }

  body.public-home[data-public-view="result"] .result-report-nav nav {
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  body.public-home[data-public-view="result"] .result-report-nav nav a {
    flex: 0 0 auto;
    border: 1px solid rgba(18, 184, 154, 0.14);
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.7);
    font-size: 13px;
  }

  body.public-home[data-public-view="result"] .result-report-nav nav a.is-active::after {
    display: none;
  }

  body.public-home[data-public-view="result"] .result-report-hero {
    gap: 18px;
    padding-top: 18px;
  }

  body.public-home[data-public-view="result"] .result-report-hero h2 {
    font-size: clamp(37px, 12vw, 50px);
  }

  body.public-home[data-public-view="result"] .result-total-card {
    min-height: 280px;
  }

  body.public-home[data-public-view="result"] .result-delta-badge {
    right: 18px;
    top: 52%;
  }

  body.public-home[data-public-view="result"] .result-recap-grid {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  body.public-home[data-public-view="result"] .result-recap-grid article,
  body.public-home[data-public-view="result"] .result-recap-grid article:nth-child(4),
  body.public-home[data-public-view="result"] .result-recap-grid article:nth-child(7) {
    border-left: 0;
    border-top: 1px solid rgba(36, 52, 71, 0.08);
    padding: 14px 6px;
  }

  body.public-home[data-public-view="result"] .result-recap-grid article:first-child {
    border-top: 0;
  }

  body.public-home[data-public-view="result"] .result-guest-recap article,
  body.public-home[data-public-view="result"] .result-model-card,
  body.public-home[data-public-view="result"] .result-benefit-line {
    border-radius: 14px;
    padding: 20px;
  }

  body.public-home[data-public-view="result"] .result-benefit-line {
    grid-template-columns: 1fr;
  }

  body.public-home[data-public-view="result"] .result-benefit-line > strong {
    white-space: normal;
  }

  body.public-home[data-public-view="result"] .result-cta-row {
    flex-direction: column;
  }

  body.public-home[data-public-view="result"] .result-cta-row .primary-button,
  body.public-home[data-public-view="result"] .result-cta-row .secondary-button {
    width: 100%;
    min-width: 0;
  }
}

/* Final result clarity pass: no overlap, stronger scenario cards */
body.public-home[data-public-view="result"] .result-total-card {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "label badge"
    "amount badge"
    "caption badge";
  align-content: start;
  column-gap: clamp(18px, 2.4vw, 30px);
  min-height: clamp(310px, 28vw, 350px);
  padding: clamp(28px, 3.2vw, 42px) clamp(24px, 3.2vw, 38px) 132px !important;
}

body.public-home[data-public-view="result"] .result-total-card > span {
  grid-area: label;
  max-width: 250px;
  margin: 0;
  font-size: clamp(12px, 1.1vw, 14px) !important;
  line-height: 1.35;
}

body.public-home[data-public-view="result"] .result-total-card > strong {
  grid-area: amount;
  max-width: 100%;
  margin-top: 22px !important;
  color: #fff;
  font-size: clamp(50px, 5.4vw, 74px) !important;
  line-height: 0.9;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

body.public-home[data-public-view="result"] .result-total-card > small {
  grid-area: caption;
  max-width: 430px !important;
  margin-top: 16px;
  font-size: clamp(14px, 1.25vw, 17px) !important;
  line-height: 1.42;
}

body.public-home[data-public-view="result"] .result-delta-badge {
  grid-area: badge;
  position: relative !important;
  right: auto !important;
  top: auto !important;
  align-self: center;
  width: clamp(108px, 10vw, 128px) !important;
  min-height: 92px;
  padding: 15px 13px !important;
}

body.public-home[data-public-view="result"] .result-delta-badge b {
  font-size: clamp(18px, 1.7vw, 24px) !important;
}

body.public-home[data-public-view="result"] .result-delta-badge span {
  font-size: 12px !important;
  line-height: 1.22;
}

body.public-home[data-public-view="result"] .result-sparkline {
  left: clamp(26px, 3vw, 38px) !important;
  right: clamp(26px, 3vw, 38px) !important;
  bottom: 24px !important;
  width: calc(100% - clamp(52px, 6vw, 76px)) !important;
  height: 116px !important;
  opacity: 0.7;
}

body.public-home[data-public-view="result"] .result-section-heading {
  margin-top: 8px;
  gap: 6px;
}

body.public-home[data-public-view="result"] .result-section-heading h3 {
  font-size: clamp(28px, 2.5vw, 38px) !important;
  letter-spacing: -0.035em;
}

body.public-home[data-public-view="result"] .result-comparison-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2.2vw, 26px) !important;
  align-items: stretch !important;
}

body.public-home[data-public-view="result"] .result-model-card {
  --scenario-accent: #0f8d79;
  --scenario-accent-soft: rgba(18, 184, 154, 0.12);
  --scenario-border: rgba(18, 184, 154, 0.26);
  display: flex !important;
  flex-direction: column;
  min-width: 0;
  min-height: 460px !important;
  grid-column: auto !important;
  border: 1px solid var(--scenario-border) !important;
  border-radius: 24px !important;
  padding: 26px 26px 24px !important;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 10%, var(--scenario-accent-soft), transparent 34%),
    rgba(255, 255, 255, 0.86) !important;
  box-shadow: 0 22px 54px rgba(24, 35, 51, 0.08);
}

body.public-home[data-public-view="result"] .result-model-card::before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--scenario-accent), transparent);
  opacity: 0.82;
}

body.public-home[data-public-view="result"] .option-self {
  --scenario-accent: #c87412;
  --scenario-accent-soft: rgba(232, 151, 38, 0.13);
  --scenario-border: rgba(232, 151, 38, 0.32);
  display: flex !important;
}

body.public-home[data-public-view="result"] .option-mine {
  --scenario-accent: #0a957f;
  --scenario-accent-soft: rgba(18, 184, 154, 0.18);
  --scenario-border: rgba(10, 149, 127, 0.62);
  border-width: 2px !important;
  background:
    radial-gradient(circle at 88% 8%, rgba(18, 184, 154, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(235, 255, 250, 0.94), rgba(255, 255, 255, 0.9)) !important;
  box-shadow: 0 26px 70px rgba(18, 184, 154, 0.14);
}

body.public-home[data-public-view="result"] .option-traditional {
  --scenario-accent: #df5428;
  --scenario-accent-soft: rgba(255, 108, 67, 0.12);
  --scenario-border: rgba(255, 108, 67, 0.36);
}

body.public-home[data-public-view="result"] .option-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--scenario-accent-soft);
  color: var(--scenario-accent) !important;
  font-size: 11px !important;
  font-weight: 950 !important;
  letter-spacing: 0.08em;
}

body.public-home[data-public-view="result"] .result-model-card .model-corner-icon {
  top: 24px !important;
  right: 24px !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 16px !important;
  color: var(--scenario-accent) !important;
  background: var(--scenario-accent-soft) !important;
}

body.public-home[data-public-view="result"] .option-mine .model-corner-icon {
  color: #fff !important;
  background: linear-gradient(145deg, #18c6a7, #078875) !important;
}

body.public-home[data-public-view="result"] .result-model-card > strong {
  margin-top: 20px !important;
  color: #182333 !important;
  font-size: clamp(38px, 3.6vw, 56px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.055em;
}

body.public-home[data-public-view="result"] .option-mine > strong {
  color: #0a957f !important;
}

body.public-home[data-public-view="result"] .result-model-card p {
  min-height: 0 !important;
  margin: 14px 0 0 !important;
  color: #50657a !important;
  font-size: 14px !important;
  font-weight: 720 !important;
  line-height: 1.5 !important;
}

body.public-home[data-public-view="result"] .model-lines {
  display: grid !important;
  gap: 0 !important;
  margin-top: 22px !important;
  border-top: 1px solid rgba(36, 52, 71, 0.10) !important;
  padding-top: 8px !important;
}

body.public-home[data-public-view="result"] .model-lines span {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) max-content !important;
  gap: 14px;
  align-items: baseline;
  border-bottom: 1px solid rgba(36, 52, 71, 0.08) !important;
  padding: 10px 0 !important;
}

body.public-home[data-public-view="result"] .model-lines b {
  color: #50657a !important;
  font-size: 13px !important;
  font-weight: 820 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body.public-home[data-public-view="result"] .model-lines em {
  color: #182333 !important;
  font-size: 13px !important;
  font-style: normal;
  font-weight: 950 !important;
  text-align: right;
  white-space: nowrap;
}

body.public-home[data-public-view="result"] .model-lines .is-total {
  margin-top: 12px !important;
  border-top: 1px solid rgba(36, 52, 71, 0.14) !important;
  border-bottom: 0 !important;
  padding-top: 16px !important;
}

body.public-home[data-public-view="result"] .model-lines .is-total b,
body.public-home[data-public-view="result"] .model-lines .is-total em {
  color: var(--scenario-accent) !important;
  font-size: 15px !important;
  font-weight: 950 !important;
  text-transform: uppercase !important;
}

body.public-home[data-public-view="result"] .result-model-card small {
  display: block;
  margin-top: auto !important;
  padding-top: 18px;
  color: #5f7085 !important;
  font-size: 12px !important;
  font-weight: 780 !important;
  line-height: 1.45;
}

body.public-home[data-public-view="result"] .result-benefit-line {
  display: grid !important;
  grid-template-columns: 64px minmax(0, 1fr) max-content !important;
  align-items: center !important;
  gap: 18px 22px !important;
  border: 1px solid rgba(18, 184, 154, 0.36) !important;
  border-radius: 24px !important;
  padding: 22px 26px !important;
  background:
    radial-gradient(circle at 92% 18%, rgba(18, 184, 154, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(238, 255, 251, 0.98), rgba(255, 255, 255, 0.88)) !important;
  box-shadow: 0 24px 60px rgba(18, 184, 154, 0.12);
}

body.public-home[data-public-view="result"] .result-benefit-line div > strong {
  color: #182333 !important;
  font-size: clamp(19px, 1.8vw, 26px) !important;
  line-height: 1.22;
}

body.public-home[data-public-view="result"] .result-benefit-line div > strong b {
  color: #078875 !important;
}

body.public-home[data-public-view="result"] .result-benefit-line > strong {
  color: #078875 !important;
  font-size: clamp(48px, 5vw, 76px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  body.public-home[data-public-view="result"] .result-total-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "amount"
      "caption"
      "badge";
    padding-bottom: 126px !important;
  }

  body.public-home[data-public-view="result"] .result-delta-badge {
    justify-self: start;
    margin-top: 18px;
  }
}

@media (max-width: 1080px) {
  body.public-home[data-public-view="result"] .result-comparison-grid {
    grid-template-columns: 1fr !important;
  }

  body.public-home[data-public-view="result"] .result-model-card {
    min-height: 0 !important;
    margin-inline: auto !important;
  }
}

@media (max-width: 760px) {
  body.public-home[data-public-view="result"] .result-total-card {
    min-height: 300px !important;
    padding: 24px 20px 112px !important;
  }

  body.public-home[data-public-view="result"] .result-total-card > strong {
    font-size: clamp(43px, 14vw, 58px) !important;
  }

  body.public-home[data-public-view="result"] .result-benefit-line {
    grid-template-columns: 1fr !important;
  }

  body.public-home[data-public-view="result"] .result-benefit-line > strong {
    white-space: normal !important;
  }
}

/* Final result polish: keep the hero amount and comparison cards calm at every width */
body.public-home[data-public-view="result"] .result-total-card {
  grid-template-columns: minmax(0, 1fr) clamp(96px, 9vw, 122px) !important;
  grid-template-areas:
    "label badge"
    "amount amount"
    "caption caption" !important;
  row-gap: 0 !important;
  column-gap: clamp(16px, 2vw, 24px) !important;
  min-height: clamp(320px, 29vw, 370px) !important;
  padding-bottom: 126px !important;
}

body.public-home[data-public-view="result"] .result-total-card > span {
  max-width: 300px !important;
  align-self: start;
}

body.public-home[data-public-view="result"] .result-total-card > strong {
  width: 100%;
  margin-top: clamp(20px, 2.8vw, 32px) !important;
  font-size: clamp(48px, 5vw, 68px) !important;
  text-wrap: nowrap;
}

body.public-home[data-public-view="result"] .result-total-card > small {
  max-width: 100% !important;
  margin-top: 12px !important;
}

body.public-home[data-public-view="result"] .result-delta-badge {
  justify-self: end;
  align-self: start;
  width: clamp(96px, 9vw, 122px) !important;
  min-height: 84px !important;
}

body.public-home[data-public-view="result"] .result-options-grid.result-comparison-grid {
  grid-auto-flow: row !important;
  grid-auto-columns: auto !important;
}

body.public-home[data-public-view="result"] .result-options-grid.result-comparison-grid > .result-model-card {
  grid-column: auto !important;
  grid-row: auto !important;
  width: auto !important;
  max-width: none !important;
}

body.public-home[data-public-view="result"] .result-model-card {
  min-height: 485px !important;
}

body.public-home[data-public-view="result"] .result-model-card p {
  min-height: 64px !important;
}

body.public-home[data-public-view="result"] .model-lines {
  margin-top: 18px !important;
}

body.public-home[data-public-view="result"] .result-model-card small {
  min-height: 50px;
}

body.public-home[data-public-view="result"] .result-benefit-line {
  margin-top: clamp(10px, 1.8vw, 20px) !important;
}

@media (max-width: 1180px) {
  body.public-home[data-public-view="result"] .result-total-card {
    grid-template-columns: minmax(0, 1fr) clamp(92px, 18vw, 116px) !important;
    grid-template-areas:
      "label badge"
      "amount amount"
      "caption caption" !important;
  }

  body.public-home[data-public-view="result"] .result-delta-badge {
    margin-top: 0 !important;
    justify-self: end;
  }
}

@media (max-width: 900px) {
  body.public-home[data-public-view="result"] .result-total-card {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "label"
      "amount"
      "caption"
      "badge" !important;
  }

  body.public-home[data-public-view="result"] .result-delta-badge {
    justify-self: start;
    margin-top: 16px !important;
  }
}

/* Public language selector */
.language-control {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 60;
}

.language-control.is-toolbar {
  margin-left: auto;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 74px;
  min-height: 42px;
  border: 1px solid rgba(18, 184, 154, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #182333;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(24, 35, 51, 0.08);
  cursor: pointer;
  backdrop-filter: blur(18px);
}

.language-trigger:hover,
.language-trigger[aria-expanded="true"] {
  border-color: rgba(18, 184, 154, 0.42);
  box-shadow: 0 18px 44px rgba(18, 184, 154, 0.16);
}

.language-flag {
  font-size: 17px;
  line-height: 1;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 220px;
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 70px rgba(24, 35, 51, 0.16);
  backdrop-filter: blur(24px);
}

.language-menu[hidden] {
  display: none;
}

.language-menu button,
.language-gate-options button {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 10px;
  background: transparent;
  color: #182333;
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.language-menu button small {
  color: #12b89a;
  font-size: 11px;
  font-weight: 950;
}

.language-menu button:hover,
.language-menu button.is-active,
.language-gate-options button:hover {
  border-color: rgba(18, 184, 154, 0.22);
  background: rgba(18, 184, 154, 0.08);
}

.language-gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 24%, rgba(18, 184, 154, 0.18), transparent 36%),
    rgba(238, 247, 246, 0.72);
  backdrop-filter: blur(18px);
}

.language-gate-card {
  width: min(620px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 36px 100px rgba(24, 35, 51, 0.18);
}

.language-gate-kicker {
  margin: 0 0 10px;
  color: #078875;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.language-gate-card h2 {
  margin: 0;
  color: #182333;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.language-gate-card > p:not(.language-gate-kicker) {
  max-width: 520px;
  margin: 16px 0 0;
  color: #5f7085;
  font-size: 17px;
  line-height: 1.55;
}

.language-gate-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.language-gate-options button {
  grid-template-columns: 1fr;
  justify-items: center;
  min-height: 116px;
  border-color: rgba(18, 184, 154, 0.16);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.language-gate-options button span {
  font-size: 28px;
}

.language-gate-options button small {
  color: #6f7f90;
  font-size: 12px;
}

@media (max-width: 760px) {
  .language-menu {
    right: auto;
    left: 0;
  }

  .language-control.is-toolbar .language-menu {
    right: 0;
    left: auto;
  }

  .language-gate-options {
    grid-template-columns: 1fr;
  }

  .language-gate-options button {
    grid-template-columns: 34px 1fr auto;
    justify-items: start;
    min-height: 64px;
    text-align: left;
  }
}

/* Multilingual layout guardrails */
.premium-site-header {
  grid-template-columns: 56px minmax(0, 1fr) minmax(0, auto) !important;
  gap: clamp(14px, 2vw, 28px) !important;
  align-items: center !important;
}

.premium-brand-title {
  justify-self: center !important;
  min-width: 0 !important;
  max-width: min(680px, 54vw) !important;
  text-align: center !important;
  white-space: normal !important;
}

.premium-brand-title .brand-wordmark {
  display: block !important;
  max-width: 100% !important;
  overflow-wrap: normal !important;
  white-space: nowrap !important;
}

.premium-nav,
.premium-page-nav,
body.public-home[data-public-view="result"] .result-report-nav nav {
  flex-wrap: wrap !important;
  min-width: 0 !important;
  row-gap: 8px !important;
}

.premium-nav {
  justify-self: end !important;
  max-width: min(450px, 36vw) !important;
}

.premium-nav a,
.premium-page-nav a,
.premium-login-link,
.premium-nav-secondary,
body.public-home[data-public-view="result"] .result-report-nav nav a,
.result-nav-button,
.language-trigger {
  max-width: 100% !important;
  min-width: 0 !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  line-height: 1.15 !important;
}

.premium-nav-secondary,
.premium-login-link,
.premium-page-nav a,
body.public-home[data-public-view="result"] .result-report-nav nav a,
.result-nav-button {
  min-height: 38px !important;
  padding-inline: clamp(10px, 1.1vw, 16px) !important;
}

.language-control {
  flex: 0 0 auto !important;
}

.tool-step-back,
.result-nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(18, 184, 154, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #182333;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(24, 35, 51, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.tool-step-back {
  min-height: 42px;
  padding: 0 16px;
}

.result-nav-button {
  min-height: 38px;
  padding: 0 14px;
}

.tool-step-back:hover,
.tool-step-back:focus-visible,
.result-nav-button:hover,
.result-nav-button:focus-visible {
  border-color: rgba(18, 184, 154, 0.44);
  color: #0b8a76;
  box-shadow: 0 18px 44px rgba(18, 184, 154, 0.13);
}

.tool-step-back[hidden],
.result-nav-button[hidden] {
  display: none !important;
}

body.public-home[data-public-view="calculator"] .tool-topbar {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 10px 14px !important;
}

body.public-home[data-public-view="calculator"] .tool-topbar > div {
  min-width: min(100%, 300px) !important;
  flex: 1 1 320px !important;
}

body.public-home[data-public-view="calculator"] .wizard-controls {
  position: sticky !important;
  bottom: 0 !important;
  z-index: 8 !important;
  display: flex !important;
  justify-content: flex-end !important;
  gap: 12px !important;
  margin-inline: -6px !important;
  padding: 16px 6px 4px !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.98) 42%) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.public-home[data-public-view="result"] .result-report-nav {
  flex-wrap: wrap !important;
}

body.public-home[data-public-view="result"] .result-report-nav nav {
  justify-content: flex-end !important;
  gap: 8px 14px !important;
  max-width: 100% !important;
}

body.public-home[data-public-view="result"] .result-total-card {
  grid-template-columns: minmax(0, 1fr) minmax(90px, auto) !important;
}

body.public-home[data-public-view="result"] .result-total-card > span,
body.public-home[data-public-view="result"] .result-total-card > small,
body.public-home[data-public-view="result"] .result-delta-badge span,
body.public-home[data-public-view="result"] .result-recap-grid article,
body.public-home[data-public-view="result"] .result-guest-recap article,
body.public-home[data-public-view="result"] .result-model-card,
body.public-home[data-public-view="result"] .model-lines span {
  min-width: 0 !important;
  overflow-wrap: anywhere !important;
}

body.public-home[data-public-view="result"] .result-total-card > strong,
body.public-home[data-public-view="result"] #mine-total-sentence {
  max-width: 100% !important;
  overflow-wrap: normal !important;
  white-space: nowrap !important;
  font-size: clamp(44px, 5.1vw, 74px) !important;
}

body.public-home[data-public-view="result"] .result-delta-badge {
  width: auto !important;
  min-width: 92px !important;
  max-width: 132px !important;
}

body.public-home[data-public-view="result"] .result-recap-grid strong,
body.public-home[data-public-view="result"] .result-guest-recap strong,
body.public-home[data-public-view="result"] .result-model-card strong,
body.public-home[data-public-view="result"] .model-lines em {
  overflow-wrap: anywhere !important;
}

@media (max-width: 1260px) {
  .premium-site-header {
    grid-template-columns: 48px minmax(0, 1fr) !important;
    grid-template-areas:
      "logo nav"
      "brand brand" !important;
    row-gap: 18px !important;
    padding-top: 34px !important;
  }

  .premium-logo {
    grid-area: logo;
  }

  .premium-brand-title {
    grid-area: brand;
    max-width: min(760px, 88vw) !important;
  }

  .premium-nav {
    grid-area: nav;
    max-width: none !important;
  }

  .premium-brand-title::before,
  .premium-brand-title::after {
    width: clamp(42px, 12vw, 130px) !important;
  }
}

@media (max-width: 760px) {
  .premium-site-header {
    width: min(100% - 28px, 640px) !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 14px !important;
    padding-top: 22px !important;
  }

  .premium-brand-title {
    font-size: clamp(40px, 13vw, 62px) !important;
  }

  .premium-brand-title::before,
  .premium-brand-title::after {
    display: none !important;
  }

  .premium-nav {
    justify-content: flex-end !important;
    gap: 7px !important;
  }

  .premium-nav-secondary,
  .premium-login-link {
    font-size: 12px !important;
    min-height: 34px !important;
    padding-inline: 10px !important;
  }

  body.public-home[data-public-view="calculator"] .wizard-controls {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  body.public-home[data-public-view="calculator"] .wizard-controls .primary-button,
  body.public-home[data-public-view="calculator"] .wizard-controls .secondary-button {
    width: 100% !important;
  }

  body.public-home[data-public-view="result"] .result-total-card > strong,
  body.public-home[data-public-view="result"] #mine-total-sentence {
    font-size: clamp(40px, 14vw, 58px) !important;
  }
}

/* Hard separation for the public homepage header.
   Browser zoom can create wide-but-short layouts where title and nav collide,
   so the brand always gets its own row. */
body.public-home .premium-site-header {
  grid-template-columns: 48px minmax(0, 1fr) !important;
  grid-template-areas:
    "logo nav"
    "brand brand" !important;
  align-items: center !important;
  gap: clamp(10px, 1.4vw, 18px) clamp(12px, 2vw, 24px) !important;
  padding: clamp(18px, 2vw, 30px) 0 clamp(8px, 1vw, 14px) !important;
}

body.public-home .premium-logo {
  grid-area: logo !important;
  justify-self: start !important;
}

body.public-home .premium-nav {
  grid-area: nav !important;
  justify-self: end !important;
  justify-content: flex-end !important;
  max-width: 100% !important;
}

body.public-home .premium-brand-title {
  grid-area: brand !important;
  justify-self: center !important;
  max-width: min(920px, calc(100vw - 48px)) !important;
  margin-top: clamp(2px, 0.6vw, 8px) !important;
  text-align: center !important;
}

body.public-home .premium-brand-title .brand-wordmark {
  font-size: clamp(58px, 7.4vw, 108px) !important;
}

@media (max-width: 760px) {
  body.public-home .premium-site-header {
    grid-template-columns: 42px minmax(0, 1fr) !important;
    width: min(100% - 28px, 640px) !important;
    padding-top: 18px !important;
  }

  body.public-home .premium-brand-title .brand-wordmark {
    font-size: clamp(40px, 13vw, 64px) !important;
  }
}

/* Official Holiday Rental Calculator brand assets */
body.public-home .premium-site-header {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
  grid-template-areas: ". brand nav" !important;
  width: min(1320px, calc(100% - 56px)) !important;
  padding-top: clamp(26px, 3vw, 44px) !important;
}

.premium-brand-logo {
  grid-area: brand;
  display: inline-flex;
  justify-self: center;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.premium-brand-logo img {
  display: block;
  width: clamp(420px, 48vw, 760px);
  max-width: min(760px, calc(100vw - 48px));
  height: auto;
  filter: drop-shadow(0 22px 34px rgba(18, 35, 51, 0.08));
}

body.public-home .premium-nav {
  grid-area: nav !important;
  justify-self: end !important;
  align-self: center !important;
  max-width: min(100%, 420px) !important;
}

.premium-page-logo-brand {
  color: inherit;
  text-decoration: none;
}

.premium-page-logo-brand::before,
.premium-page-logo-brand::after {
  display: none !important;
}

.premium-page-logo-brand img {
  display: block;
  width: clamp(320px, 36vw, 520px);
  max-width: min(520px, calc(100vw - 48px));
  height: auto;
  filter: drop-shadow(0 14px 24px rgba(18, 35, 51, 0.08));
}

.result-report-brand {
  min-width: 0;
}

.result-brand-logo {
  display: block;
  width: clamp(240px, 28vw, 380px);
  max-width: 100%;
  height: auto;
}

@media (max-width: 1100px) {
  body.public-home .premium-site-header {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "brand"
      "nav" !important;
    justify-items: center !important;
    gap: 12px !important;
    width: min(100% - 32px, 820px) !important;
    padding-top: 18px !important;
  }

  body.public-home .premium-nav {
    justify-self: center !important;
    justify-content: center !important;
    max-width: 100% !important;
  }

  .premium-brand-logo img {
    width: min(86vw, 620px);
  }
}

@media (max-width: 640px) {
  .premium-brand-logo img {
    width: min(92vw, 460px);
  }

  .premium-page-logo-brand img {
    width: min(62vw, 340px);
  }

  .result-brand-logo {
    width: min(78vw, 320px);
  }
}

/* Subpage home button: roof mark above Home text */
.premium-page-home {
  display: inline-grid !important;
  justify-items: center !important;
  align-content: center !important;
  gap: 3px !important;
  min-width: 90px !important;
  min-height: 66px !important;
  border-radius: 24px !important;
  padding: 8px 16px 10px !important;
  line-height: 1 !important;
}

.premium-page-home > span:not(.premium-home-mark) {
  display: block;
  line-height: 1;
}

.premium-home-mark {
  position: relative !important;
  display: block !important;
  width: 36px !important;
  height: 24px !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.premium-home-mark::before {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 1px !important;
  width: 23px !important;
  height: 23px !important;
  border-top: 4px solid #18a99f !important;
  border-left: 4px solid #18a99f !important;
  border-radius: 3px 0 0 0 !important;
  transform: translateX(-50%) rotate(45deg) !important;
  background: transparent !important;
}

.premium-home-mark::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 16px !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 999px !important;
  background: #18a99f !important;
  transform: translateX(-50%) !important;
  box-shadow: 0 0 18px rgba(18, 184, 154, 0.26) !important;
}

@media (max-width: 1120px) {
  .premium-page-logo-brand img {
    width: min(56vw, 440px);
  }
}

@media (max-width: 720px) {
  .premium-page-home {
    min-width: 78px !important;
    min-height: 60px !important;
    padding: 7px 12px 9px !important;
  }

  .premium-page-logo-brand {
    justify-self: end !important;
  }

  .premium-page-logo-brand img {
    width: min(58vw, 300px);
  }
}

/* Final public header polish: balanced logo, calm pills, consistent Home button */
@media (min-width: 921px) {
  body.public-home[data-public-view="intro"] .premium-site-header,
  body.public-home .premium-site-header {
    grid-template-columns: minmax(220px, 1fr) auto minmax(360px, 1fr) !important;
    grid-template-areas: ". brand nav" !important;
    column-gap: clamp(32px, 5vw, 82px) !important;
    width: min(1300px, calc(100% - 72px)) !important;
    padding-top: clamp(34px, 4.5vh, 62px) !important;
  }

  body.public-home .premium-brand-logo img {
    width: clamp(520px, 40vw, 680px) !important;
    max-width: 680px !important;
  }

  body.public-home .premium-nav,
  .premium-page-nav,
  body.public-home[data-public-view="result"] .result-report-nav nav {
    flex-wrap: nowrap !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    max-width: none !important;
  }

  .premium-page-header {
    grid-template-columns: minmax(130px, 1fr) auto minmax(360px, 1fr) !important;
    column-gap: clamp(34px, 5vw, 92px) !important;
    width: min(1300px, calc(100% - 72px)) !important;
    padding-top: clamp(48px, 6vh, 76px) !important;
  }

  .premium-page-logo-brand img {
    width: clamp(420px, 34vw, 560px) !important;
    max-width: 560px !important;
  }
}

.premium-nav-secondary,
.premium-login-link,
.premium-page-nav a,
body.public-home[data-public-view="result"] .result-report-nav nav a,
.result-nav-button,
.language-trigger {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 42px !important;
  min-height: 42px !important;
  border-radius: 999px !important;
  padding: 0 16px !important;
  border-color: rgba(18, 184, 154, 0.14) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48)),
    rgba(255, 255, 255, 0.6) !important;
  box-shadow:
    0 14px 34px rgba(18, 35, 51, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.82) !important;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  line-height: 1 !important;
}

.premium-nav-secondary::before,
.premium-page-nav a::before,
body.public-home[data-public-view="result"] .result-report-nav nav a::before {
  display: none !important;
}

.premium-nav-secondary:hover,
.premium-login-link:hover,
.premium-page-nav a:hover,
.premium-page-nav a:focus-visible,
body.public-home[data-public-view="result"] .result-report-nav nav a:hover,
.result-nav-button:hover,
.language-trigger:hover {
  border-color: rgba(18, 184, 154, 0.34) !important;
  box-shadow:
    0 18px 42px rgba(18, 184, 154, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.88) !important;
  transform: translateY(-1px);
}

.premium-page-home,
.tool-home-button {
  display: inline-grid !important;
  grid-template-rows: 28px auto !important;
  justify-items: center !important;
  align-content: center !important;
  gap: 2px !important;
  min-width: 92px !important;
  min-height: 70px !important;
  border: 1px solid rgba(18, 184, 154, 0.16) !important;
  border-radius: 24px !important;
  padding: 8px 16px 10px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.88), rgba(255,255,255,0.5)),
    rgba(255,255,255,0.62) !important;
  color: #182333 !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  box-shadow:
    0 18px 42px rgba(18, 35, 51, 0.07),
    inset 0 1px 0 rgba(255,255,255,0.86) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.premium-home-mark,
.tool-home-button .home-glyph {
  position: relative !important;
  display: block !important;
  width: 38px !important;
  height: 28px !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.premium-home-mark::before,
.tool-home-button .home-glyph::before {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 1px !important;
  width: 24px !important;
  height: 24px !important;
  border-top: 4px solid #18a99f !important;
  border-left: 4px solid #18a99f !important;
  border-radius: 3px 0 0 0 !important;
  background: transparent !important;
  transform: translateX(-50%) rotate(45deg) !important;
}

.premium-home-mark::after,
.tool-home-button .home-glyph::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 17px !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 999px !important;
  background: #18a99f !important;
  transform: translateX(-50%) !important;
  box-shadow: 0 0 18px rgba(18, 184, 154, 0.28) !important;
}

body.public-home[data-public-view="calculator"] .tool-topbar,
body.public-home[data-public-view="lead"] .tool-topbar {
  display: grid !important;
  grid-template-columns: auto auto minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 0 2px 16px !important;
}

body.public-home[data-public-view="calculator"] .tool-topbar > div:not(.language-control),
body.public-home[data-public-view="lead"] .tool-topbar > div:not(.language-control) {
  grid-column: 3 !important;
  min-width: 0 !important;
  justify-self: start !important;
}

body.public-home[data-public-view="calculator"] .tool-topbar .language-control.is-toolbar,
body.public-home[data-public-view="lead"] .tool-topbar .language-control.is-toolbar {
  grid-column: 4 !important;
  justify-self: end !important;
  margin-left: 0 !important;
}

body.public-home[data-public-view="calculator"] .tool-step-back,
body.public-home[data-public-view="lead"] .tool-step-back {
  min-height: 44px !important;
  padding-inline: 18px !important;
}

@media (max-width: 920px) {
  body.public-home .premium-site-header,
  .premium-page-header {
    width: min(100% - 32px, 760px) !important;
  }

  body.public-home .premium-brand-logo img {
    width: min(82vw, 560px) !important;
  }

  .premium-page-logo-brand img {
    width: min(56vw, 400px) !important;
  }
}

@media (max-width: 720px) {
  .premium-page-header {
    grid-template-columns: auto minmax(0, 1fr) !important;
    gap: 12px 14px !important;
    padding-top: 22px !important;
  }

  .premium-page-logo-brand {
    justify-self: end !important;
  }

  .premium-page-logo-brand img {
    width: min(57vw, 300px) !important;
  }

  .premium-page-home,
  .tool-home-button {
    min-width: 78px !important;
    min-height: 62px !important;
    padding: 7px 12px 9px !important;
    font-size: 13px !important;
  }

  body.public-home[data-public-view="calculator"] .tool-topbar,
  body.public-home[data-public-view="lead"] .tool-topbar {
    grid-template-columns: auto 1fr auto !important;
    gap: 10px !important;
  }

  body.public-home[data-public-view="calculator"] .tool-step-back,
  body.public-home[data-public-view="lead"] .tool-step-back {
    grid-column: 2 !important;
    justify-self: start !important;
  }

  body.public-home[data-public-view="calculator"] .tool-topbar > div:not(.language-control),
  body.public-home[data-public-view="lead"] .tool-topbar > div:not(.language-control) {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
  }

  body.public-home[data-public-view="calculator"] .tool-topbar .language-control.is-toolbar,
  body.public-home[data-public-view="lead"] .tool-topbar .language-control.is-toolbar {
    grid-column: 3 !important;
  }
}

/* Logo and nav correction: full logo lockup larger, nav labels never split */
@media (min-width: 921px) {
  body.public-home[data-public-view="intro"] .premium-site-header,
  body.public-home .premium-site-header {
    grid-template-columns: minmax(140px, 1fr) auto minmax(470px, 1fr) !important;
    grid-template-areas: ". brand nav" !important;
    column-gap: clamp(44px, 6vw, 96px) !important;
    width: min(1360px, calc(100% - 72px)) !important;
    padding-top: clamp(30px, 4vh, 54px) !important;
  }

  body.public-home .premium-brand-logo img {
    width: clamp(690px, 54vw, 840px) !important;
    max-width: 840px !important;
  }

  .premium-page-header {
    grid-template-columns: minmax(120px, 1fr) auto minmax(470px, 1fr) !important;
  }

  .premium-page-logo-brand img {
    width: clamp(500px, 40vw, 680px) !important;
    max-width: 680px !important;
  }
}

body.public-home .premium-nav,
.premium-page-nav,
body.public-home[data-public-view="result"] .result-report-nav nav {
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 10px !important;
}

body.public-home .premium-nav {
  justify-self: end !important;
  max-width: none !important;
}

.premium-nav .premium-nav-secondary,
.premium-nav .premium-login-link,
.premium-nav .language-trigger,
.premium-page-nav a,
.premium-page-nav .language-trigger,
body.public-home[data-public-view="result"] .result-report-nav nav a,
body.public-home[data-public-view="result"] .result-report-nav .language-trigger {
  flex: 0 0 auto !important;
  box-sizing: border-box !important;
  height: 44px !important;
  min-height: 44px !important;
  padding: 0 18px !important;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  word-break: keep-all !important;
  text-wrap: nowrap !important;
  line-height: 1 !important;
}

.premium-nav .premium-nav-secondary,
.premium-page-nav a {
  min-width: 104px !important;
}

.premium-nav .premium-login-link,
.premium-page-login {
  min-width: 126px !important;
}

.premium-nav .language-trigger,
.premium-page-nav .language-trigger,
body.public-home[data-public-view="result"] .result-report-nav .language-trigger {
  min-width: 74px !important;
  padding: 0 12px !important;
}

@media (max-width: 920px) {
  body.public-home .premium-brand-logo img {
    width: min(92vw, 680px) !important;
  }

  .premium-page-logo-brand img {
    width: min(62vw, 430px) !important;
  }
}

@media (max-width: 720px) {
  .premium-nav .premium-nav-secondary {
    display: none !important;
  }

  .premium-nav .premium-login-link {
    min-width: 112px !important;
  }

  .premium-page-nav {
    grid-template-columns: 1fr 1fr !important;
  }

  .premium-page-nav a,
  .premium-page-nav .language-trigger {
    min-width: 0 !important;
    width: 100% !important;
  }
}

/* Final brand/header pass: keep the full logo lockup prominent and keep nav text unbroken */
@media (min-width: 921px) {
  body.public-home[data-public-view="intro"] .premium-site-header,
  body.public-home .premium-site-header {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: 40px auto !important;
    grid-template-areas:
      "nav"
      "brand" !important;
    row-gap: 2px !important;
    column-gap: 0 !important;
    justify-items: center !important;
    align-items: start !important;
    width: min(1280px, calc(100% - 72px)) !important;
    min-height: 300px !important;
    padding-top: 22px !important;
    padding-bottom: 18px !important;
    overflow: visible !important;
  }

  body.public-home .premium-brand-logo {
    grid-area: brand !important;
    justify-self: center !important;
    width: auto !important;
    max-width: 100% !important;
  }

  body.public-home .premium-brand-logo img {
    width: clamp(680px, 54vw, 820px) !important;
    max-width: min(820px, 100%) !important;
    height: auto !important;
  }

  body.public-home .premium-nav {
    grid-area: nav !important;
    justify-self: end !important;
    align-self: center !important;
    width: auto !important;
    max-width: 100% !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
  }

  .premium-page-header {
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    grid-template-rows: 52px auto !important;
    grid-template-areas:
      "home . nav"
      "brand brand brand" !important;
    column-gap: clamp(28px, 4vw, 62px) !important;
    row-gap: 6px !important;
    width: min(1280px, calc(100% - 72px)) !important;
    min-height: 238px !important;
    align-items: start !important;
  }

  .premium-page-logo-brand {
    grid-area: brand !important;
    justify-self: center !important;
  }

  .premium-page-home {
    grid-area: home !important;
  }

  .premium-page-nav {
    grid-area: nav !important;
    justify-self: end !important;
    align-self: center !important;
  }

  .premium-page-logo-brand img {
    width: clamp(520px, 42vw, 700px) !important;
    max-width: 700px !important;
    height: auto !important;
  }
}

.premium-nav .premium-nav-secondary,
.premium-nav .premium-login-link,
.premium-nav .language-trigger,
.premium-page-nav a,
.premium-page-nav .language-trigger,
body.public-home[data-public-view="result"] .result-report-nav nav a,
body.public-home[data-public-view="result"] .result-report-nav .language-trigger {
  width: auto !important;
  max-width: none !important;
  min-width: max-content !important;
  height: 44px !important;
  min-height: 44px !important;
  padding: 0 18px !important;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  word-break: keep-all !important;
  text-wrap: nowrap !important;
  line-height: 1 !important;
}

.premium-nav .premium-login-link,
.premium-page-login {
  min-width: max-content !important;
}

.premium-nav .language-trigger,
.premium-page-nav .language-trigger,
body.public-home[data-public-view="result"] .result-report-nav .language-trigger {
  min-width: 72px !important;
  padding: 0 13px !important;
}

@media (max-width: 720px) {
  .premium-nav .premium-login-link,
  .premium-nav .language-trigger {
    min-width: max-content !important;
    width: auto !important;
  }
}

@media (min-width: 921px) {
  body.public-home .premium-landing,
  body.public-home[data-public-view="intro"] .premium-landing {
    align-items: start !important;
    align-content: start !important;
    height: auto !important;
    min-height: max(980px, calc(100svh + 310px)) !important;
    padding-top: 312px !important;
    padding-bottom: 88px !important;
  }

  body.public-home .premium-copy,
  body.public-home .premium-showcase,
  body.public-home[data-public-view="intro"] .premium-copy,
  body.public-home[data-public-view="intro"] .premium-showcase {
    align-self: start !important;
  }

  body.public-home .premium-copy h1 {
    font-size: clamp(52px, 4.4vw, 56px) !important;
    line-height: 1.04 !important;
  }

  body.public-home .premium-lead {
    margin-top: 18px !important;
  }

  body.public-home .home-location-form {
    margin-top: 24px !important;
  }
}

/* FAQ / knowledge page */
.premium-faq-page {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 76% 12%, rgba(18, 184, 154, 0.20), transparent 34%),
    radial-gradient(circle at 22% 82%, rgba(77, 155, 201, 0.13), transparent 36%),
    linear-gradient(120deg, #f7fafb 0%, #eef7f6 100%);
  color: #182333;
}

.premium-faq-main {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(42px, 5vw, 76px) 0 96px;
}

.premium-faq-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.68fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: stretch;
}

.premium-faq-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #182333;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

.premium-faq-copy > p:not(.faq-kicker) {
  max-width: 700px;
  margin: 24px 0 0;
  color: #697b91;
  font-size: clamp(17px, 1.65vw, 21px);
  font-weight: 600;
  line-height: 1.65;
}

.faq-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 22px;
  border: 1px solid rgba(18, 184, 154, 0.24);
  border-radius: 999px;
  padding: 0 18px;
  color: #008b78;
  background: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.premium-faq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.premium-faq-actions a,
.premium-faq-footer > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(135deg, #12b89a, #087b6f);
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 24px 56px rgba(18, 184, 154, 0.20);
}

.premium-faq-actions a + a {
  border: 1px solid rgba(18, 184, 154, 0.20);
  color: #182333;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 38px rgba(24, 35, 51, 0.08);
}

.premium-faq-summary {
  display: grid;
  gap: 14px;
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 30px 70px rgba(24, 35, 51, 0.10);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.premium-faq-summary span {
  display: grid;
  gap: 4px;
  border-bottom: 1px solid rgba(36, 52, 71, 0.08);
  padding-bottom: 14px;
}

.premium-faq-summary span:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.premium-faq-summary strong {
  color: #0b8a76;
  font-size: 32px;
  line-height: 1;
}

.premium-faq-summary small {
  color: #6c7d90;
  font-weight: 800;
  line-height: 1.45;
}

.premium-faq-toolbar {
  margin-top: clamp(40px, 6vw, 72px);
}

.faq-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-category-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  border: 1px solid rgba(18, 184, 154, 0.17);
  border-radius: 999px;
  padding: 0 16px 0 10px;
  background: rgba(255, 255, 255, 0.68);
  color: #243447;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(24, 35, 51, 0.05);
}

.faq-category-tabs button span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #008b78;
  background: rgba(18, 184, 154, 0.10);
  font-size: 11px;
}

.faq-category-tabs button.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #12b89a, #087b6f);
}

.faq-category-tabs button.is-active span {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.premium-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.premium-faq-item {
  border: 1px solid rgba(18, 184, 154, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 58px rgba(24, 35, 51, 0.07);
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.premium-faq-item summary {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

.premium-faq-item summary::-webkit-details-marker {
  display: none;
}

.premium-faq-item summary > .faq-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: #0b8a76;
  background: rgba(18, 184, 154, 0.10);
  font-size: 12px;
  font-weight: 950;
}

.premium-faq-item summary strong {
  min-width: 0;
  color: #182333;
  font-size: 20px;
  line-height: 1.25;
}

.faq-open-hint {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  border: 1px solid rgba(18, 184, 154, 0.18);
  border-radius: 999px;
  padding: 0 12px 0 14px;
  color: #087f70;
  background: rgba(18, 184, 154, 0.07);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.faq-open-hint i {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 220ms ease;
}

.premium-faq-item p {
  margin: 0;
  border-top: 1px solid rgba(36, 52, 71, 0.08);
  padding: 0 22px 22px 78px;
  color: #5f7085;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.7;
}

.premium-faq-item[open] {
  border-color: rgba(18, 184, 154, 0.34);
  background:
    radial-gradient(circle at 90% 8%, rgba(18, 184, 154, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.78);
}

.premium-faq-item[open] .faq-open-hint i {
  transform: rotate(225deg) translateY(-1px);
}

.premium-faq-item summary:focus-visible {
  outline: 3px solid rgba(18, 184, 154, 0.30);
  outline-offset: -3px;
}

.premium-faq-item summary:active {
  background: rgba(18, 184, 154, 0.08);
}

@media (hover: hover) and (pointer: fine) {
  .premium-faq-item:hover {
    border-color: rgba(18, 184, 154, 0.48);
    box-shadow: 0 28px 66px rgba(18, 184, 154, 0.16);
    transform: translateY(-3px);
  }

  .premium-faq-item:hover .faq-open-hint {
    border-color: rgba(18, 184, 154, 0.42);
    color: #fff;
    background: #0b9d89;
    transform: translateX(2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-faq-item,
  .faq-open-hint,
  .faq-open-hint i {
    transition: none;
  }
}

.premium-faq-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
  border: 1px solid rgba(18, 184, 154, 0.20);
  border-radius: 26px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.70);
  box-shadow: 0 28px 66px rgba(24, 35, 51, 0.08);
}

.premium-faq-footer h2 {
  max-width: 720px;
  margin: 0;
  color: #182333;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.premium-faq-footer p:not(.faq-kicker) {
  margin: 12px 0 0;
  color: #68798e;
  font-weight: 650;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .premium-faq-hero,
  .premium-faq-list {
    grid-template-columns: 1fr;
  }

  .premium-faq-summary {
    align-self: stretch;
  }
}

@media (max-width: 680px) {
  .premium-faq-main {
    width: min(100% - 28px, 560px);
    padding-top: 30px;
  }

  .premium-faq-copy h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .faq-category-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .faq-category-tabs button {
    justify-content: flex-start;
    min-width: 0;
    width: 100%;
  }

  .premium-faq-item summary {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 78px;
    padding: 18px;
  }

  .premium-faq-item summary > .faq-number {
    width: 32px;
    height: 32px;
  }

  .faq-open-hint {
    width: 34px;
    min-width: 34px;
    min-height: 34px;
    justify-content: center;
    padding: 0;
  }

  .faq-open-hint > span {
    display: none;
  }

  .premium-faq-item p {
    padding: 0 18px 20px 66px;
  }

  .premium-faq-footer {
    display: grid;
  }

.premium-faq-footer > a {
    width: 100%;
  }
}

/* Seasonal Orbit hero visual */
body.public-home[data-public-view="intro"] .seasonal-orbit-showcase {
  align-self: center;
  width: min(720px, 100%);
  perspective: 1500px;
}

body.public-home[data-public-view="intro"] .seasonal-orbit-showcase::before {
  inset: auto -52px -80px auto;
  width: 460px;
  height: 310px;
  background:
    radial-gradient(ellipse at center, rgba(24, 198, 167, 0.24), transparent 68%);
  filter: blur(22px);
  opacity: 0.74;
}

body.public-home[data-public-view="intro"] .seasonal-orbit-showcase::after {
  inset: 54px auto auto -70px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.84), transparent 66%);
  opacity: 0.5;
}

.seasonal-orbit-card {
  position: relative;
  z-index: 1;
  width: min(690px, 100%);
  margin-left: auto;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 30px;
  padding: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 52% 44%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.48) 35%, rgba(238, 247, 246, 0.42) 62%, rgba(255, 255, 255, 0.66) 100%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(240, 251, 250, 0.58));
  box-shadow:
    0 46px 120px rgba(18, 35, 51, 0.14),
    0 22px 70px rgba(18, 184, 154, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(18, 184, 154, 0.08);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  transform-style: preserve-3d;
  animation:
    orbit-card-resolve 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both,
    orbit-card-breathe 10s ease-in-out 1.4s infinite;
}

.seasonal-orbit-card::before,
.seasonal-orbit-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.seasonal-orbit-card::before {
  inset: 1px;
  background:
    linear-gradient(120deg, transparent 0 30%, rgba(255, 255, 255, 0.54) 44%, transparent 58% 100%),
    radial-gradient(circle at 78% 22%, rgba(24, 198, 167, 0.13), transparent 16rem);
  opacity: 0.68;
  transform: translateX(-38%);
  animation: orbit-card-sheen 16s ease-in-out infinite;
}

.seasonal-orbit-card::after {
  inset: 8%;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(24, 198, 167, 0.12), transparent 55%),
    radial-gradient(circle, rgba(255, 255, 255, 0.62), transparent 68%);
  filter: blur(24px);
  opacity: 0.8;
  transform: translateZ(-36px);
}

.seasonal-orbit-heading {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: clamp(10px, 1.6vw, 18px);
  text-align: center;
}

.seasonal-orbit-heading p {
  margin: 0;
  color: #12b89a;
  font-size: clamp(18px, 2.1vw, 28px);
  font-weight: 900;
  letter-spacing: 0.36em;
  line-height: 1;
  text-transform: uppercase;
}

.seasonal-orbit-heading span {
  color: #6b7c92;
  font-size: clamp(14px, 1.4vw, 19px);
  font-weight: 560;
  line-height: 1.35;
}

.seasonal-orbit-stage {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  isolation: isolate;
  transform-style: preserve-3d;
}

.seasonal-orbit-stage::before {
  content: "";
  position: absolute;
  inset: 16%;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.94) 0 44%, rgba(238, 247, 246, 0.72) 45% 62%, transparent 72%),
    radial-gradient(circle, rgba(18, 184, 154, 0.14), transparent 70%);
  box-shadow:
    inset 0 26px 55px rgba(255, 255, 255, 0.72),
    inset 0 -22px 54px rgba(18, 184, 154, 0.07),
    0 28px 70px rgba(18, 35, 51, 0.08);
}

.orbit-halo {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.orbit-halo-outer {
  inset: 3.4%;
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow:
    0 0 0 1px rgba(18, 184, 154, 0.08),
    0 0 46px rgba(18, 184, 154, 0.12),
    inset 0 0 44px rgba(255, 255, 255, 0.72);
}

.orbit-halo-inner {
  inset: 26%;
  border: 1px solid rgba(36, 52, 71, 0.07);
  box-shadow:
    inset 0 16px 32px rgba(18, 35, 51, 0.06),
    0 0 36px rgba(255, 255, 255, 0.88);
}

.orbit-glow-trail,
.orbit-pulse {
  position: absolute;
  inset: 10.4%;
  border-radius: 999px;
  pointer-events: none;
}

.orbit-glow-trail {
  z-index: 4;
  background:
    conic-gradient(from -90deg, transparent 0 50%, rgba(18, 184, 154, 0.02) 56%, rgba(25, 218, 205, 0.74) 66%, rgba(255, 255, 255, 0.84) 68%, transparent 77% 100%);
  filter: blur(0.2px) drop-shadow(0 0 16px rgba(18, 184, 154, 0.5));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 9px), #000 calc(100% - 8px), #000 calc(100% - 2px), transparent calc(100% - 1px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 9px), #000 calc(100% - 8px), #000 calc(100% - 2px), transparent calc(100% - 1px));
  animation: orbit-spin 22s linear infinite;
}

.orbit-pulse {
  z-index: 7;
  animation: orbit-spin 22s linear infinite;
}

.orbit-pulse::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 35%, #fff 0 22%, #cffff8 34%, #18c6a7 70%, rgba(18, 184, 154, 0) 74%);
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.46),
    0 0 20px rgba(24, 198, 167, 0.88),
    0 0 52px rgba(24, 198, 167, 0.55);
  transform: translateX(-50%);
}

.seasonal-orbit-svg {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 26px 34px rgba(18, 35, 51, 0.10));
  transform: translateZ(22px);
}

.orbit-guide {
  fill: none;
  stroke: rgba(18, 184, 154, 0.10);
  stroke-width: 1.2;
}

.orbit-guide-inner {
  stroke: rgba(36, 52, 71, 0.08);
}

.orbit-segment {
  --segment-fill: rgba(252, 254, 255, 0.96);
  --segment-soft: rgba(255, 255, 255, 0.40);
  --segment-light: rgba(255, 255, 255, 0.18);
  --segment-edge: rgba(255, 255, 255, 0.88);
  --segment-glow: rgba(255, 255, 255, 0.44);
  transform-box: fill-box;
  transform-origin: center;
  animation: orbit-segment-catch 22s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  animation-delay: calc(var(--i) * 1.55s);
}

.orbit-segment.season-mid {
  --segment-fill: rgba(220, 248, 244, 0.92);
  --segment-soft: rgba(255, 255, 255, 0.30);
  --segment-light: rgba(112, 224, 211, 0.20);
  --segment-glow: rgba(126, 230, 213, 0.30);
}

.orbit-segment.season-high {
  --segment-fill: rgba(69, 213, 200, 0.66);
  --segment-soft: rgba(255, 255, 255, 0.24);
  --segment-light: rgba(21, 185, 166, 0.28);
  --segment-edge: rgba(216, 255, 250, 0.86);
  --segment-glow: rgba(24, 198, 167, 0.45);
}

.segment-body {
  fill: var(--segment-fill);
  stroke: var(--segment-edge);
  stroke-width: 1.4;
  filter: url("#orbitSegmentShadow");
}

.segment-facet {
  pointer-events: none;
  stroke: none;
}

.segment-facet-soft {
  fill: var(--segment-soft);
}

.segment-facet-light {
  fill: var(--segment-light);
}

.segment-ridge {
  fill: none;
  stroke: rgba(255, 255, 255, 0.46);
  stroke-width: 1.4;
  stroke-linecap: round;
}

.season-low .segment-ridge {
  stroke: rgba(36, 52, 71, 0.07);
}

.segment-node {
  fill: rgba(255, 255, 255, 0.86);
  stroke: rgba(18, 184, 154, 0.16);
  stroke-width: 1;
  filter: drop-shadow(0 0 10px var(--segment-glow));
}

.orbit-month {
  position: absolute;
  z-index: 6;
  color: #18345b;
  font-size: clamp(11px, 1.1vw, 15px);
  font-weight: 760;
  letter-spacing: 0.01em;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.78);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.orbit-month-jan { left: 50%; top: 8.8%; }
.orbit-month-feb { left: 69.8%; top: 14.3%; }
.orbit-month-mar { left: 84.4%; top: 29.2%; }
.orbit-month-apr { left: 90.3%; top: 50%; }
.orbit-month-may { left: 84.4%; top: 70.8%; color: #078875; }
.orbit-month-jun { left: 69.8%; top: 85.7%; color: #078875; }
.orbit-month-jul { left: 50%; top: 91.5%; color: #078875; }
.orbit-month-aug { left: 30.2%; top: 85.7%; color: #078875; }
.orbit-month-sep { left: 15.6%; top: 70.8%; }
.orbit-month-oct { left: 9.7%; top: 50%; }
.orbit-month-nov { left: 15.6%; top: 29.2%; }
.orbit-month-dec { left: 30.2%; top: 14.3%; }

.orbit-center {
  position: absolute;
  z-index: 8;
  top: 50%;
  left: 50%;
  display: grid;
  justify-items: center;
  width: min(310px, 48%);
  padding: 18px 12px;
  color: #182333;
  text-align: center;
  transform: translate(-50%, -50%);
  animation: orbit-center-resolve 1.1s ease 0.45s both;
}

.orbit-center p {
  margin: 0 0 8px;
  color: #667894;
  font-size: clamp(10px, 1vw, 14px);
  font-weight: 860;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-transform: uppercase;
}

.orbit-center > strong {
  display: block;
  color: #08294c;
  font-size: clamp(42px, 5.3vw, 78px);
  font-weight: 520;
  letter-spacing: 0.02em;
  line-height: 0.95;
  font-family: Georgia, "Times New Roman", serif;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  white-space: nowrap;
  text-shadow: 0 16px 36px rgba(8, 41, 76, 0.09);
}

.orbit-center > span {
  margin-top: 8px;
  color: #4f6178;
  font-size: clamp(12px, 1.25vw, 17px);
  font-weight: 620;
  line-height: 1.1;
}

.orbit-center em {
  display: inline-grid;
  grid-template-columns: 1fr;
  gap: 2px;
  min-width: 124px;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    0 18px 44px rgba(18, 35, 51, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  color: #12b89a;
  font-style: normal;
  animation: orbit-badge-reveal 22s ease-in-out infinite;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.orbit-center em b {
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 880;
}

.orbit-center em small {
  color: #63748c;
  font-size: 12px;
  font-weight: 650;
}

.seasonal-orbit-footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-top: clamp(8px, 1vw, 14px);
}

.orbit-animation-note {
  max-width: 245px;
  color: #64758d;
  font-size: 12px;
  line-height: 1.45;
}

.orbit-animation-note strong {
  display: block;
  margin-bottom: 4px;
  color: #243447;
  font-size: 12px;
  font-weight: 860;
}

.orbit-animation-note strong::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 7px;
  border: 1.5px solid rgba(18, 184, 154, 0.58);
  border-left-color: transparent;
  border-radius: 999px;
  vertical-align: -3px;
}

.orbit-legend {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 18px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow:
    0 14px 34px rgba(18, 35, 51, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  color: #62738b;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.orbit-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.orbit-legend i {
  width: 15px;
  height: 15px;
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 5px 12px rgba(18, 35, 51, 0.10);
}

.orbit-legend b {
  font-size: 12px;
  font-weight: 680;
}

.legend-low {
  background: linear-gradient(145deg, #fff, #edf4f6);
}

.legend-mid {
  background: linear-gradient(145deg, #dff9f5, #9ce7db);
}

.legend-high {
  background: linear-gradient(145deg, #64ded1, #12b89a);
  box-shadow:
    0 0 18px rgba(18, 184, 154, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.62) !important;
}

@keyframes orbit-card-resolve {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(18px) rotateX(5deg) scale(0.965);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) rotateX(0deg) scale(1);
  }
}

@keyframes orbit-card-breathe {
  0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
  50% { transform: translateY(-6px) rotateX(1.2deg) rotateY(-1.3deg); }
}

@keyframes orbit-card-sheen {
  0%, 18% { transform: translateX(-48%); opacity: 0; }
  45% { opacity: 0.62; }
  62%, 100% { transform: translateX(54%); opacity: 0; }
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes orbit-segment-catch {
  0%, 5%, 100% {
    filter: drop-shadow(0 10px 14px rgba(18, 35, 51, 0.05));
    transform: translate3d(0, 0, 0) scale(1);
  }
  2.4% {
    filter:
      drop-shadow(0 16px 22px rgba(18, 35, 51, 0.10))
      drop-shadow(0 0 18px var(--segment-glow));
    transform: translate3d(0, -4px, 18px) scale(1.012);
  }
}

@keyframes orbit-center-resolve {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translate(-50%, -47%) scale(0.96);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes orbit-badge-reveal {
  0%, 46% {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
  }
  54%, 92% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(4px) scale(0.98);
  }
}

@media (max-width: 1080px) {
  body.public-home[data-public-view="intro"] .seasonal-orbit-showcase {
    width: min(720px, 100%);
    justify-self: center;
  }

  .seasonal-orbit-card {
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .seasonal-orbit-card {
    border-radius: 24px;
    padding: 22px 16px;
  }

  .seasonal-orbit-heading p {
    letter-spacing: 0.24em;
  }

  .seasonal-orbit-stage {
    width: min(540px, 100%);
  }

  .orbit-center {
    width: min(260px, 52%);
    padding: 12px 8px;
  }

  .orbit-center em {
    min-width: 104px;
    margin-top: 13px;
    padding: 9px 13px;
  }

  .seasonal-orbit-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .orbit-animation-note {
    max-width: none;
    text-align: center;
  }

  .orbit-legend {
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 11px 10px;
  }

  .orbit-legend span {
    gap: 6px;
  }

  .orbit-legend b {
    font-size: 11px;
  }
}

@media (max-width: 440px) {
  .seasonal-orbit-card {
    padding: 18px 12px;
  }

  .seasonal-orbit-heading {
    gap: 6px;
  }

  .seasonal-orbit-heading p {
    font-size: 16px;
    letter-spacing: 0.18em;
  }

  .seasonal-orbit-heading span {
    font-size: 13px;
  }

  .orbit-month {
    font-size: 10px;
  }

  .orbit-center p {
    font-size: 9px;
  }

  .orbit-center > strong {
    font-size: 34px;
  }

  .orbit-center > span,
  .orbit-center em small {
    font-size: 10px;
  }

  .orbit-center em b {
    font-size: 15px;
  }

  .orbit-animation-note {
    display: none;
  }

  .orbit-legend {
    flex-wrap: wrap;
    border-radius: 16px;
  }
}

@media (max-width: 720px) {
  body.public-home[data-public-view="intro"] .premium-site-header {
    width: min(100% - 32px, 560px) !important;
    min-height: 232px !important;
    padding-top: 24px !important;
    padding-bottom: 18px !important;
    align-items: start !important;
  }

  body.public-home[data-public-view="intro"] .premium-brand-logo {
    justify-self: center !important;
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    margin-top: 6px !important;
  }

  body.public-home[data-public-view="intro"] .premium-brand-logo img {
    width: min(88vw, 420px) !important;
    max-width: 100% !important;
  }

  body.public-home[data-public-view="intro"] .premium-nav {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: start !important;
    gap: 8px !important;
  }

  body.public-home[data-public-view="intro"] .premium-nav .premium-login-link,
  body.public-home[data-public-view="intro"] .premium-nav .language-trigger {
    height: 38px !important;
    min-height: 38px !important;
    padding: 0 13px !important;
    font-size: 12px !important;
  }

  body.public-home[data-public-view="intro"] .premium-nav .language-flag {
    font-size: 14px !important;
  }

  body.public-home[data-public-view="intro"] .premium-landing {
    padding-top: 232px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .seasonal-orbit-card,
  .seasonal-orbit-card::before,
  .orbit-glow-trail,
  .orbit-pulse,
  .orbit-segment,
  .orbit-center,
  .orbit-center em {
    animation: none !important;
  }

  .seasonal-orbit-card,
  .orbit-center,
  .orbit-center em,
  .orbit-segment {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .orbit-center {
    transform: translate(-50%, -50%) !important;
  }
}

/* Seasonal Orbit v2: integrated hero object, not a dashboard card */
body.public-home[data-public-view="intro"] .seasonal-orbit-showcase {
  width: min(760px, 100%) !important;
  justify-self: center !important;
}

body.public-home[data-public-view="intro"] .seasonal-orbit-showcase::before,
body.public-home[data-public-view="intro"] .seasonal-orbit-showcase::after {
  display: none !important;
}

.seasonal-orbit-card {
  width: min(760px, 100%) !important;
  min-height: auto !important;
  margin: 0 auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transform-style: preserve-3d !important;
  animation:
    orbit-object-resolve 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both,
    orbit-object-breathe 12s ease-in-out 1.4s infinite !important;
}

.seasonal-orbit-card::before {
  inset: 7% 0 1% !important;
  border-radius: 999px !important;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.95) 0 34%, rgba(235, 246, 248, 0.64) 48%, rgba(218, 241, 243, 0.30) 60%, transparent 73%),
    radial-gradient(circle at 62% 62%, rgba(18, 184, 154, 0.16), transparent 46%) !important;
  box-shadow:
    inset 0 42px 70px rgba(255, 255, 255, 0.72),
    inset 0 -34px 80px rgba(18, 184, 154, 0.08),
    0 46px 110px rgba(8, 41, 76, 0.12) !important;
  filter: blur(0) !important;
  opacity: 1 !important;
  transform: translateZ(-48px) !important;
  animation: orbit-ambient-glow 11s ease-in-out infinite !important;
}

.seasonal-orbit-card::after {
  inset: auto 4% -5% 8% !important;
  height: 28% !important;
  border-radius: 999px !important;
  background: radial-gradient(ellipse at center, rgba(18, 184, 154, 0.22), transparent 72%) !important;
  filter: blur(22px) !important;
  opacity: 0.8 !important;
  transform: translateZ(-70px) rotateX(68deg) !important;
}

.seasonal-orbit-heading {
  margin-bottom: clamp(-8px, -0.6vw, 0px) !important;
  transform: translateZ(80px);
}

.seasonal-orbit-heading p {
  color: #12b89a !important;
  font-size: clamp(22px, 2.2vw, 31px) !important;
  font-weight: 920 !important;
  letter-spacing: 0.42em !important;
  text-shadow: 0 16px 34px rgba(18, 184, 154, 0.13);
}

.seasonal-orbit-heading span {
  color: #63748c !important;
  font-size: clamp(15px, 1.25vw, 20px) !important;
}

.seasonal-orbit-stage {
  width: min(720px, 100%) !important;
  margin-top: 0 !important;
  transform:
    translateZ(20px)
    rotateX(0deg) !important;
}

.seasonal-orbit-stage::before {
  inset: 18.2% !important;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.98) 0 44%, rgba(239, 248, 249, 0.86) 45% 56%, rgba(229, 242, 245, 0.48) 69%, transparent 72%),
    radial-gradient(circle at 50% 68%, rgba(24, 198, 167, 0.10), transparent 58%) !important;
  box-shadow:
    inset 0 24px 54px rgba(8, 41, 76, 0.06),
    inset 0 -38px 72px rgba(255, 255, 255, 0.74),
    0 22px 54px rgba(8, 41, 76, 0.08) !important;
}

.seasonal-orbit-stage::after {
  content: "";
  position: absolute;
  inset: 10.5%;
  z-index: 5;
  border-radius: 999px;
  pointer-events: none;
  background:
    conic-gradient(from -90deg, transparent 0 30%, rgba(24, 198, 167, 0.08) 32%, rgba(61, 221, 209, 0.72) 42%, rgba(18, 184, 154, 0.98) 56%, rgba(84, 229, 220, 0.66) 69%, transparent 75% 100%);
  filter: drop-shadow(0 0 18px rgba(24, 198, 167, 0.56));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 8px), #000 calc(100% - 7px), #000 calc(100% - 2px), transparent calc(100% - 1px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 8px), #000 calc(100% - 7px), #000 calc(100% - 2px), transparent calc(100% - 1px));
  opacity: 0.78;
  animation: orbit-high-arc-breathe 6.5s ease-in-out infinite;
}

.orbit-halo-outer {
  inset: 4.8% !important;
  border-color: rgba(255, 255, 255, 0.86) !important;
  box-shadow:
    0 0 0 1px rgba(18, 184, 154, 0.09),
    0 0 54px rgba(18, 184, 154, 0.15),
    inset 0 0 46px rgba(255, 255, 255, 0.82) !important;
}

.orbit-halo-inner {
  inset: 27.6% !important;
  border-color: rgba(8, 41, 76, 0.08) !important;
  box-shadow:
    inset 0 18px 28px rgba(8, 41, 76, 0.08),
    0 0 38px rgba(255, 255, 255, 0.92) !important;
}

.orbit-glow-trail,
.orbit-pulse {
  inset: 8.6% !important;
}

.orbit-glow-trail {
  z-index: 8 !important;
  background:
    conic-gradient(from -90deg, transparent 0 78%, rgba(255, 255, 255, 0.92) 80%, rgba(42, 227, 216, 0.98) 84%, rgba(18, 184, 154, 0.42) 89%, transparent 96% 100%) !important;
  filter: drop-shadow(0 0 18px rgba(24, 198, 167, 0.72)) drop-shadow(0 0 38px rgba(255, 255, 255, 0.66)) !important;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 8px), #000 calc(100% - 7px), #000 calc(100% - 1.5px), transparent 100%) !important;
  mask: radial-gradient(farthest-side, transparent calc(100% - 8px), #000 calc(100% - 7px), #000 calc(100% - 1.5px), transparent 100%) !important;
  animation: orbit-spin 24s linear infinite !important;
}

.orbit-pulse {
  z-index: 10 !important;
  animation: orbit-spin 24s linear infinite !important;
}

.orbit-pulse::before {
  top: -11px !important;
  width: 18px !important;
  height: 18px !important;
  box-shadow:
    0 0 0 9px rgba(255, 255, 255, 0.58),
    0 0 24px rgba(24, 198, 167, 0.96),
    0 0 62px rgba(24, 198, 167, 0.62) !important;
}

.seasonal-orbit-svg {
  z-index: 6 !important;
  filter:
    drop-shadow(0 28px 28px rgba(8, 41, 76, 0.13))
    drop-shadow(0 4px 0 rgba(255, 255, 255, 0.42)) !important;
}

.orbit-guide {
  stroke: rgba(18, 184, 154, 0.11) !important;
  stroke-width: 1.15 !important;
}

.orbit-guide-outer {
  stroke: rgba(18, 184, 154, 0.13) !important;
}

.orbit-segment {
  transform-box: fill-box !important;
  transform-origin: center !important;
  animation: orbit-segment-sync 24s cubic-bezier(0.16, 1, 0.3, 1) infinite !important;
  animation-delay: calc(var(--i) * 2s) !important;
}

.season-low .segment-body {
  fill: url("#roofLow") !important;
}

.season-mid .segment-body {
  fill: url("#roofMid") !important;
}

.season-high .segment-body {
  fill: url("#roofHigh") !important;
}

.segment-body {
  stroke: rgba(255, 255, 255, 0.94) !important;
  stroke-width: 1.85 !important;
  filter: url("#orbitSegmentShadow") !important;
}

.segment-facet {
  stroke: rgba(255, 255, 255, 0.62) !important;
  stroke-width: 0.9 !important;
  filter: drop-shadow(0 1px 1px rgba(8, 41, 76, 0.08));
}

.segment-facet-soft {
  fill: url("#roofFacetShade") !important;
  opacity: 0.82 !important;
}

.segment-facet-light {
  fill: url("#roofFacetBright") !important;
  opacity: 0.96 !important;
}

.season-low .segment-facet-soft {
  fill: rgba(8, 41, 76, 0.08) !important;
}

.season-low .segment-facet-light {
  fill: rgba(255, 255, 255, 0.86) !important;
}

.season-mid .segment-facet-soft {
  fill: rgba(4, 105, 96, 0.10) !important;
}

.season-mid .segment-facet-light {
  fill: rgba(255, 255, 255, 0.70) !important;
}

.season-high .segment-facet-soft {
  fill: rgba(3, 99, 89, 0.18) !important;
}

.season-high .segment-facet-light {
  fill: rgba(255, 255, 255, 0.48) !important;
  opacity: 0.72 !important;
}

.segment-ridge {
  stroke: rgba(255, 255, 255, 0.90) !important;
  stroke-width: 2.15 !important;
  filter:
    drop-shadow(0 1px 1px rgba(8, 41, 76, 0.13))
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.44));
}

.season-low .segment-ridge {
  stroke: rgba(255, 255, 255, 0.72) !important;
}

.season-low .segment-body {
  stroke: rgba(255, 255, 255, 0.98) !important;
  filter:
    url("#orbitSegmentShadow")
    drop-shadow(0 2px 0 rgba(8, 41, 76, 0.05)) !important;
}

.season-high .segment-body {
  filter:
    url("#orbitSegmentShadow")
    drop-shadow(0 0 14px rgba(24, 198, 167, 0.22)) !important;
}

.segment-node {
  fill: rgba(255, 255, 255, 0.94) !important;
  stroke: rgba(18, 184, 154, 0.22) !important;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.75)) drop-shadow(0 0 10px var(--segment-glow)) !important;
}

.orbit-month {
  z-index: 11 !important;
  color: #08294c !important;
  font-size: clamp(12px, 1.08vw, 16px) !important;
  font-weight: 760 !important;
}

.orbit-month-may,
.orbit-month-jun,
.orbit-month-jul,
.orbit-month-aug {
  color: #078875 !important;
}

.orbit-center {
  z-index: 12 !important;
  width: min(330px, 48%) !important;
  padding: 12px 10px !important;
}

.orbit-center p {
  color: #6b7c92 !important;
  font-size: clamp(11px, 1vw, 14px) !important;
  font-weight: 820 !important;
}

.orbit-center > strong {
  color: #08294c !important;
  font-size: clamp(52px, 5.5vw, 86px) !important;
  font-weight: 500 !important;
  letter-spacing: 0.035em !important;
  text-shadow:
    0 18px 36px rgba(8, 41, 76, 0.10),
    0 1px 0 rgba(255, 255, 255, 0.74) !important;
}

.orbit-center > span {
  color: #4f6178 !important;
  font-size: clamp(13px, 1.2vw, 18px) !important;
}

.orbit-center em {
  min-width: 136px !important;
  margin-top: 18px !important;
  border-color: rgba(255, 255, 255, 0.92) !important;
  background: rgba(255, 255, 255, 0.72) !important;
  box-shadow:
    0 20px 48px rgba(8, 41, 76, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
  animation: orbit-badge-sync 24s ease-in-out infinite !important;
}

.seasonal-orbit-footer {
  margin-top: -10px !important;
  padding-inline: clamp(6px, 1vw, 16px) !important;
}

.orbit-animation-note {
  max-width: 280px !important;
  color: #5d6f86 !important;
}

.orbit-legend {
  border-color: rgba(255, 255, 255, 0.72) !important;
  background: rgba(255, 255, 255, 0.52) !important;
  box-shadow:
    0 16px 42px rgba(8, 41, 76, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

@keyframes orbit-object-resolve {
  from {
    opacity: 0;
    filter: blur(14px);
    transform: translateY(16px) scale(0.95);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes orbit-object-breathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.006); }
}

@keyframes orbit-ambient-glow {
  0%, 100% { opacity: 0.88; transform: translateZ(-48px) scale(0.995); }
  50% { opacity: 1; transform: translateZ(-48px) scale(1.015); }
}

@keyframes orbit-high-arc-breathe {
  0%, 100% { opacity: 0.56; filter: drop-shadow(0 0 14px rgba(24, 198, 167, 0.44)); }
  50% { opacity: 0.9; filter: drop-shadow(0 0 26px rgba(24, 198, 167, 0.72)); }
}

@keyframes orbit-segment-sync {
  0%, 6%, 100% {
    filter: none;
    transform: translate3d(0, 0, 0) scale(1);
  }
  2.35% {
    filter:
      drop-shadow(0 18px 22px rgba(8, 41, 76, 0.12))
      drop-shadow(0 0 20px var(--segment-glow));
    transform: translate3d(0, -5px, 24px) scale(1.014);
  }
}

@keyframes orbit-badge-sync {
  0%, 70% {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
  }
  78%, 94% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(4px) scale(0.98);
  }
}

@media (max-width: 720px) {
  .seasonal-orbit-card {
    width: 100% !important;
  }

  .seasonal-orbit-heading p {
    font-size: 17px !important;
    letter-spacing: 0.22em !important;
  }

  .seasonal-orbit-stage {
    width: min(342px, 100%) !important;
  }

  .orbit-center > strong {
    font-size: 38px !important;
  }

  .orbit-center em {
    min-width: 104px !important;
    padding: 9px 12px !important;
  }
}

/* Seasonal Orbit v3: closer to the reference, with raised roof planes */
body.public-home[data-public-view="intro"] .seasonal-orbit-showcase {
  width: min(820px, 100%) !important;
}

.seasonal-orbit-card {
  width: min(820px, 100%) !important;
}

.seasonal-orbit-card::before {
  inset: 3% -1% -4% -1% !important;
  background:
    radial-gradient(circle at 50% 47%, rgba(255, 255, 255, 0.99) 0 29%, rgba(241, 248, 250, 0.92) 44%, rgba(226, 241, 245, 0.50) 59%, transparent 74%),
    radial-gradient(circle at 64% 64%, rgba(40, 221, 210, 0.18), transparent 44%),
    radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.85), transparent 46%) !important;
  box-shadow:
    inset 0 54px 90px rgba(255, 255, 255, 0.82),
    inset 0 -44px 90px rgba(18, 184, 154, 0.10),
    0 52px 118px rgba(8, 41, 76, 0.12) !important;
}

.seasonal-orbit-card::after {
  inset: auto 6% -2% 7% !important;
  height: 32% !important;
  background:
    radial-gradient(ellipse at center, rgba(18, 184, 154, 0.24), rgba(142, 229, 223, 0.12) 38%, transparent 73%) !important;
}

.seasonal-orbit-heading {
  margin-bottom: clamp(-18px, -1.3vw, -7px) !important;
}

.seasonal-orbit-heading p {
  font-size: clamp(25px, 2.8vw, 43px) !important;
  letter-spacing: 0.48em !important;
}

.seasonal-orbit-heading span {
  font-size: clamp(16px, 1.35vw, 22px) !important;
}

.seasonal-orbit-stage {
  width: min(790px, 100%) !important;
  filter:
    drop-shadow(0 34px 38px rgba(8, 41, 76, 0.11))
    drop-shadow(0 3px 0 rgba(255, 255, 255, 0.55)) !important;
}

.seasonal-orbit-stage::before {
  inset: 18.4% !important;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 1) 0 36%, rgba(244, 250, 251, 0.98) 43%, rgba(233, 244, 247, 0.70) 58%, rgba(222, 239, 244, 0.32) 70%, transparent 74%),
    radial-gradient(circle at 48% 71%, rgba(24, 198, 167, 0.11), transparent 54%) !important;
  box-shadow:
    inset 0 26px 42px rgba(255, 255, 255, 0.92),
    inset 0 -24px 58px rgba(8, 41, 76, 0.055),
    0 24px 54px rgba(8, 41, 76, 0.08) !important;
}

.seasonal-orbit-stage::after {
  inset: 10.6% !important;
  background:
    conic-gradient(from -90deg, transparent 0 27%, rgba(145, 240, 232, 0.16) 32%, rgba(69, 224, 213, 0.84) 44%, rgba(18, 184, 154, 1) 54%, rgba(69, 224, 213, 0.70) 66%, transparent 73% 100%) !important;
  filter:
    drop-shadow(0 0 22px rgba(24, 198, 167, 0.68))
    drop-shadow(0 0 40px rgba(255, 255, 255, 0.72)) !important;
  animation: orbit-high-arc-breathe 7.5s ease-in-out infinite !important;
}

.seasonal-orbit-svg {
  transform: translateZ(32px) scale(1.015) !important;
  filter:
    drop-shadow(0 30px 32px rgba(8, 41, 76, 0.14))
    drop-shadow(0 10px 12px rgba(8, 41, 76, 0.06))
    drop-shadow(0 -3px 0 rgba(255, 255, 255, 0.72)) !important;
}

.orbit-guide {
  stroke-width: 1.05 !important;
}

.orbit-guide-outer {
  stroke: rgba(255, 255, 255, 0.92) !important;
  filter: drop-shadow(0 0 14px rgba(78, 222, 214, 0.22));
}

.orbit-guide-inner {
  stroke: rgba(8, 41, 76, 0.055) !important;
}

.orbit-glow-trail,
.orbit-pulse {
  inset: 7.8% !important;
}

.orbit-glow-trail {
  background:
    conic-gradient(from -90deg, transparent 0 78%, rgba(255, 255, 255, 0.98) 80%, rgba(79, 237, 224, 1) 84%, rgba(18, 184, 154, 0.54) 90%, transparent 97% 100%) !important;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 9px), #000 calc(100% - 8px), #000 calc(100% - 1px), transparent 100%) !important;
  mask: radial-gradient(farthest-side, transparent calc(100% - 9px), #000 calc(100% - 8px), #000 calc(100% - 1px), transparent 100%) !important;
}

.orbit-pulse::before {
  top: -12px !important;
  width: 20px !important;
  height: 20px !important;
  background: #f8ffff !important;
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.68),
    0 0 26px rgba(55, 230, 219, 0.98),
    0 0 70px rgba(24, 198, 167, 0.72) !important;
}

.orbit-segment {
  transform-box: view-box !important;
  transform-origin: 320px 320px !important;
  animation: orbit-segment-sync 24s cubic-bezier(0.16, 1, 0.3, 1) infinite !important;
  animation-delay: calc(var(--i) * 2s) !important;
}

.segment-depth {
  opacity: 0.46;
  transform: translateY(11px);
  stroke: rgba(8, 41, 76, 0.10);
  stroke-width: 1;
  filter: blur(0.15px);
}

.season-low .segment-depth {
  fill: rgba(140, 162, 176, 0.30);
}

.season-mid .segment-depth {
  fill: rgba(35, 171, 162, 0.26);
}

.season-high .segment-depth {
  fill: rgba(0, 100, 94, 0.32);
}

.segment-body {
  stroke: rgba(255, 255, 255, 0.98) !important;
  stroke-width: 2.2 !important;
  filter:
    url("#orbitSegmentShadow")
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.7)) !important;
}

.segment-roof {
  pointer-events: none;
  stroke: rgba(255, 255, 255, 0.72);
  stroke-width: 0.95;
  filter: drop-shadow(0 1px 1px rgba(8, 41, 76, 0.08));
}

.segment-roof-a {
  fill: rgba(255, 255, 255, 0.36);
}

.segment-roof-b {
  fill: rgba(8, 41, 76, 0.055);
}

.season-low .segment-roof-a {
  fill: rgba(255, 255, 255, 0.78);
}

.season-low .segment-roof-b {
  fill: rgba(8, 41, 76, 0.055);
}

.season-mid .segment-roof-a {
  fill: rgba(255, 255, 255, 0.56);
}

.season-mid .segment-roof-b {
  fill: rgba(0, 111, 103, 0.10);
}

.season-high .segment-roof-a {
  fill: rgba(255, 255, 255, 0.32);
}

.season-high .segment-roof-b {
  fill: rgba(0, 95, 89, 0.20);
}

.segment-cap {
  fill: none;
  stroke: rgba(255, 255, 255, 0.78);
  stroke-width: 2.6;
  stroke-linecap: round;
  filter:
    drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.72))
    drop-shadow(0 0 9px rgba(255, 255, 255, 0.42));
}

.season-high .segment-cap,
.season-mid .segment-cap {
  stroke: rgba(213, 255, 251, 0.78);
  filter:
    drop-shadow(0 0 10px rgba(24, 198, 167, 0.24))
    drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.66));
}

.segment-ridge {
  stroke: rgba(255, 255, 255, 0.92) !important;
  stroke-width: 2.35 !important;
}

.segment-node {
  r: 4.4px;
  fill: rgba(255, 255, 255, 0.98) !important;
  stroke: rgba(18, 184, 154, 0.20) !important;
}

.orbit-center {
  width: min(370px, 50%) !important;
}

.orbit-center p {
  letter-spacing: 0.045em !important;
  text-transform: uppercase;
}

.orbit-center > strong {
  font-size: clamp(64px, 6.2vw, 98px) !important;
  font-weight: 520 !important;
  letter-spacing: 0.02em !important;
}

.orbit-center em {
  opacity: 0;
  animation: orbit-badge-once 0.9s cubic-bezier(0.16, 1, 0.3, 1) 4.4s forwards !important;
}

.orbit-month {
  font-size: clamp(13px, 1.12vw, 17px) !important;
  font-weight: 800 !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.seasonal-orbit-footer {
  margin-top: -20px !important;
}

@keyframes orbit-badge-once {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 900px) {
  .seasonal-orbit-stage {
    width: min(650px, 100%) !important;
  }

  .seasonal-orbit-heading p {
    letter-spacing: 0.34em !important;
  }
}

@media (max-width: 720px) {
  .seasonal-orbit-heading p {
    font-size: 19px !important;
    letter-spacing: 0.24em !important;
  }

  .seasonal-orbit-heading span {
    font-size: 13px !important;
  }

  .seasonal-orbit-stage {
    width: min(368px, 100%) !important;
  }

  .orbit-center {
    width: min(214px, 52%) !important;
  }

  .orbit-center > strong {
    font-size: 42px !important;
  }

  .orbit-center p {
    font-size: 8px !important;
  }
}

@media (min-width: 921px) {
  body.public-home[data-public-view="intro"] .premium-landing {
    grid-template-columns: minmax(360px, 0.82fr) minmax(560px, 1.18fr) !important;
    gap: clamp(28px, 4.5vw, 58px) !important;
    min-height: max(890px, calc(100svh + 190px)) !important;
    padding-top: clamp(238px, 25vh, 266px) !important;
    padding-bottom: 70px !important;
  }

  body.public-home[data-public-view="intro"] .seasonal-orbit-showcase {
    transform: translate(-54px, 60px) !important;
  }

  body.public-home[data-public-view="intro"] .premium-copy {
    transform: translateY(-18px);
  }
}

/* Seasonal Orbit v4: decorative premium orbit, not a chart */
@media (min-width: 921px) {
  body.public-home[data-public-view="intro"] .premium-landing {
    grid-template-columns: minmax(360px, 0.86fr) minmax(520px, 1.14fr) !important;
    gap: clamp(34px, 5vw, 68px) !important;
    min-height: max(820px, calc(100svh + 120px)) !important;
    padding-top: clamp(236px, 24vh, 264px) !important;
    padding-bottom: 64px !important;
  }

  body.public-home[data-public-view="intro"] .seasonal-orbit-showcase {
    width: min(660px, 100%) !important;
    transform: translate(-18px, 22px) !important;
  }
}

.seasonal-orbit-card {
  width: min(660px, 100%) !important;
  animation:
    orbit-object-resolve 1.25s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both,
    orbit-object-breathe 16s ease-in-out 1.4s infinite !important;
}

.seasonal-orbit-card::before {
  inset: 7% 3% 0 !important;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.98) 0 30%, rgba(244, 250, 252, 0.84) 48%, rgba(229, 241, 246, 0.32) 63%, transparent 76%),
    radial-gradient(circle at 58% 70%, rgba(24, 198, 167, 0.08), transparent 48%) !important;
  box-shadow:
    inset 0 34px 62px rgba(255, 255, 255, 0.82),
    inset 0 -22px 54px rgba(8, 41, 76, 0.035),
    0 28px 72px rgba(8, 41, 76, 0.075) !important;
  opacity: 0.88 !important;
}

.seasonal-orbit-card::after {
  inset: auto 16% 0 16% !important;
  height: 18% !important;
  background: radial-gradient(ellipse at center, rgba(18, 184, 154, 0.13), transparent 72%) !important;
  filter: blur(20px) !important;
  opacity: 0.52 !important;
}

.seasonal-orbit-heading {
  margin-bottom: -4px !important;
}

.seasonal-orbit-heading p {
  color: #13aa95 !important;
  font-size: clamp(20px, 2.1vw, 31px) !important;
  letter-spacing: 0.44em !important;
  font-weight: 850 !important;
  text-shadow: none !important;
}

.seasonal-orbit-heading span {
  color: #6f8094 !important;
  font-size: clamp(13px, 1vw, 17px) !important;
  font-weight: 540 !important;
}

.seasonal-orbit-stage {
  width: min(620px, 100%) !important;
  margin-inline: auto !important;
  filter:
    drop-shadow(0 22px 26px rgba(8, 41, 76, 0.085))
    drop-shadow(0 -2px 0 rgba(255, 255, 255, 0.70)) !important;
}

.seasonal-orbit-stage::before {
  inset: 20.5% !important;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.98) 0 39%, rgba(245, 251, 252, 0.94) 52%, rgba(229, 242, 246, 0.42) 70%, transparent 75%),
    radial-gradient(circle at 50% 74%, rgba(18, 184, 154, 0.07), transparent 54%) !important;
  box-shadow:
    inset 0 18px 30px rgba(255, 255, 255, 0.94),
    inset 0 -18px 36px rgba(8, 41, 76, 0.045),
    0 16px 36px rgba(8, 41, 76, 0.045) !important;
}

.seasonal-orbit-stage::after {
  inset: 14.3% !important;
  opacity: 0.46 !important;
  background:
    conic-gradient(from -90deg, transparent 0 31%, rgba(129, 239, 232, 0.10) 36%, rgba(71, 224, 213, 0.62) 47%, rgba(18, 184, 154, 0.82) 57%, rgba(105, 235, 227, 0.36) 69%, transparent 75% 100%) !important;
  filter:
    drop-shadow(0 0 12px rgba(24, 198, 167, 0.38))
    drop-shadow(0 0 28px rgba(255, 255, 255, 0.60)) !important;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 5px), #000 calc(100% - 1px), transparent 100%) !important;
  mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 5px), #000 calc(100% - 1px), transparent 100%) !important;
}

.seasonal-orbit-svg {
  transform: translateZ(24px) scale(0.94) !important;
  filter:
    drop-shadow(0 20px 20px rgba(8, 41, 76, 0.09))
    drop-shadow(0 -2px 0 rgba(255, 255, 255, 0.75)) !important;
}

.orbit-guide-outer {
  stroke: rgba(255, 255, 255, 0.82) !important;
  stroke-width: 1 !important;
  filter: drop-shadow(0 0 10px rgba(68, 220, 212, 0.16)) !important;
}

.orbit-guide-inner {
  stroke: rgba(8, 41, 76, 0.045) !important;
  stroke-width: 0.9 !important;
}

.orbit-glow-trail,
.orbit-pulse {
  inset: 11.8% !important;
}

.orbit-glow-trail {
  opacity: 0.58 !important;
  background:
    conic-gradient(from -90deg, transparent 0 79%, rgba(255, 255, 255, 0.96) 81%, rgba(83, 233, 224, 0.82) 85%, rgba(18, 184, 154, 0.34) 90%, transparent 97% 100%) !important;
  filter:
    drop-shadow(0 0 12px rgba(24, 198, 167, 0.38))
    drop-shadow(0 0 22px rgba(255, 255, 255, 0.54)) !important;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 5px), #000 calc(100% - 1px), transparent 100%) !important;
  mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 5px), #000 calc(100% - 1px), transparent 100%) !important;
}

.orbit-pulse::before {
  top: -8px !important;
  width: 13px !important;
  height: 13px !important;
  background: #ffffff !important;
  box-shadow:
    0 0 0 7px rgba(255, 255, 255, 0.62),
    0 0 18px rgba(65, 226, 216, 0.76),
    0 0 38px rgba(24, 198, 167, 0.42) !important;
}

.segment-depth {
  opacity: 0.24 !important;
  transform: translateY(7px) !important;
  stroke-width: 0 !important;
  filter: blur(0.1px) !important;
}

.season-low .segment-depth {
  fill: rgba(114, 137, 154, 0.22) !important;
}

.season-mid .segment-depth {
  fill: rgba(64, 161, 154, 0.18) !important;
}

.season-high .segment-depth {
  fill: rgba(0, 112, 104, 0.22) !important;
}

.segment-body {
  stroke: rgba(255, 255, 255, 0.92) !important;
  stroke-width: 1.35 !important;
  filter: url("#orbitSegmentShadow") !important;
}

.season-low .segment-body {
  fill: url("#roofLow") !important;
}

.season-mid .segment-body {
  fill: url("#roofMid") !important;
}

.season-high .segment-body {
  fill: url("#roofHigh") !important;
}

.segment-roof {
  stroke: rgba(255, 255, 255, 0.42) !important;
  stroke-width: 0.65 !important;
  filter: none !important;
}

.segment-roof-a {
  fill: rgba(255, 255, 255, 0.30) !important;
}

.segment-roof-b {
  fill: rgba(8, 41, 76, 0.035) !important;
}

.season-low .segment-roof-a {
  fill: rgba(255, 255, 255, 0.58) !important;
}

.season-low .segment-roof-b {
  fill: rgba(8, 41, 76, 0.032) !important;
}

.season-mid .segment-roof-a {
  fill: rgba(255, 255, 255, 0.42) !important;
}

.season-mid .segment-roof-b {
  fill: rgba(0, 111, 103, 0.055) !important;
}

.season-high .segment-roof-a {
  fill: rgba(255, 255, 255, 0.25) !important;
}

.season-high .segment-roof-b {
  fill: rgba(0, 90, 84, 0.10) !important;
}

.segment-cap {
  stroke: rgba(255, 255, 255, 0.54) !important;
  stroke-width: 1.45 !important;
  filter: none !important;
}

.season-high .segment-cap,
.season-mid .segment-cap {
  stroke: rgba(224, 255, 252, 0.58) !important;
  filter: drop-shadow(0 0 7px rgba(24, 198, 167, 0.14)) !important;
}

.segment-ridge {
  stroke: rgba(255, 255, 255, 0.58) !important;
  stroke-width: 1.25 !important;
  filter: none !important;
  opacity: 0.74 !important;
}

.segment-node {
  fill: rgba(255, 255, 255, 0.92) !important;
  stroke: rgba(18, 184, 154, 0.14) !important;
  filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.65)) !important;
  opacity: 0.82 !important;
}

.orbit-segment {
  animation: orbit-segment-premium 24s cubic-bezier(0.16, 1, 0.3, 1) infinite !important;
  animation-delay: calc(var(--i) * 2s) !important;
}

.orbit-center {
  isolation: isolate !important;
  width: min(280px, 46%) !important;
  padding: 0 !important;
}

.orbit-center::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: min(318px, 118%);
  aspect-ratio: 1;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.95) 0 46%, rgba(244, 250, 252, 0.76) 62%, rgba(227, 240, 246, 0.30) 78%, transparent 82%);
  box-shadow:
    inset 0 18px 34px rgba(255, 255, 255, 0.82),
    inset 0 -18px 34px rgba(8, 41, 76, 0.045);
  pointer-events: none;
}

.orbit-center p {
  color: #748399 !important;
  font-size: clamp(9px, 0.82vw, 12px) !important;
  font-weight: 760 !important;
  letter-spacing: 0.055em !important;
}

.orbit-center > strong {
  color: #08294c !important;
  font-size: clamp(56px, 5vw, 72px) !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em !important;
  line-height: 1.02 !important;
  text-shadow: 0 12px 26px rgba(8, 41, 76, 0.075) !important;
}

.orbit-center > span {
  color: #4e6077 !important;
  font-size: clamp(13px, 1vw, 16px) !important;
  font-weight: 540 !important;
}

.orbit-center em {
  min-width: 116px !important;
  margin-top: 14px !important;
  padding: 10px 16px !important;
  background: rgba(255, 255, 255, 0.66) !important;
  border-color: rgba(255, 255, 255, 0.86) !important;
  box-shadow:
    0 12px 32px rgba(8, 41, 76, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.86) !important;
}

.orbit-center em b {
  font-size: 17px !important;
  font-weight: 780 !important;
}

.orbit-center em small {
  font-size: 11px !important;
  color: #64748b !important;
}

.orbit-month {
  color: #08294c !important;
  font-size: clamp(11px, 0.92vw, 14px) !important;
  font-weight: 560 !important;
  letter-spacing: 0 !important;
  text-shadow: none !important;
}

.orbit-month-jan { top: 5.2% !important; }
.orbit-month-feb { left: 70.2% !important; top: 10.8% !important; }
.orbit-month-mar { left: 86.6% !important; top: 27.2% !important; }
.orbit-month-apr { left: 93.6% !important; top: 49.2% !important; }
.orbit-month-may { left: 87.4% !important; top: 71.5% !important; color: #08294c !important; }
.orbit-month-jun { left: 70.8% !important; top: 88.2% !important; color: #08294c !important; }
.orbit-month-jul { top: 94.6% !important; color: #08294c !important; }
.orbit-month-aug { left: 29.2% !important; top: 88.2% !important; color: #08294c !important; }
.orbit-month-sep { left: 12.6% !important; top: 71.5% !important; }
.orbit-month-oct { left: 6.4% !important; top: 49.2% !important; }
.orbit-month-nov { left: 13.4% !important; top: 27.2% !important; }
.orbit-month-dec { left: 29.8% !important; top: 10.8% !important; }

.seasonal-orbit-footer {
  margin-top: -4px !important;
  opacity: 0.78 !important;
}

.orbit-legend {
  padding: 12px 16px !important;
}

@keyframes orbit-segment-premium {
  0%, 7%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    filter: none;
  }

  2.4% {
    transform: translate3d(0, -3px, 18px) scale(1.01);
    filter:
      drop-shadow(0 10px 16px rgba(8, 41, 76, 0.08))
      drop-shadow(0 0 11px var(--segment-glow));
  }
}

@media (max-width: 900px) {
  .seasonal-orbit-stage {
    width: min(590px, 100%) !important;
  }
}

@media (max-width: 720px) {
  .seasonal-orbit-stage {
    width: min(342px, 100%) !important;
  }

  .orbit-center {
    width: min(176px, 48%) !important;
  }

  .orbit-center::before {
    width: min(204px, 118%) !important;
  }

  .orbit-center > strong {
    font-size: 34px !important;
  }

  .orbit-center em {
    min-width: 92px !important;
    margin-top: 8px !important;
    padding: 7px 10px !important;
  }
}

/* Seasonal Orbit v4.1: smaller, airier, less chart-like */
@media (min-width: 921px) {
  body.public-home[data-public-view="intro"] .seasonal-orbit-showcase {
    width: min(630px, 100%) !important;
    transform: translate(-2px, 34px) !important;
  }
}

.seasonal-orbit-card {
  width: min(630px, 100%) !important;
}

.seasonal-orbit-stage {
  width: min(590px, 100%) !important;
}

.seasonal-orbit-stage::after {
  opacity: 0.30 !important;
  filter:
    drop-shadow(0 0 8px rgba(24, 198, 167, 0.24))
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.48)) !important;
}

.orbit-glow-trail {
  opacity: 0.42 !important;
  filter:
    drop-shadow(0 0 8px rgba(24, 198, 167, 0.28))
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.48)) !important;
}

.segment-roof-a {
  fill: rgba(255, 255, 255, 0.38) !important;
}

.segment-roof-b {
  fill: rgba(8, 41, 76, 0.052) !important;
}

.season-low .segment-roof-a {
  fill: rgba(255, 255, 255, 0.68) !important;
}

.season-mid .segment-roof-a {
  fill: rgba(255, 255, 255, 0.50) !important;
}

.season-high .segment-roof-a {
  fill: rgba(255, 255, 255, 0.32) !important;
}

.season-high .segment-roof-b {
  fill: rgba(0, 90, 84, 0.13) !important;
}

.segment-ridge {
  stroke: rgba(255, 255, 255, 0.68) !important;
  stroke-width: 1.35 !important;
  opacity: 0.84 !important;
}

.orbit-center::before {
  width: min(246px, 94%) !important;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.78) 0 42%, rgba(244, 250, 252, 0.46) 61%, rgba(227, 240, 246, 0.14) 78%, transparent 84%) !important;
  box-shadow:
    inset 0 14px 28px rgba(255, 255, 255, 0.66),
    inset 0 -14px 28px rgba(8, 41, 76, 0.030) !important;
}

.season-low .segment-roof-b {
  fill: rgba(8, 41, 76, 0.060) !important;
}

.season-mid .segment-roof-b {
  fill: rgba(0, 111, 103, 0.080) !important;
}

.season-high .segment-roof-b {
  fill: rgba(0, 90, 84, 0.155) !important;
}

.segment-ridge {
  stroke: rgba(255, 255, 255, 0.78) !important;
  stroke-width: 1.15 !important;
  opacity: 0.90 !important;
  filter: drop-shadow(0 1px 1px rgba(8, 41, 76, 0.14)) !important;
}

.orbit-center > strong {
  font-size: clamp(56px, 4.7vw, 68px) !important;
}

@media (max-width: 720px) {
  .seasonal-orbit-stage {
    width: min(336px, 100%) !important;
  }

  .orbit-center {
    width: min(168px, 48%) !important;
  }

  .orbit-center::before {
    width: min(184px, 110%) !important;
  }

  .orbit-center > strong {
    font-size: 32px !important;
  }

  .orbit-center p {
    font-size: 7px !important;
  }

  .orbit-center > span {
    font-size: 10px !important;
  }

  .orbit-center em {
    min-width: 82px !important;
    margin-top: 6px !important;
    padding: 6px 9px !important;
  }

  .orbit-center em b {
    font-size: 12px !important;
  }

  .orbit-center em small {
    font-size: 8px !important;
  }
}

/* Seasonal Orbit final: premium rendered visual + cinematic motion overlays
   The roof segments stay inside the image; no tile-lift animation is used. */
body.public-home[data-public-view="intro"] .seasonal-orbit-showcase {
  width: min(700px, 100%) !important;
  justify-self: center !important;
}

.seasonal-orbit-asset-card,
.seasonal-orbit-card.seasonal-orbit-asset-card {
  width: min(700px, 100%) !important;
  min-height: 0 !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  overflow: visible !important;
  transform-origin: 50% 52%;
  animation:
    orbit-cinema-arrive 1.15s cubic-bezier(.16, 1, .3, 1) .08s both,
    orbit-cinema-breathe 10.5s ease-in-out 1.8s infinite !important;
}

.seasonal-orbit-asset-card::before,
.seasonal-orbit-asset-card::after {
  display: none !important;
}

.seasonal-orbit-asset {
  --orbit-center-x: 50%;
  --orbit-center-y: 49%;
  --orbit-size: 73%;
  position: relative;
  width: 100%;
  aspect-ratio: 1448 / 1086;
  isolation: isolate;
  overflow: visible;
  filter:
    drop-shadow(0 28px 60px rgba(8, 41, 76, .10))
    drop-shadow(0 2px 8px rgba(255, 255, 255, .78));
}

.seasonal-orbit-asset > img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  transform: translateZ(0);
}

/* Very soft living light behind the render, not a tile animation. */
.orbit-aurora {
  position: absolute;
  z-index: 2;
  left: var(--orbit-center-x);
  top: var(--orbit-center-y);
  width: 77%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at 69% 70%, rgba(18, 184, 154, .22), transparent 25%),
    radial-gradient(circle at 36% 72%, rgba(105, 232, 221, .14), transparent 28%),
    conic-gradient(from 135deg, transparent 0 43%, rgba(37, 221, 205, .18) 54%, rgba(255, 255, 255, .42) 61%, transparent 73% 100%);
  filter: blur(18px) saturate(112%);
  opacity: .46;
  animation: orbit-aurora-bloom 7.6s ease-in-out infinite;
}

.orbit-center-scrim {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 47.7%;
  width: 30.5%;
  aspect-ratio: 1.52 / 1;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 50% 46%, rgba(246, 251, 253, .995) 0 46%, rgba(240, 248, 251, .96) 60%, rgba(235, 244, 248, .72) 74%, transparent 83%);
  box-shadow:
    inset 0 20px 38px rgba(255, 255, 255, .78),
    inset 0 -18px 34px rgba(8, 41, 76, .035),
    0 10px 26px rgba(8, 41, 76, .026);
  pointer-events: none;
}

.orbit-center-overlay {
  position: absolute;
  z-index: 7;
  left: 50%;
  top: 47.1%;
  width: 31%;
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  text-align: center;
  color: #08294c;
  pointer-events: none;
  animation: orbit-center-reveal .95s cubic-bezier(.16, 1, .3, 1) .55s both;
}

.orbit-center-overlay p {
  margin: 0 0 clamp(7px, .75vw, 11px);
  color: #718198;
  font-size: clamp(8px, .74vw, 12px);
  font-weight: 800;
  letter-spacing: .058em;
  line-height: 1.1;
  text-transform: uppercase;
}

.orbit-center-overlay strong {
  display: block;
  color: #08294c;
  font-family: var(--display-font, Georgia, 'Times New Roman', serif);
  font-size: clamp(40px, 5.25vw, 70px);
  font-weight: 520;
  line-height: .98;
  letter-spacing: .015em;
  text-shadow:
    0 0 0 rgba(67,232,221,0),
    0 12px 28px rgba(8, 41, 76, .08),
    0 1px 0 rgba(255, 255, 255, .82);
  animation: orbit-number-glow 6.4s ease-in-out .3s infinite;
}

.orbit-center-overlay > span {
  margin-top: clamp(6px, .65vw, 9px);
  color: #52647a;
  font-size: clamp(10px, .93vw, 15px);
  font-weight: 540;
}

.orbit-center-overlay em {
  display: inline-grid;
  gap: 1px;
  min-width: clamp(86px, 8.4vw, 118px);
  margin-top: clamp(12px, 1.15vw, 16px);
  padding: clamp(8px, .7vw, 11px) clamp(12px, 1vw, 16px);
  border: 1px solid rgba(255, 255, 255, .90);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  box-shadow:
    0 14px 32px rgba(8, 41, 76, .07),
    0 0 28px rgba(44, 210, 194, .13),
    inset 0 1px 0 rgba(255, 255, 255, .93);
  color: #10ad98;
  font-style: normal;
  opacity: 0;
  transform: translateY(8px) scale(.96);
  animation: orbit-badge-final .9s cubic-bezier(.16, 1, .3, 1) 4.7s forwards;
}

.orbit-center-overlay em b {
  font-size: clamp(12px, 1.12vw, 17px);
  font-weight: 820;
  line-height: 1;
}

.orbit-center-overlay em small {
  color: #64748b;
  font-size: clamp(8px, .72vw, 11px);
  font-weight: 700;
  line-height: 1.05;
}

/* Cinematic orbit: a comet, a second soft satellite, a glow trail, and two glints.
   No tiles move; the beautiful roof render stays calm. */
.orbit-sweep-line,
.orbit-spark-dot,
.orbit-glint {
  position: absolute;
  z-index: 5;
  left: var(--orbit-center-x);
  top: var(--orbit-center-y);
  width: var(--orbit-size);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.orbit-sweep-line {
  background: conic-gradient(from -92deg,
    transparent 0 65%,
    rgba(255,255,255,.06) 70%,
    rgba(255,255,255,.86) 77%,
    rgba(70,236,226,.98) 81%,
    rgba(18,184,154,.54) 87%,
    rgba(18,184,154,.08) 93%,
    transparent 99% 100%);
  filter:
    drop-shadow(0 0 13px rgba(65, 232, 221, .54))
    drop-shadow(0 0 35px rgba(18, 184, 154, .30))
    drop-shadow(0 0 68px rgba(255, 255, 255, .75));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 7px), #000 calc(100% - 6px), #000 calc(100% - 1px), transparent 100%);
  mask: radial-gradient(farthest-side, transparent calc(100% - 7px), #000 calc(100% - 6px), #000 calc(100% - 1px), transparent 100%);
  opacity: .78;
  animation: orbit-spin-cinema 12.5s cubic-bezier(.44, .02, .54, .98) infinite;
}

.orbit-sweep-line-soft {
  z-index: 3;
  width: 83%;
  opacity: .30;
  filter: blur(1.5px) drop-shadow(0 0 40px rgba(105, 232, 221, .38));
  animation-duration: 21s;
  animation-direction: reverse;
}

.orbit-spark-dot {
  animation: orbit-spin-cinema 12.5s cubic-bezier(.44, .02, .54, .98) infinite;
}

.orbit-spark-dot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -6px;
  width: 13px;
  height: 13px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 8px rgba(255,255,255,.66),
    0 0 20px rgba(62,232,221,.88),
    0 0 54px rgba(24,198,167,.55),
    0 0 94px rgba(255,255,255,.64);
}

.orbit-spark-dot::after {
  content: "";
  position: absolute;
  left: calc(50% - 1px);
  top: -44px;
  width: 2px;
  height: 44px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.88), rgba(70,236,226,.64), transparent);
  filter: blur(.2px);
  opacity: .72;
}

.orbit-spark-dot-secondary {
  z-index: 4;
  width: 85%;
  opacity: .52;
  animation-duration: 18.5s;
  animation-delay: -7s;
}

.orbit-spark-dot-secondary::before {
  width: 8px;
  height: 8px;
  top: -4px;
  box-shadow:
    0 0 0 6px rgba(255,255,255,.50),
    0 0 18px rgba(170, 245, 238, .62),
    0 0 40px rgba(24,198,167,.28);
}

.orbit-spark-dot-secondary::after {
  display: none;
}

.orbit-glint {
  z-index: 6;
  opacity: 0;
  animation: orbit-glint-pop 12.5s ease-in-out infinite;
}

.orbit-glint::before,
.orbit-glint::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -2px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 0 18px rgba(255,255,255,.85), 0 0 36px rgba(67,232,221,.52);
}

.orbit-glint::before { width: 34px; height: 2px; }
.orbit-glint::after { width: 2px; height: 34px; }

.orbit-glint-b {
  width: 83%;
  animation-delay: -4.25s;
  animation-duration: 15.5s;
}

@keyframes orbit-cinema-arrive {
  0% {
    opacity: 0;
    filter: blur(14px) drop-shadow(0 28px 55px rgba(8, 41, 76, .10));
    transform: translateY(18px) scale(.972);
  }
  64% { opacity: 1; }
  100% {
    opacity: 1;
    filter: blur(0) drop-shadow(0 28px 60px rgba(8, 41, 76, .10));
    transform: translateY(0) scale(1);
  }
}

@keyframes orbit-cinema-breathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.004); }
}

@keyframes orbit-aurora-bloom {
  0%, 100% { opacity: .38; transform: translate(-50%, -50%) scale(.985) rotate(0deg); }
  42% { opacity: .58; transform: translate(-50%, -50%) scale(1.018) rotate(8deg); }
  72% { opacity: .45; transform: translate(-50%, -50%) scale(1.005) rotate(16deg); }
}

@keyframes orbit-spin-cinema {
  0% { transform: translate(-50%, -50%) rotate(-12deg); }
  44% { transform: translate(-50%, -50%) rotate(184deg); }
  56% { transform: translate(-50%, -50%) rotate(214deg); }
  100% { transform: translate(-50%, -50%) rotate(348deg); }
}

@keyframes orbit-center-reveal {
  from { opacity: 0; transform: translate(-50%, -46%) scale(.975); filter: blur(7px); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); filter: blur(0); }
}

@keyframes orbit-number-glow {
  0%, 100% { text-shadow: 0 12px 28px rgba(8, 41, 76, .08), 0 1px 0 rgba(255, 255, 255, .82); }
  48% { text-shadow: 0 0 22px rgba(80, 232, 221, .30), 0 12px 28px rgba(8, 41, 76, .08), 0 1px 0 rgba(255, 255, 255, .82); }
}

@keyframes orbit-glint-pop {
  0%, 12%, 100% { opacity: 0; transform: translate(-50%, -50%) rotate(0deg) scale(.65); }
  15% { opacity: .92; transform: translate(-50%, -50%) rotate(24deg) scale(1.05); }
  19% { opacity: 0; transform: translate(-50%, -50%) rotate(46deg) scale(1.24); }
}

@keyframes orbit-badge-final {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (min-width: 921px) {
  body.public-home[data-public-view="intro"] .premium-landing {
    grid-template-columns: minmax(350px, .88fr) minmax(540px, 1.12fr) !important;
    gap: clamp(28px, 4.2vw, 56px) !important;
    min-height: max(760px, 100svh) !important;
    padding-top: clamp(210px, 22vh, 245px) !important;
    padding-bottom: 44px !important;
  }

  body.public-home[data-public-view="intro"] .seasonal-orbit-showcase {
    transform: translate(-18px, 4px) !important;
  }
}

@media (max-width: 920px) {
  body.public-home[data-public-view="intro"] .seasonal-orbit-showcase {
    width: min(620px, 100%) !important;
  }
}

@media (max-width: 620px) {
  .seasonal-orbit-asset {
    width: 118%;
    margin-left: -9%;
  }

  .orbit-center-overlay strong {
    font-size: clamp(30px, 9vw, 44px);
  }

  .orbit-center-overlay p {
    font-size: 7px;
  }

  .orbit-center-overlay > span,
  .orbit-center-overlay em small {
    font-size: 8px;
  }

  .orbit-center-overlay em {
    min-width: 74px;
    margin-top: 7px;
    padding: 6px 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .seasonal-orbit-asset-card,
  .orbit-aurora,
  .orbit-sweep-line,
  .orbit-spark-dot,
  .orbit-glint,
  .orbit-center-overlay,
  .orbit-center-overlay strong,
  .orbit-center-overlay em {
    animation: none !important;
  }

  .orbit-center-overlay,
  .orbit-center-overlay em {
    opacity: 1 !important;
    transform: translate(-50%, -50%) !important;
    filter: none !important;
  }

  .orbit-center-overlay em {
    transform: none !important;
  }
}

/* Seasonal Orbit placement pass: scale, center, and blend the rendered visual. */
body.public-home[data-public-view="intro"] .seasonal-orbit-asset-card,
body.public-home[data-public-view="intro"] .seasonal-orbit-card.seasonal-orbit-asset-card {
  width: 100% !important;
}

body.public-home[data-public-view="intro"] .seasonal-orbit-asset {
  --orbit-progress: 0deg;
  --orbit-rotation: -12deg;
  --orbit-heat: .22;
  --orbit-glow-size: 18px;
  --orbit-progress-opacity: .18;
  filter:
    drop-shadow(0 38px 92px rgba(8, 41, 76, .11))
    drop-shadow(0 10px 34px rgba(18, 184, 154, .08));
}

body.public-home[data-public-view="intro"] .seasonal-orbit-asset::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 4% 3% 2%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 62% 55%, rgba(18, 184, 154, .16), transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .58), transparent 64%);
  filter: blur(28px);
  opacity: .58;
  pointer-events: none;
}

body.public-home[data-public-view="intro"] .seasonal-orbit-asset > img {
  mix-blend-mode: multiply;
  opacity: .96;
  clip-path: none;
  -webkit-mask-image: none;
  mask-image: none;
}

body.public-home[data-public-view="intro"] .seasonal-orbit-asset::after {
  display: none;
}

body.public-home[data-public-view="intro"] .orbit-center-scrim {
  top: 50.4%;
  width: 35%;
  aspect-ratio: 1.16 / 1;
  background:
    radial-gradient(ellipse at 50% 47%, rgba(246, 251, 253, .995) 0 50%, rgba(240, 248, 251, .97) 66%, rgba(235, 244, 248, .78) 80%, transparent 90%);
}

body.public-home[data-public-view="intro"] .orbit-center-overlay {
  top: 49.4%;
  width: 33%;
}

body.public-home[data-public-view="intro"] .orbit-center-overlay strong {
  font-size: clamp(42px, 4.2vw, 62px);
}

/* Seasonal Orbit center tuning: keep the value elegant inside the ring. */
body.public-home[data-public-view="intro"] .orbit-center-scrim {
  top: 50.2% !important;
  width: 27% !important;
  aspect-ratio: 1.18 / 1 !important;
  background:
    radial-gradient(ellipse at 50% 48%,
      rgba(247, 252, 253, .995) 0 46%,
      rgba(241, 248, 251, .94) 63%,
      rgba(234, 244, 248, .62) 78%,
      transparent 91%) !important;
}

body.public-home[data-public-view="intro"] .orbit-center-overlay {
  top: 49.9% !important;
  width: 23% !important;
}

body.public-home[data-public-view="intro"] .orbit-center-overlay p {
  margin-bottom: clamp(3px, .32vw, 5px) !important;
  font-size: clamp(5px, .44vw, 7px) !important;
  font-weight: 760 !important;
  letter-spacing: .05em !important;
}

body.public-home[data-public-view="intro"] .orbit-center-overlay strong {
  font-size: clamp(20px, 1.95vw, 31px) !important;
  line-height: .98 !important;
  letter-spacing: .005em !important;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
  text-shadow: 0 8px 18px rgba(8, 41, 76, .08) !important;
  transition: opacity .28s ease, filter .28s ease, transform .28s ease;
}

body.public-home[data-public-view="intro"] .orbit-amount {
  display: inline-grid !important;
  grid-template-columns: .58em 3.35em;
  column-gap: .03em;
  align-items: baseline;
  justify-content: center;
  min-width: 3.96em;
  white-space: nowrap;
}

body.public-home[data-public-view="intro"] .orbit-currency {
  justify-self: end;
  text-align: right;
}

body.public-home[data-public-view="intro"] .orbit-amount-value {
  display: inline-block;
  width: 3.35em;
  justify-self: start;
  text-align: left;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

body.public-home[data-public-view="intro"] .orbit-center-overlay strong.is-resetting {
  opacity: 0;
  filter: blur(2px);
  transform: translateY(-2px) scale(.985);
}

body.public-home[data-public-view="intro"] .orbit-center-overlay > span {
  margin-top: clamp(2px, .28vw, 4px) !important;
  font-size: clamp(6px, .48vw, 8px) !important;
}

body.public-home[data-public-view="intro"] .orbit-center-overlay em {
  min-width: clamp(50px, 4.2vw, 64px) !important;
  margin-top: clamp(4px, .48vw, 7px) !important;
  padding: clamp(4px, .35vw, 6px) clamp(7px, .52vw, 9px) !important;
  animation: orbit-badge-cycle 19s cubic-bezier(.32, .04, .22, 1) infinite !important;
}

body.public-home[data-public-view="intro"] .orbit-center-overlay em b {
  font-size: clamp(8px, .64vw, 10px) !important;
}

body.public-home[data-public-view="intro"] .orbit-center-overlay em small {
  font-size: clamp(5px, .42vw, 7px) !important;
}

body.public-home[data-public-view="intro"] .orbit-season-progress {
  position: absolute;
  z-index: 3;
  left: var(--orbit-center-x);
  top: var(--orbit-center-y);
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background:
    conic-gradient(from -90deg,
      rgba(255, 255, 255, 0) 0deg,
      rgba(180, 250, 244, .08) 16deg,
      rgba(99, 239, 229, .30) var(--orbit-progress),
      rgba(255, 255, 255, 0) calc(var(--orbit-progress) + 1deg) 360deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 11px), #000 calc(100% - 8px), #000 calc(100% - 2px), transparent 100%);
  mask: radial-gradient(farthest-side, transparent calc(100% - 11px), #000 calc(100% - 8px), #000 calc(100% - 2px), transparent 100%);
  filter:
    blur(.15px)
    drop-shadow(0 0 var(--orbit-glow-size) rgba(49, 228, 217, .42))
    drop-shadow(0 0 42px rgba(255, 255, 255, .48));
  opacity: var(--orbit-progress-opacity);
}

body.public-home[data-public-view="intro"] .orbit-season-progress,
body.public-home[data-public-view="intro"] .orbit-sweep-line,
body.public-home[data-public-view="intro"] .orbit-spark-dot,
body.public-home[data-public-view="intro"] .orbit-glint {
  display: none !important;
}

body.public-home[data-public-view="intro"] .orbit-month-lights {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: normal;
  opacity: 1;
  filter:
    drop-shadow(0 0 7px rgba(255, 255, 255, .46))
    drop-shadow(0 0 18px rgba(51, 229, 218, .20));
}

body.public-home[data-public-view="intro"] .orbit-month-segment {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity .08s linear;
}

body.public-home[data-public-view="intro"] .orbit-month-segment.is-active {
  filter: none;
  transform: none;
}

body.public-home[data-public-view="intro"] .orbit-month-fill {
  fill: url(#orbitMonthFill);
  display: none;
}

body.public-home[data-public-view="intro"] .orbit-month-facet {
  fill: url(#orbitMonthFacet);
  display: none;
}

body.public-home[data-public-view="intro"] .orbit-month-ridge {
  fill: none;
  stroke: rgba(255, 255, 255, .70);
  stroke-width: .42;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: none;
}

body.public-home[data-public-view="intro"] .orbit-charge-cell {
  opacity: 0;
  stroke: rgba(255, 255, 255, .82);
  stroke-width: .24;
  stroke-linejoin: round;
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity .08s linear;
  shape-rendering: geometricPrecision;
}

body.public-home[data-public-view="intro"] .orbit-charge-cell-low {
  fill: url(#orbitChargeLow);
  filter: none;
}

body.public-home[data-public-view="intro"] .orbit-charge-cell-mid {
  fill: url(#orbitChargeMid);
  filter: none;
}

body.public-home[data-public-view="intro"] .orbit-charge-cell-high {
  fill: url(#orbitChargeHigh);
  filter: none;
}

body.public-home[data-public-view="intro"] .orbit-charge-cell.is-charging {
  transform: none;
  filter: none;
}

body.public-home[data-public-view="intro"] .orbit-month-sweep {
  display: none;
}

body.public-home[data-public-view="intro"] .orbit-aurora {
  animation-duration: 19s !important;
}

body.public-home[data-public-view="intro"] .orbit-sweep-line,
body.public-home[data-public-view="intro"] .orbit-spark-dot {
  animation: none !important;
  transform: translate(-50%, -50%) rotate(var(--orbit-rotation)) !important;
}

body.public-home[data-public-view="intro"] .orbit-sweep-line-soft,
body.public-home[data-public-view="intro"] .orbit-spark-dot-secondary {
  animation-duration: 38s !important;
}

@keyframes orbit-badge-cycle {
  0%, 42% {
    opacity: 0;
    transform: translateY(5px) scale(.97);
  }
  51%, 92% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-2px) scale(.985);
  }
}

@media (min-width: 921px) {
  body.public-home[data-public-view="intro"] .premium-landing {
    grid-template-columns: minmax(360px, .86fr) minmax(540px, 1.14fr) !important;
    gap: clamp(18px, 2.4vw, 42px) !important;
    width: min(1280px, calc(100% - 64px)) !important;
    height: 100svh !important;
    min-height: 760px !important;
    padding-top: clamp(188px, 20vh, 236px) !important;
    padding-bottom: clamp(18px, 2.8vh, 32px) !important;
    overflow: visible !important;
  }

  body.public-home[data-public-view="intro"] .premium-copy {
    z-index: 4;
    max-width: 520px;
  }

  body.public-home[data-public-view="intro"] .seasonal-orbit-showcase {
    width: min(clamp(720px, 47vw, 860px), calc((100svh - 285px) * 1.333)) !important;
    justify-self: center !important;
    align-self: center !important;
    transform: translate(14px, clamp(12px, 3vh, 30px)) !important;
    z-index: 1;
    pointer-events: none;
  }
}

@media (min-width: 1500px) {
  body.public-home[data-public-view="intro"] .seasonal-orbit-showcase {
    width: min(clamp(780px, 45vw, 920px), calc((100svh - 285px) * 1.333)) !important;
    transform: translate(8px, clamp(10px, 2.8vh, 28px)) !important;
  }
}

@media (min-width: 921px) and (max-width: 1180px) {
  body.public-home[data-public-view="intro"] .premium-landing {
    grid-template-columns: minmax(320px, .88fr) minmax(520px, 1.12fr) !important;
    width: min(1120px, calc(100% - 42px)) !important;
    gap: 10px !important;
  }

  body.public-home[data-public-view="intro"] .seasonal-orbit-showcase {
    width: clamp(780px, 72vw, 900px) !important;
    transform: translate(-22px, 42px) !important;
  }
}

@media (max-width: 920px) {
  body.public-home[data-public-view="intro"] .seasonal-orbit-showcase {
    width: min(820px, calc(100vw + 104px)) !important;
    max-width: none !important;
    justify-self: center !important;
    transform: none !important;
    pointer-events: none;
  }

body.public-home[data-public-view="intro"] .seasonal-orbit-asset {
    width: 100% !important;
    margin-left: 0 !important;
  }
}

/* Calculator compact pass: keep each input tab inside the card without its own scrollbar. */
body.public-home[data-public-view="calculator"] #tool-view {
  align-items: center !important;
  padding: clamp(12px, 2.2vh, 26px) 18px !important;
  overflow: hidden !important;
}

body.public-home[data-public-view="calculator"] .tool-shell {
  width: min(1120px, calc(100% - 24px)) !important;
  max-height: calc(100svh - clamp(24px, 4.4vh, 52px)) !important;
  gap: clamp(8px, 1.2vh, 12px) !important;
  padding: clamp(14px, 1.8vw, 22px) !important;
  overflow: visible !important;
}

body.public-home[data-public-view="calculator"] .tool-topbar {
  min-height: 0 !important;
  align-items: center !important;
  gap: clamp(10px, 1.4vw, 16px) !important;
}

body.public-home[data-public-view="calculator"] .tool-home-button {
  min-width: 0 !important;
  min-height: 58px !important;
  padding: 8px 16px !important;
}

body.public-home[data-public-view="calculator"] .tool-home-button .home-glyph {
  width: 26px !important;
  height: 26px !important;
}

body.public-home[data-public-view="calculator"] .tool-back-button {
  min-height: 44px !important;
  padding: 10px 18px !important;
}

body.public-home[data-public-view="calculator"] .tool-copy {
  gap: 4px !important;
}

body.public-home[data-public-view="calculator"] .tool-copy p {
  font-size: clamp(15px, 1.45vw, 18px) !important;
  line-height: 1.22 !important;
}

body.public-home[data-public-view="calculator"] .public-calculator {
  grid-template-rows: auto 1fr auto !important;
  min-height: 0 !important;
  max-height: none !important;
  padding: clamp(16px, 2vw, 24px) !important;
  overflow: visible !important;
}

body.public-home[data-public-view="calculator"] .wizard-top {
  gap: 14px !important;
  margin-bottom: clamp(10px, 1.4vh, 16px) !important;
  padding-bottom: clamp(8px, 1.2vh, 12px) !important;
}

body.public-home[data-public-view="calculator"] .wizard-top h2 {
  font-size: clamp(24px, 2.45vw, 34px) !important;
  line-height: 1 !important;
}

body.public-home[data-public-view="calculator"] .wizard-top .eyebrow {
  font-size: 11px !important;
}

body.public-home[data-public-view="calculator"] .wizard-meter {
  height: 7px !important;
}

body.public-home[data-public-view="calculator"] #calculator-form .wizard-step.is-active:not([hidden]) {
  min-height: 0 !important;
  overflow: visible !important;
  padding: 0 !important;
  scrollbar-width: none !important;
}

body.public-home[data-public-view="calculator"] #calculator-form .wizard-step.is-active:not([hidden])::-webkit-scrollbar {
  display: none !important;
}

body.public-home[data-public-view="calculator"] .question-head {
  margin-bottom: clamp(10px, 1.4vh, 16px) !important;
}

body.public-home[data-public-view="calculator"] .question-head::before {
  width: 46px !important;
  height: 3px !important;
  margin-bottom: clamp(10px, 1.4vh, 14px) !important;
}

body.public-home[data-public-view="calculator"] .question-head h3 {
  max-width: 100% !important;
  font-size: clamp(23px, 2.55vw, 34px) !important;
  line-height: 1.04 !important;
}

body.public-home[data-public-view="calculator"] .simple-grid,
body.public-home[data-public-view="calculator"] .form-grid {
  gap: clamp(10px, 1.2vw, 12px) !important;
}

body.public-home[data-public-view="calculator"] .field,
body.public-home[data-public-view="calculator"] .amenity-grid label,
body.public-home[data-public-view="calculator"] .country-choice-grid label {
  border-radius: 14px !important;
}

body.public-home[data-public-view="calculator"] .field {
  gap: 5px !important;
  padding: 10px 14px !important;
}

body.public-home[data-public-view="calculator"] .field > span:first-child {
  font-size: 12px !important;
  line-height: 1.15 !important;
}

body.public-home[data-public-view="calculator"] .field input,
body.public-home[data-public-view="calculator"] .field select,
body.public-home[data-public-view="calculator"] .field textarea {
  min-height: 44px !important;
  padding: 9px 13px !important;
  font-size: 15px !important;
}

body.public-home[data-public-view="calculator"] .field-hint,
body.public-home[data-public-view="calculator"] .model-assumption span {
  font-size: 11px !important;
  line-height: 1.28 !important;
}

body.public-home[data-public-view="calculator"] .country-choice-grid label {
  min-height: 70px !important;
  padding: 14px 16px !important;
}

body.public-home[data-public-view="calculator"] .country-choice-grid strong {
  font-size: clamp(17px, 1.5vw, 22px) !important;
  line-height: 1.05 !important;
}

body.public-home[data-public-view="calculator"] .country-choice-grid span {
  margin-top: 5px !important;
  font-size: 11px !important;
  line-height: 1.22 !important;
}

body.public-home[data-public-view="calculator"] .amenity-grid label {
  min-height: 46px !important;
  padding: 10px 12px !important;
}

body.public-home[data-public-view="calculator"] .model-assumption {
  padding: 14px 16px !important;
  border-radius: 14px !important;
}

body.public-home[data-public-view="calculator"] .place-suggestions {
  max-height: min(138px, 25vh) !important;
}

body.public-home[data-public-view="calculator"] .place-suggestions button {
  min-height: 46px !important;
  padding: 8px 11px !important;
}

body.public-home[data-public-view="calculator"] .wizard-controls {
  margin-top: clamp(10px, 1.4vh, 16px) !important;
  padding-top: clamp(10px, 1.4vh, 14px) !important;
}

body.public-home[data-public-view="calculator"] .wizard-controls .primary-button,
body.public-home[data-public-view="calculator"] .wizard-controls .secondary-button {
  min-width: 150px !important;
  min-height: 44px !important;
  border-radius: 14px !important;
  font-size: 14px !important;
}

@media (max-height: 780px) and (min-width: 761px) {
  body.public-home[data-public-view="calculator"] #tool-view {
    padding-block: 10px !important;
  }

  body.public-home[data-public-view="calculator"] .tool-shell {
    max-height: calc(100svh - 20px) !important;
    padding: 12px !important;
  }

  body.public-home[data-public-view="calculator"] .tool-home-button {
    min-height: 52px !important;
  }

  body.public-home[data-public-view="calculator"] .public-calculator {
    padding: 14px 18px !important;
  }

  body.public-home[data-public-view="calculator"] .wizard-top h2 {
    font-size: clamp(22px, 2.15vw, 30px) !important;
  }

  body.public-home[data-public-view="calculator"] .question-head h3 {
    font-size: clamp(22px, 2.2vw, 30px) !important;
  }

  body.public-home[data-public-view="calculator"] .field input,
  body.public-home[data-public-view="calculator"] .field select,
  body.public-home[data-public-view="calculator"] .field textarea {
    min-height: 40px !important;
  }

  body.public-home[data-public-view="calculator"] .country-choice-grid label {
    min-height: 62px !important;
  }
}

@media (max-width: 760px) {
  body.public-home[data-public-view="calculator"] .tool-app {
    overflow-y: auto !important;
  }

  body.public-home[data-public-view="calculator"] #tool-view {
    align-items: flex-start !important;
    min-height: 100svh !important;
    height: auto !important;
    padding: 10px 12px 18px !important;
    overflow: visible !important;
  }

  body.public-home[data-public-view="calculator"] .tool-shell {
    width: 100% !important;
    max-height: none !important;
    padding: 12px !important;
    gap: 10px !important;
    overflow: visible !important;
  }

  body.public-home[data-public-view="calculator"] .tool-topbar {
    grid-template-columns: auto auto 1fr auto !important;
    align-items: center !important;
  }

  body.public-home[data-public-view="calculator"] .tool-home-button {
    min-height: 52px !important;
    padding: 7px 13px !important;
  }

  body.public-home[data-public-view="calculator"] .tool-copy p {
    font-size: 13px !important;
  }

  body.public-home[data-public-view="calculator"] .public-calculator {
    padding: 14px !important;
  }

  body.public-home[data-public-view="calculator"] .wizard-top {
    grid-template-columns: 1fr !important;
  }

  body.public-home[data-public-view="calculator"] .wizard-top h2 {
    font-size: clamp(24px, 8vw, 30px) !important;
  }

  body.public-home[data-public-view="calculator"] .question-head h3 {
    font-size: clamp(24px, 8vw, 30px) !important;
  }

  body.public-home[data-public-view="calculator"] .field {
    padding: 10px 12px !important;
  }

  body.public-home[data-public-view="calculator"] .field input,
  body.public-home[data-public-view="calculator"] .field select,
  body.public-home[data-public-view="calculator"] .field textarea {
    font-size: 14px !important;
  }

  body.public-home[data-public-view="calculator"] .wizard-controls {
    grid-template-columns: 1fr 1fr !important;
  }

  body.public-home[data-public-view="calculator"] .wizard-controls .primary-button,
  body.public-home[data-public-view="calculator"] .wizard-controls .secondary-button {
    min-width: 0 !important;
    width: 100% !important;
  }
}

/* Mobile calculator fit: keep tab controls reachable without nested scrollbars. */
@media (max-width: 760px) {
  body.public-home[data-public-view="calculator"] .tool-app {
    overflow-y: hidden !important;
    overflow-x: hidden !important;
  }

  body.public-home[data-public-view="calculator"] #tool-view {
    min-height: 100svh !important;
    padding: 8px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  body.public-home[data-public-view="calculator"] .tool-shell {
    max-width: 100% !important;
    padding: 8px !important;
    gap: 8px !important;
    border-radius: 18px !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }

  body.public-home[data-public-view="calculator"] .tool-home-button {
    min-height: 44px !important;
    border-radius: 14px !important;
    padding: 6px 10px !important;
    font-size: 12px !important;
  }

  body.public-home[data-public-view="calculator"] .tool-home-button .home-glyph {
    width: 21px !important;
    height: 21px !important;
  }

  body.public-home[data-public-view="calculator"] .tool-step-back,
  body.public-home[data-public-view="calculator"] .tool-back-button {
    min-height: 40px !important;
    padding: 8px 12px !important;
    font-size: 12px !important;
  }

  body.public-home[data-public-view="calculator"] .tool-copy .eyebrow {
    font-size: 9px !important;
  }

  body.public-home[data-public-view="calculator"] .tool-copy p,
  body.public-home[data-public-view="calculator"] .tool-copy strong {
    font-size: 12px !important;
    line-height: 1.15 !important;
  }

  body.public-home[data-public-view="calculator"] .public-calculator {
    max-width: 100% !important;
    padding: 10px !important;
    border-radius: 16px !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }

  body.public-home[data-public-view="calculator"] .wizard-top {
    margin-bottom: 8px !important;
    padding-bottom: 8px !important;
  }

  body.public-home[data-public-view="calculator"] .wizard-top h2 {
    font-size: clamp(21px, 6.4vw, 26px) !important;
  }

  body.public-home[data-public-view="calculator"] .wizard-meter {
    height: 6px !important;
  }

  body.public-home[data-public-view="calculator"] .question-head {
    margin-bottom: 8px !important;
  }

  body.public-home[data-public-view="calculator"] .question-head::before {
    width: 38px !important;
    height: 3px !important;
    margin-bottom: 7px !important;
  }

  body.public-home[data-public-view="calculator"] .question-head h3 {
    max-width: 100% !important;
    font-size: clamp(18px, 5.45vw, 22px) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.015em !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }

  body.public-home[data-public-view="calculator"] .simple-grid,
  body.public-home[data-public-view="calculator"] .form-grid {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }

  body.public-home[data-public-view="calculator"] .place-field,
  body.public-home[data-public-view="calculator"] .model-assumption,
  body.public-home[data-public-view="calculator"] .field-wide {
    grid-column: 1 / -1 !important;
  }

  body.public-home[data-public-view="calculator"] .country-choice-grid {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }

  body.public-home[data-public-view="calculator"] .country-choice-grid label {
    min-height: 50px !important;
    padding: 8px 9px !important;
  }

  body.public-home[data-public-view="calculator"] .country-choice-grid strong {
    font-size: 14px !important;
  }

  body.public-home[data-public-view="calculator"] .country-choice-grid span,
  body.public-home[data-public-view="calculator"] .country-choice-grid small {
    font-size: 9px !important;
    line-height: 1.14 !important;
  }

  body.public-home[data-public-view="calculator"] .field {
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    border-radius: 12px !important;
    padding: 8px 9px !important;
  }

  body.public-home[data-public-view="calculator"] .field > span:first-child {
    font-size: 10px !important;
    line-height: 1.12 !important;
  }

  body.public-home[data-public-view="calculator"] .field input,
  body.public-home[data-public-view="calculator"] .field select,
  body.public-home[data-public-view="calculator"] .field textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    min-height: 36px !important;
    padding: 7px 9px !important;
    border-radius: 10px !important;
    font-size: 12px !important;
    text-overflow: ellipsis !important;
  }

  body.public-home[data-public-view="calculator"] .field-hint,
  body.public-home[data-public-view="calculator"] .model-assumption span {
    font-size: 8.5px !important;
    line-height: 1.16 !important;
    overflow-wrap: anywhere !important;
  }

  body.public-home[data-public-view="calculator"] .model-assumption {
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    padding: 10px !important;
  }

  body.public-home[data-public-view="calculator"] .model-assumption strong {
    font-size: 12px !important;
    line-height: 1.15 !important;
  }

  body.public-home[data-public-view="calculator"] .amenity-grid {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }

  body.public-home[data-public-view="calculator"] .amenity-grid label {
    min-height: 36px !important;
    padding: 8px 9px !important;
    font-size: 11px !important;
  }

  body.public-home[data-public-view="calculator"] .place-suggestions {
    max-height: 118px !important;
  }

  body.public-home[data-public-view="calculator"] .place-suggestions button {
    min-height: 40px !important;
  }

  body.public-home[data-public-view="calculator"] .wizard-controls {
    margin-top: 8px !important;
    padding-top: 8px !important;
    gap: 8px !important;
  }

  body.public-home[data-public-view="calculator"] .wizard-controls .primary-button,
  body.public-home[data-public-view="calculator"] .wizard-controls .secondary-button {
    min-height: 40px !important;
    border-radius: 12px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 620px) {
  html.public-document,
  body.public-home[data-public-view="intro"] {
    overflow-x: hidden !important;
  }

  body.public-home[data-public-view="intro"] .premium-site-header {
    min-height: 184px !important;
    padding-top: 12px !important;
    padding-bottom: 8px !important;
  }

  body.public-home[data-public-view="intro"] .premium-brand-logo img {
    width: min(78vw, 320px) !important;
  }

  body.public-home[data-public-view="intro"] .premium-landing {
    width: min(calc(100% - 24px), 560px) !important;
    justify-items: center !important;
    gap: 16px !important;
    padding-top: 182px !important;
    padding-bottom: 20px !important;
  }

  body.public-home[data-public-view="intro"] .premium-copy,
  body.public-home[data-public-view="intro"] .premium-copy h1,
  body.public-home[data-public-view="intro"] .premium-lead,
  body.public-home[data-public-view="intro"] .home-location-form,
  body.public-home[data-public-view="intro"] .home-income-button,
  body.public-home[data-public-view="intro"] .home-trust-list {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  body.public-home[data-public-view="intro"] .premium-copy h1 {
    font-size: clamp(34px, 10.1vw, 40px) !important;
    line-height: 1.02 !important;
  }

  body.public-home[data-public-view="intro"] .premium-lead {
    margin-top: 12px !important;
    font-size: 15px !important;
    line-height: 1.42 !important;
  }

  body.public-home[data-public-view="intro"] .home-location-form {
    margin-top: 18px !important;
  }

  body.public-home[data-public-view="intro"] .home-income-button {
    min-width: 0 !important;
    min-height: 58px !important;
    padding: 7px 7px 7px 20px !important;
  }

  body.public-home[data-public-view="intro"] .home-income-label {
    font-size: 14px !important;
  }

  body.public-home[data-public-view="intro"] .home-income-arrow {
    width: 42px !important;
    height: 42px !important;
  }

  body.public-home[data-public-view="intro"] .home-trust-list {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
    margin-top: 15px !important;
  }

  body.public-home[data-public-view="intro"] .home-trust-list div,
  body.public-home[data-public-view="intro"] .home-trust-list div:first-child {
    padding: 0 7px !important;
    border-left: 1px solid rgba(36, 52, 71, 0.10) !important;
  }

  body.public-home[data-public-view="intro"] .home-trust-list div:first-child {
    border-left: 0 !important;
    padding-left: 0 !important;
  }

  body.public-home[data-public-view="intro"] .home-trust-list strong {
    font-size: 11px !important;
  }

  body.public-home[data-public-view="intro"] .home-trust-list span {
    margin-top: 3px !important;
    font-size: 9px !important;
    line-height: 1.2 !important;
  }

  body.public-home[data-public-view="intro"] .seasonal-orbit-showcase {
    width: min(300px, 86vw) !important;
    max-width: min(300px, 86vw) !important;
    margin-inline: 0 !important;
    margin-top: 6px !important;
  }

  body.public-home[data-public-view="intro"] .seasonal-orbit-asset {
    width: 100% !important;
    margin-left: 0 !important;
  }
}

/* Header fit: one restrained logo lockup that never crosses into hero copy. */
@media (min-width: 921px) {
  body.public-home[data-public-view="intro"] .premium-site-header {
    grid-template-rows: 42px auto !important;
    min-height: 190px !important;
    padding-top: 20px !important;
    padding-bottom: 4px !important;
  }

  body.public-home[data-public-view="intro"] .premium-brand-logo img {
    width: clamp(425px, 32.5vw, 538px) !important;
    max-width: min(538px, 100%) !important;
  }

  body.public-home[data-public-view="intro"] .premium-nav {
    max-width: calc(100vw - 56px) !important;
  }

  body.public-home[data-public-view="intro"] .premium-landing {
    padding-top: clamp(250px, 27vh, 282px) !important;
  }
}

@media (min-width: 621px) and (max-width: 920px) {
  body.public-home[data-public-view="intro"] .premium-site-header {
    min-height: 194px !important;
    padding-top: 16px !important;
    padding-bottom: 8px !important;
  }

  body.public-home[data-public-view="intro"] .premium-brand-logo img {
    width: min(68vw, 360px) !important;
  }

  body.public-home[data-public-view="intro"] .premium-nav {
    max-width: calc(100vw - 28px) !important;
    flex-wrap: wrap !important;
  }
}

/* Calculator Home: the roof mark is deliberately above its label, never beside it. */
body.public-home[data-public-view="calculator"] .tool-home-button {
  grid-template-rows: 32px auto !important;
  gap: 4px !important;
  min-width: 96px !important;
  min-height: 78px !important;
  padding: 8px 14px 10px !important;
  border-radius: 22px !important;
  line-height: 1 !important;
}

body.public-home[data-public-view="calculator"] .tool-home-button .home-glyph {
  width: 36px !important;
  height: 32px !important;
}

body.public-home[data-public-view="calculator"] .tool-home-button .home-glyph::before {
  top: 1px !important;
  width: 25px !important;
  height: 25px !important;
  border-width: 4px !important;
}

body.public-home[data-public-view="calculator"] .tool-home-button .home-glyph::after {
  display: none !important;
}

.premium-page-home .premium-home-mark::after,
body.public-home[data-public-view="calculator"] .tool-home-button .home-glyph::after {
  display: none !important;
}

@media (max-width: 620px) {
  body.public-home[data-public-view="intro"] .premium-site-header {
    min-height: 174px !important;
  }

  body.public-home[data-public-view="intro"] .premium-brand-logo img {
    width: min(74vw, 300px) !important;
  }

  body.public-home[data-public-view="calculator"] .tool-home-button {
    grid-template-rows: 27px auto !important;
    gap: 2px !important;
    min-width: 76px !important;
    min-height: 62px !important;
    padding: 6px 10px 8px !important;
    border-radius: 18px !important;
    font-size: 12px !important;
  }

  body.public-home[data-public-view="calculator"] .tool-home-button .home-glyph {
    width: 31px !important;
    height: 27px !important;
  }

  body.public-home[data-public-view="calculator"] .tool-home-button .home-glyph::before {
    width: 21px !important;
    height: 21px !important;
    border-width: 3px !important;
  }

  body.public-home[data-public-view="calculator"] .tool-home-button .home-glyph::after {
    display: none !important;
  }
}

/* Final alignment: keep the Home mark complete and give the hero copy more breathing room. */
.premium-page-home .premium-home-mark::after,
body.public-home[data-public-view="calculator"] .tool-home-button .home-glyph::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 50% !important;
  top: 19px !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 999px !important;
  background: #18b89a !important;
  transform: translateX(-50%) !important;
  box-shadow: 0 0 14px rgba(18, 184, 154, 0.24) !important;
}

@media (min-width: 921px) {
  body.public-home[data-public-view="intro"] .premium-copy {
    left: calc(clamp(72px, 7vw, 132px) + clamp(28px, 2.4vw, 48px)) !important;
    top: clamp(22px, 2.4vh, 38px) !important;
  }
}

@media (max-width: 620px) {
  body.public-home[data-public-view="calculator"] .tool-home-button .home-glyph::after {
    top: 16px !important;
    width: 7px !important;
    height: 7px !important;
  }
}

/* Final visual hierarchy: the brand leads; the Home mark keeps a true circular dot. */
body.public-home[data-public-view="calculator"] .tool-home-button .home-glyph::after,
.premium-page-home .premium-home-mark::after {
  width: 10px !important;
  min-width: 10px !important;
  max-width: 10px !important;
  height: 10px !important;
  min-height: 10px !important;
  max-height: 10px !important;
  aspect-ratio: 1 / 1 !important;
  box-sizing: border-box !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  clip-path: circle(50% at 50% 50%) !important;
  background: #18b89a !important;
}

@media (min-width: 921px) {
  body.public-home[data-public-view="intro"] .premium-copy h1 {
    font-size: clamp(46px, 3.5vw, 50px) !important;
    line-height: 1.07 !important;
  }
}

/* Desktop hero copy: preserve the composition while reducing the complete left group by 20%. */
@media (min-width: 921px) {
  body.public-home[data-public-view="intro"] .premium-copy {
    zoom: 0.8;
  }
}

/* Mobile quality baseline: no page-width overflow, no cramped controls, and natural document scroll. */
@media (max-width: 760px) {
  html.public-document,
  html.premium-static-document,
  html.premium-contact-document,
  html.premium-faq-document,
  body.public-home,
  body.premium-about-page,
  body.premium-contact-page,
  body.premium-faq-page {
    width: 100%;
    min-width: 0;
    overflow-x: hidden !important;
  }

  body.public-home[data-public-view="intro"] .premium-site-header {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
    justify-items: center;
    width: min(calc(100% - 32px), 560px) !important;
    min-height: 0 !important;
    gap: 12px !important;
    padding: 18px 0 10px !important;
  }

  body.public-home[data-public-view="intro"] .premium-brand-logo {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: center !important;
  }

  body.public-home[data-public-view="intro"] .premium-nav {
    grid-column: 1 !important;
    grid-row: 2 !important;
    justify-self: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    max-width: 100% !important;
    gap: 6px !important;
  }

  body.public-home[data-public-view="intro"] .premium-nav .premium-nav-secondary,
  body.public-home[data-public-view="intro"] .premium-nav .premium-login-link,
  body.public-home[data-public-view="intro"] .premium-nav .language-trigger {
    min-width: 0 !important;
    min-height: 36px !important;
    padding: 0 11px !important;
    font-size: 11px !important;
  }

  body.public-home[data-public-view="intro"] .premium-landing {
    grid-template-columns: 1fr !important;
    width: min(calc(100% - 32px), 560px) !important;
    min-height: 0 !important;
    height: auto !important;
    gap: 22px !important;
    padding: 28px 0 40px !important;
  }

  body.public-home[data-public-view="intro"] .premium-copy {
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    zoom: 1 !important;
  }

  body.public-home[data-public-view="intro"] .seasonal-orbit-showcase {
    justify-self: center !important;
    width: min(92vw, 420px) !important;
    max-width: 100% !important;
    margin-top: 0 !important;
  }

  .premium-page-header {
    grid-template-columns: auto minmax(0, 1fr) !important;
    width: min(calc(100% - 32px), 560px) !important;
    gap: 10px !important;
    padding: 16px 0 12px !important;
  }

  .premium-page-home {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .premium-page-brand {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    width: min(58vw, 300px) !important;
    max-width: 100% !important;
  }

  .premium-page-brand img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .premium-page-nav {
    grid-column: 1 / -1 !important;
    justify-self: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    gap: 6px !important;
  }

  .premium-page-nav a,
  .premium-page-nav .language-trigger {
    min-width: 0 !important;
    min-height: 36px !important;
    padding: 0 11px !important;
    font-size: 11px !important;
  }

  .premium-page-nav .language-code,
  body.public-home[data-public-view="intro"] .premium-nav .language-code {
    display: none !important;
  }

  .premium-about-main,
  .premium-contact-main,
  .premium-faq-main {
    width: min(calc(100% - 32px), 560px) !important;
    padding: 28px 0 48px !important;
  }

  .premium-about-hero,
  .premium-contact-shell,
  .premium-faq-hero,
  .premium-about-cards,
  .premium-service-grid,
  .premium-faq-list,
  .premium-contact-form {
    grid-template-columns: 1fr !important;
  }

  .premium-about-hero,
  .premium-contact-shell,
  .premium-faq-hero {
    gap: 24px !important;
  }

  .premium-about-copy h1,
  .premium-contact-copy h1,
  .premium-faq-copy h1 {
    font-size: clamp(34px, 10.2vw, 44px) !important;
    line-height: 1.05 !important;
  }

  .premium-contact-form {
    padding: 16px !important;
  }

  body.public-home[data-public-view="calculator"] .tool-app,
  body.public-home[data-public-view="calculator"] #tool-view,
  body.public-home[data-public-view="calculator"] .tool-shell,
  body.public-home[data-public-view="calculator"] .public-calculator,
  body.public-home[data-public-view="calculator"] #calculator-form .wizard-step.is-active:not([hidden]) {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  body.public-home[data-public-view="calculator"] #tool-view {
    padding-bottom: 28px !important;
  }

  body.public-home[data-public-view="calculator"] .tool-shell {
    width: calc(100% - 32px) !important;
    max-width: 100% !important;
    margin-inline: auto !important;
  }

  body.public-home[data-public-view="calculator"] .public-calculator {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  body.public-home[data-public-view="calculator"] .simple-grid,
  body.public-home[data-public-view="calculator"] .form-grid,
  body.public-home[data-public-view="calculator"] .country-choice-grid,
  body.public-home[data-public-view="calculator"] .amenity-grid {
    grid-template-columns: 1fr !important;
  }

  body.public-home[data-public-view="calculator"] .wizard-controls {
    grid-template-columns: 1fr !important;
  }
}

/* iPhone final pass: make every public view a normal, scrollable document. */
@media (max-width: 760px) {
  .cookie-consent,
  body.public-home[data-public-view="intro"] .cookie-consent {
    position: fixed !important;
    inset: auto 12px calc(12px + env(safe-area-inset-bottom)) 12px !important;
    width: auto !important;
    max-width: none !important;
    box-sizing: border-box !important;
    padding: 16px !important;
    border-radius: 22px !important;
    z-index: 100 !important;
  }

  .cookie-consent-copy {
    min-width: 0 !important;
  }

  .cookie-consent-copy h2,
  .cookie-consent-copy strong {
    overflow-wrap: anywhere !important;
    font-size: 18px !important;
    line-height: 1.15 !important;
  }

  .cookie-consent-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr) !important;
    gap: 8px !important;
  }

  .cookie-consent-actions .primary-button,
  .cookie-consent-actions .secondary-button {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 44px !important;
    margin: 0 !important;
    padding-inline: 8px !important;
    font-size: 12px !important;
  }

  /* All public navigation stays available and wraps instead of leaving the screen. */
  body.public-home[data-public-view="intro"] .premium-nav .premium-nav-secondary {
    display: inline-flex !important;
  }

  body.public-home[data-public-view="intro"] .premium-nav {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    gap: 6px !important;
  }

  body.public-home[data-public-view="intro"] .premium-nav .premium-nav-secondary,
  body.public-home[data-public-view="intro"] .premium-nav .premium-login-link,
  body.public-home[data-public-view="intro"] .premium-nav .language-trigger {
    width: 100% !important;
    min-width: 0 !important;
    justify-content: center !important;
  }

  /* Calculator content must never be masked by the forward button. */
  body.public-home[data-public-view="calculator"] .tool-app,
  body.public-home[data-public-view="calculator"] #tool-view,
  body.public-home[data-public-view="calculator"] .tool-shell,
  body.public-home[data-public-view="calculator"] .public-calculator,
  body.public-home[data-public-view="calculator"] #calculator-form,
  body.public-home[data-public-view="calculator"] #calculator-form .wizard-step.is-active:not([hidden]) {
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  body.public-home[data-public-view="calculator"] .tool-shell {
    padding-bottom: 22px !important;
  }

  body.public-home[data-public-view="calculator"] .wizard-controls {
    position: static !important;
    inset: auto !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    margin-top: 18px !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body.public-home[data-public-view="calculator"],
  body.public-home[data-public-view="result"] {
    height: auto !important;
    min-height: 100svh !important;
    overflow-y: auto !important;
  }

  body.public-home[data-public-view="calculator"] .tool-app,
  body.public-home[data-public-view="result"] .tool-app {
    position: relative !important;
    inset: auto !important;
    height: auto !important;
    min-height: 100svh !important;
    overflow: visible !important;
  }

  body.public-home[data-public-view="calculator"] #tool-view,
  body.public-home[data-public-view="result"] #tool-view {
    position: relative !important;
    inset: auto !important;
    display: block !important;
    height: auto !important;
    min-height: 100svh !important;
    padding: 12px 0 32px !important;
    overflow: visible !important;
  }

  /* Result report: same phone-first rhythm as the calculator, with no giant desktop blocks. */
  body.public-home[data-public-view="result"] .tool-app,
  body.public-home[data-public-view="result"] #tool-view,
  body.public-home[data-public-view="result"] .tool-shell,
  body.public-home[data-public-view="result"] .result-report {
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  body.public-home[data-public-view="result"] .tool-shell,
  body.public-home[data-public-view="result"] .result-report {
    width: min(calc(100% - 32px), 560px) !important;
    max-width: 100% !important;
    margin-inline: auto !important;
  }

  body.public-home[data-public-view="result"] .result-report {
    padding: 0 !important;
  }

  body.public-home[data-public-view="result"] .result-report-nav {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    gap: 14px !important;
    padding: 18px 14px !important;
  }

  body.public-home[data-public-view="result"] .result-report-brand {
    width: min(250px, 100%) !important;
    max-width: 100% !important;
  }

  body.public-home[data-public-view="result"] .result-brand-logo {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  body.public-home[data-public-view="result"] .result-report-nav nav {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 8px !important;
  }

  body.public-home[data-public-view="result"] .result-report-nav nav a,
  body.public-home[data-public-view="result"] .result-report-nav .result-nav-button {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 40px !important;
    padding: 8px 9px !important;
    white-space: normal !important;
    justify-content: center !important;
    font-size: 12px !important;
  }

  body.public-home[data-public-view="result"] .result-report-hero,
  body.public-home[data-public-view="result"] .result-premium-summary,
  body.public-home[data-public-view="result"] .result-recap-grid,
  body.public-home[data-public-view="result"] .result-guest-recap,
  body.public-home[data-public-view="result"] .result-options-grid,
  body.public-home[data-public-view="result"] .result-actions {
    grid-template-columns: 1fr !important;
  }

  body.public-home[data-public-view="result"] .result-report-hero {
    gap: 18px !important;
    padding: 18px 14px !important;
  }

  body.public-home[data-public-view="result"] .result-copy-block,
  body.public-home[data-public-view="result"] .result-total-card,
  body.public-home[data-public-view="result"] .result-model-card,
  body.public-home[data-public-view="result"] .result-guest-recap article {
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 20px !important;
  }

  body.public-home[data-public-view="result"] .result-report-hero h2 {
    font-size: clamp(34px, 10.5vw, 42px) !important;
    line-height: 1.04 !important;
    overflow-wrap: anywhere !important;
  }

  body.public-home[data-public-view="result"] .result-total-card > strong,
  body.public-home[data-public-view="result"] .result-model-card > strong {
    font-size: clamp(38px, 11vw, 46px) !important;
    line-height: 0.98 !important;
    overflow-wrap: anywhere !important;
  }
}

/* Result comparison: the message and saving amount must remain separate at every width. */
body.public-home[data-public-view="result"] .result-benefit-line {
  display: grid !important;
  grid-template-columns: 64px minmax(0, 1fr) max-content !important;
  align-items: center !important;
  gap: clamp(14px, 2vw, 28px) !important;
}

@media (max-width: 720px) {
  body.public-home .premium-background-grid {
    left: 0 !important;
    right: 0 !important;
  }
}

body.public-home[data-public-view="result"] #benefit-copy-main {
  display: block !important;
  max-width: 780px !important;
  color: #182333 !important;
  font-size: clamp(19px, 1.8vw, 26px) !important;
  line-height: 1.22 !important;
  overflow-wrap: break-word !important;
  white-space: normal !important;
}

body.public-home[data-public-view="result"] #benefit-copy-main b {
  color: #078875 !important;
  font-size: inherit !important;
  white-space: nowrap !important;
}

body.public-home[data-public-view="result"] #metric-difference {
  display: none !important;
}

body.public-home[data-public-view="result"] .option-traditional > strong {
  display: block !important;
  font-size: clamp(36px, 3.35vw, 52px) !important;
  line-height: .98 !important;
  white-space: nowrap !important;
}

/* Result detail drawer: shared basis first, then one independent calculation per scenario. */
body.public-home[data-public-view="result"] .result-recap-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

body.public-home[data-public-view="result"] .result-recap-grid article:nth-child(-n + 6) {
  grid-column: span 2;
}

body.public-home[data-public-view="result"] .result-recap-grid article:nth-child(n + 7) {
  grid-column: span 3;
}

body.public-home[data-public-view="result"] .recap-bookings i::before {
  inset: 3px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

body.public-home[data-public-view="result"] .recap-bookings i::after {
  left: 6px;
  right: 6px;
  top: 9px;
  border-top: 2px solid currentColor;
}

body.public-home[data-public-view="result"] .result-detail-layout {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 18px !important;
  padding: 0 22px 22px !important;
}

body.public-home[data-public-view="result"] .result-detail-basis,
body.public-home[data-public-view="result"] .price-breakdown-panel,
body.public-home[data-public-view="result"] .result-detail-scenario {
  min-width: 0;
  border: 1px solid rgba(24, 35, 51, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
}

body.public-home[data-public-view="result"] .result-detail-basis {
  padding: 18px;
}

body.public-home[data-public-view="result"] .result-detail-kicker {
  margin: 0 0 12px;
  color: #078875;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.public-home[data-public-view="result"] .result-detail-basis .result-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: auto;
}

body.public-home[data-public-view="result"] .result-detail-basis .result-facts article {
  min-height: 90px;
  padding: 14px;
  box-shadow: none;
}

body.public-home[data-public-view="result"] .result-detail-basis .result-facts strong {
  font-size: clamp(20px, 2.1vw, 28px);
}

body.public-home[data-public-view="result"] .result-detail-scenarios {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body.public-home[data-public-view="result"] .result-detail-scenario {
  padding: 18px;
}

body.public-home[data-public-view="result"] .result-detail-scenario h3 {
  margin: 0 0 14px;
  color: #182333;
  font-size: 16px;
  line-height: 1.25;
}

body.public-home[data-public-view="result"] .detail-self { border-color: rgba(207, 126, 14, 0.28); }
body.public-home[data-public-view="result"] .detail-mine { border-color: rgba(18, 184, 154, 0.42); background: rgba(239, 255, 252, 0.82); }
body.public-home[data-public-view="result"] .detail-agency { border-color: rgba(241, 95, 55, 0.28); background: rgba(255, 248, 246, 0.84); }

body.public-home[data-public-view="result"] .result-detail-scenario .breakdown {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

body.public-home[data-public-view="result"] .result-detail-scenario .breakdown dt,
body.public-home[data-public-view="result"] .result-detail-scenario .breakdown dd {
  min-width: 0;
  margin: 0;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(24, 35, 51, 0.09);
  color: #52687b;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

body.public-home[data-public-view="result"] .result-detail-scenario .breakdown dd {
  color: #182333;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

body.public-home[data-public-view="result"] .result-detail-scenario .breakdown .is-total {
  border-bottom: 0;
  padding-top: 3px;
  color: #078875;
  font-weight: 900;
}

body.public-home[data-public-view="result"] .price-breakdown-panel {
  padding: 18px;
  background: rgba(255, 255, 255, 0.62);
}

body.public-home[data-public-view="result"] .price-breakdown-panel h3 {
  margin: 0 0 12px;
  color: #182333;
}

@media (max-width: 1020px) {
  body.public-home[data-public-view="result"] .result-recap-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.public-home[data-public-view="result"] .result-recap-grid article:nth-child(-n + 6),
  body.public-home[data-public-view="result"] .result-recap-grid article:nth-child(n + 7) {
    grid-column: auto;
  }

  body.public-home[data-public-view="result"] .result-detail-scenarios {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body.public-home[data-public-view="result"] .result-benefit-line {
    grid-template-columns: 48px minmax(0, 1fr) !important;
    align-items: start !important;
  }

  body.public-home[data-public-view="result"] #benefit-copy-main {
    font-size: 18px !important;
  }

  body.public-home[data-public-view="result"] #metric-difference {
    display: none !important;
  }

  body.public-home[data-public-view="result"] .option-traditional > strong {
    font-size: clamp(36px, 11vw, 46px) !important;
  }

  body.public-home[data-public-view="result"] .result-recap-grid article,
  body.public-home[data-public-view="result"] .result-recap-grid article:nth-child(n + 7) {
    grid-column: auto;
  }

  body.public-home[data-public-view="result"] .result-recap-grid {
    grid-template-columns: 1fr;
  }

  body.public-home[data-public-view="result"] .result-detail-layout {
    padding: 0 12px 12px !important;
    gap: 12px !important;
  }

  body.public-home[data-public-view="result"] .result-detail-basis,
  body.public-home[data-public-view="result"] .result-detail-scenario,
  body.public-home[data-public-view="result"] .price-breakdown-panel {
    padding: 14px;
  }

  body.public-home[data-public-view="result"] .result-detail-basis .result-facts,
  body.public-home[data-public-view="result"] .result-detail-scenarios {
    grid-template-columns: 1fr;
  }
}
}
