:root {
  --navy: #0b1320;
  --ink: #111827;
  --muted: #607083;
  --red: #16a34a;
  --red-dark: #15803d;
  --accent: #16a34a;
  --accent-soft: #eaf7ef;
  --risk-low: #16a34a;
  --risk-low-soft: #eaf7ef;
  --risk-medium: #d97706;
  --risk-medium-soft: #fff7ed;
  --risk-high: #dc2626;
  --risk-high-soft: #fef2f2;
  --warning: #b45309;
  --warning-soft: #fff7ed;
  --ivory: #f7f5ef;
  --sand: #d8e3d8;
  --line: #dfe7e2;
  --white: #ffffff;
  --blue: #0f766e;
  --gold: #8a6a22;
  --shadow: 0 24px 80px rgba(11, 19, 32, 0.12);
  --display: "Playfair Display", Georgia, serif;
  --body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--ivory);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: #ffffff;
  background: #111827;
  border-radius: 6px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:where(a, button, input, select, summary):focus-visible {
  outline: 3px solid #111827;
  outline-offset: 3px;
}

.sample-report :where(a, button, summary):focus-visible,
.site-footer :where(a, button):focus-visible {
  outline-color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(247, 245, 239, 0.9);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-copy {
  min-width: 0;
}

.brand-mark-link,
.brand-name {
  display: block;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  align-content: center;
  gap: 2px;
  overflow: hidden;
  border-radius: 0;
  color: var(--white);
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-one-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  line-height: 1;
}

.brand-wheel {
  position: relative;
  width: 17px;
  height: 17px;
  border: 4px solid var(--white);
  border-radius: 999px;
}

.brand-wheel::before {
  position: absolute;
  inset: 4px;
  content: "";
  background: var(--accent);
  border-radius: 999px;
}

.brand-wheel::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  content: "";
  background: rgba(255, 255, 255, 0.34);
  transform: translate(-50%, -50%) rotate(-38deg);
}

.brand-one-text {
  color: var(--white);
  font-family: var(--body);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

.brand-mark-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 6px;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

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

.brand strong {
  font-size: 17px;
  letter-spacing: 0;
}

.brand-dot,
.brand strong .brand-dot {
  color: var(--accent);
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.brand-clarifier {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 4px;
  font-weight: 750;
}

.brand-clarifier a {
  color: inherit;
  text-decoration: none;
}

.brand-deal {
  color: var(--ink);
}

.brand-reviewer {
  color: var(--ink);
}

.brand-name strong {
  display: flex;
  align-items: baseline;
  gap: 0;
  line-height: 0.96;
}

.brand-dealr {
  color: var(--muted);
  font-size: 0.9em;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.brand-one-focus {
  color: var(--accent);
  font-size: 1em;
  font-weight: 850;
  letter-spacing: -0.045em;
}

.brand-clarifier a,
.brand-clarifier .brand-your,
.brand-clarifier .brand-deal,
.brand-clarifier .brand-reviewer {
  color: inherit;
  font-weight: 750;
}

.brand-clarifier .brand-deal,
.brand-clarifier .brand-reviewer {
  color: var(--accent);
  font-weight: 850;
}

.one-wordmark {
  display: inline-block;
  width: 0.94em;
  height: 0.94em;
  overflow: hidden;
  background: #101815 url("icon-192.png") center / cover no-repeat;
  border-radius: 0.21em;
  box-shadow: 0 0.08em 0.2em rgba(17, 24, 39, 0.14);
  vertical-align: -0.11em;
  white-space: nowrap;
}

.one-wordmark > span {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #2f3847;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-select select {
  height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 16px 34px rgba(22, 163, 74, 0.22);
}

.button-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 18px 42px rgba(22, 163, 74, 0.3);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(11, 19, 32, 0.12);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

.section-band,
.section-wrap {
  padding-right: clamp(18px, 4vw, 56px);
  padding-left: clamp(18px, 4vw, 56px);
}

.hero {
  display: grid;
  min-height: calc(100vh - 150px);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding-top: 28px;
  padding-bottom: 34px;
  background:
    linear-gradient(120deg, rgba(247, 245, 239, 0.96) 0%, rgba(255, 255, 255, 0.86) 52%, rgba(216, 227, 216, 0.76) 100%),
    radial-gradient(circle at 86% 18%, rgba(22, 163, 74, 0.16), transparent 34%);
}

.hero-content {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-california {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 18px;
  padding: 8px 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(11, 19, 32, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.hero-california span {
  display: grid;
  width: 42px;
  height: 32px;
  place-items: center;
  color: var(--white);
  background: var(--accent);
  border-radius: 999px;
  font-size: 12px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.34);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(22, 163, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
  }
}

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

h1,
h2 {
  font-family: var(--display);
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(50px, 6.4vw, 88px);
  line-height: 0.94;
}

.hero-green {
  color: var(--accent);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.hero-copy {
  max-width: 660px;
  color: #2f3847;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.negotiation-line {
  display: inline-flex;
  margin: 4px 0 0;
  padding: 12px 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 8px;
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.cta-value-line {
  max-width: 570px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.5;
}

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

.hero-proof span,
.issues-row span {
  padding: 9px 12px;
  color: #344052;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.deal-card,
.phone-preview,
.upload-panel,
.sample-report,
.pricing-card,
.faq-list details {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.deal-card {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 2;
  width: min(100%, 480px);
  padding: 24px;
  border-radius: 8px;
}

.floating-card {
  animation: floatY 5s ease-in-out infinite;
}

@keyframes floatY {
  50% {
    transform: translateY(-12px);
  }
}

.deal-card-top,
.sample-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.report-badge,
.risk-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.report-badge {
  color: var(--red);
  background: rgba(22, 163, 74, 0.1);
}

.risk-chip {
  color: #7f1d1d;
  background: var(--risk-high-soft);
}

.risk-chip.risk-low {
  color: #166534;
  background: var(--risk-low-soft);
}

.risk-chip.risk-medium {
  color: #7c3f08;
  background: var(--risk-medium-soft);
}

.risk-chip.risk-high {
  color: #7f1d1d;
  background: var(--risk-high-soft);
}

.score-orbit {
  position: relative;
  display: grid;
  height: 250px;
  place-items: center;
}

.score-orbit svg {
  position: absolute;
  width: 220px;
  height: 220px;
  transform: rotate(-90deg);
}

.score-bg,
.score-ring {
  fill: none;
  stroke-width: 16;
}

.score-bg {
  stroke: #efe7dc;
}

.score-ring {
  stroke: var(--risk-high);
  stroke-dasharray: 553;
  stroke-dashoffset: 326;
  stroke-linecap: round;
}

.score-orbit.risk-low .score-ring {
  stroke: var(--risk-low);
}

.score-orbit.risk-medium .score-ring {
  stroke: var(--risk-medium);
}

.score-orbit.risk-high .score-ring {
  stroke: var(--risk-high);
}

.score-orbit div {
  display: grid;
  place-items: center;
}

.score-orbit small,
.score-block span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.score-orbit strong {
  font-size: 56px;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.numbers-grid div,
.money-stack div {
  padding: 14px;
  background: #f6f8f5;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.numbers-grid span,
.money-stack span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.numbers-grid strong,
.money-stack strong {
  font-size: 20px;
}

.warning-number strong {
  color: var(--warning);
}

.risk-value {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.risk-value.risk-low {
  color: #166534;
  background: var(--risk-low-soft);
}

.risk-value.risk-medium {
  color: #7c3f08;
  background: var(--risk-medium-soft);
}

.risk-value.risk-high {
  color: #7f1d1d;
  background: var(--risk-high-soft);
}

.scan-line {
  position: absolute;
  right: 0;
  bottom: 96px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(180, 83, 9, 0.78), transparent);
  animation: scan 2.8s ease-in-out infinite;
}

@keyframes scan {
  50% {
    transform: translateY(-260px);
  }
}

.phone-preview {
  position: absolute;
  right: 0;
  bottom: 8px;
  width: 272px;
  padding: 12px;
  border-radius: 36px;
  background: var(--navy);
  transform: rotate(4deg);
}

.phone-speaker {
  width: 76px;
  height: 6px;
  margin: 6px auto 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.phone-screen {
  min-height: 465px;
  padding: 22px;
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), transparent 30%),
    #111827;
  border-radius: 28px;
}

.mini-brand {
  color: #bdf2cd;
  font-size: 13px;
  font-weight: 900;
}

.phone-screen h2 {
  margin: 42px 0 12px;
  font-family: var(--body);
  font-size: 27px;
  line-height: 1.1;
}

.phone-screen p {
  color: #d5dae2;
  line-height: 1.45;
}

.upload-tile {
  display: grid;
  gap: 8px;
  margin: 26px 0;
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

.upload-tile span {
  display: block;
  width: 44px;
  height: 44px;
  border: 1px dashed var(--red);
  border-radius: 12px;
}

.upload-tile small {
  color: var(--muted);
}

.phone-screen button {
  width: 100%;
  min-height: 48px;
  color: var(--white);
  background: var(--accent);
  border: 0;
  border-radius: 999px;
  font-weight: 900;
}

.section-wrap,
.section-band {
  padding-top: clamp(64px, 8vw, 108px);
  padding-bottom: clamp(64px, 8vw, 108px);
}

.hero.section-band {
  padding-top: 28px;
  padding-bottom: 34px;
}

.section-intro {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-intro.compact {
  max-width: 620px;
}

.section-intro p,
.pricing-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.quick-start {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: center;
  background: var(--navy);
  color: var(--white);
}

.quick-start .section-intro p,
.quick-start .section-kicker {
  color: #ccebd6;
}

.upload-panel {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  padding: 16px;
  border-radius: 8px;
}

.upload-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.upload-drop label {
  display: grid;
  min-height: 245px;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 24px;
  color: var(--ink);
  text-align: center;
  background: #f6f8f5;
  border: 1px dashed #9aa3b2;
  border-radius: 8px;
  cursor: pointer;
}

.upload-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 16px;
  font-size: 34px;
  font-weight: 500;
}

.start-summary {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 24px;
  color: var(--ink);
}

.start-summary div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.start-summary strong {
  color: var(--red);
  font-size: 42px;
}

.start-summary p {
  color: var(--muted);
  line-height: 1.5;
}

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

.step-card,
.trust-card {
  min-height: 230px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.step-card:hover,
.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(11, 19, 32, 0.1);
}

.step-card span,
.trust-card span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 48px;
  color: var(--white);
  background: var(--navy);
  border-radius: 14px;
  font-weight: 900;
}

.step-card h3,
.trust-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.step-card p,
.trust-card p {
  color: var(--muted);
  line-height: 1.55;
}

.report-section {
  background: #ffffff;
}

.report-lab {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.report-controls {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 10px;
}

.scenario-button {
  min-height: 52px;
  padding: 0 16px;
  color: var(--ink);
  text-align: left;
  background: var(--ivory);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.scenario-button.active {
  color: var(--white);
  background: var(--navy);
}

.sample-report {
  padding: clamp(18px, 4vw, 34px);
  border-radius: 8px;
}

.report-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.report-meta span {
  padding: 8px 10px;
  color: #344052;
  background: #f6f8f5;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.report-main {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
  margin: 24px 0;
}

.score-block {
  display: grid;
  min-height: 250px;
  place-items: center;
  align-content: center;
  text-align: center;
  background: var(--navy);
  border-radius: 8px;
  color: var(--white);
}

.score-block.risk-low {
  background: linear-gradient(145deg, #0b1320 0%, #14532d 100%);
}

.score-block.risk-medium {
  background: linear-gradient(145deg, #0b1320 0%, #92400e 100%);
}

.score-block.risk-high {
  background: linear-gradient(145deg, #0b1320 0%, #7f1d1d 100%);
}

.score-block strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(54px, 8vw, 86px);
}

.score-block small {
  color: #cfd6df;
  font-weight: 900;
}

.money-stack {
  display: grid;
  gap: 10px;
}

.money-stack div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.issues-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
}

.counteroffer {
  padding: 22px;
  background: var(--warning-soft);
  border: 1px solid #edd3ae;
  border-radius: 8px;
}

.california-check {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
  padding: 22px;
  background: #f6f8f5;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.money-from-thin-air,
.recommended-target {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
  padding: 22px;
  border-radius: 8px;
}

.money-from-thin-air {
  background: var(--warning-soft);
  border: 1px solid #edd3ae;
}

.recommended-target {
  background: #f6f8f5;
  border: 1px solid var(--line);
}

.report-block-heading > span {
  display: block;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
}

.report-block-heading p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.money-findings {
  display: grid;
  gap: 10px;
}

.money-finding {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 14px;
  background: var(--white);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
}

.money-finding strong,
.money-finding span,
.money-finding p {
  display: block;
}

.money-finding strong {
  margin-bottom: 5px;
}

.money-finding span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.money-finding p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.money-finding b,
.money-total strong {
  color: var(--warning);
  font-size: 20px;
}

.money-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  color: var(--navy);
  background: rgba(180, 83, 9, 0.1);
  border-radius: 8px;
  font-weight: 900;
}

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

.target-grid div {
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.target-grid span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.target-grid strong {
  font-size: 20px;
}

.california-check-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.california-check-header span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 900;
}

.california-check-header strong {
  font-size: 20px;
}

.california-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.california-check-grid div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.california-check-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.california-check p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.counteroffer span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.counteroffer small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
}

.counteroffer p {
  margin: 10px 0;
  line-height: 1.55;
}

.counteroffer a {
  color: var(--red);
  font-weight: 900;
}

.counteroffer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.counteroffer-actions button,
.counteroffer-actions a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.markup-section {
  background: var(--ivory);
}

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

.markup-card {
  min-height: 230px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(11, 19, 32, 0.08);
}

.markup-card > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 44px;
  color: var(--white);
  background: var(--red);
  border-radius: 14px;
  font-weight: 900;
}

.markup-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.markup-card p {
  color: var(--muted);
  line-height: 1.55;
}

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

.trust-card {
  min-height: 210px;
}

.trust-card span {
  margin-bottom: 36px;
  background: var(--red);
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 32px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 19, 32, 0.98), rgba(20, 31, 48, 0.94)),
    var(--navy);
}

.pricing-copy {
  max-width: 620px;
}

.pricing-copy p {
  color: #d8dee8;
}

.pricing-copy .pricing-promise {
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.pricing-card {
  padding: 30px;
  color: var(--ink);
  border-radius: 8px;
}

.pricing-card > span {
  display: block;
  font-weight: 900;
}

.pricing-card > strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--red);
  font-size: 76px;
  line-height: 1;
}

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

.pricing-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 26px;
  color: #344052;
  font-weight: 700;
}

.pricing-card li::before {
  position: absolute;
  left: 0;
  color: var(--red);
  content: "1";
  font-weight: 900;
}

.california-notice {
  background: var(--ivory);
}

.california-notice > div {
  display: grid;
  max-width: 980px;
  gap: 10px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-left: 6px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(11, 19, 32, 0.08);
}

.california-notice h2 {
  margin-bottom: 0;
}

.california-notice p {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.download-app {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 19, 32, 0.98), rgba(20, 31, 48, 0.94)),
    var(--navy);
}

.download-app .section-intro p {
  color: #d8dee8;
}

.download-actions {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.store-button {
  display: grid;
  gap: 8px;
  min-height: 118px;
  align-content: center;
  padding: 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  transition: transform 180ms ease, background 180ms ease;
}

.store-button:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
}

.store-button.is-disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.store-button.is-disabled:hover {
  background: transparent;
  border-color: rgba(17, 24, 39, 0.12);
  box-shadow: none;
  transform: none;
}

.store-button span {
  color: #bdf2cd;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-button strong {
  font-size: 24px;
}

.download-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: #cfd6df;
  font-size: 14px;
  line-height: 1.55;
}

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

.faq-list details {
  padding: 20px 22px;
  border-radius: 8px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 32px;
  padding: 34px clamp(18px, 4vw, 56px);
  color: #d8dee8;
  background: var(--navy);
}

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

.site-footer p {
  max-width: 960px;
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.site-footer .footer-note {
  grid-column: 2;
  color: #ffffff;
  font-weight: 700;
}

.site-footer .footer-links {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.site-footer .footer-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  text-decoration: none;
}

.site-seal {
  grid-column: 2;
  min-height: 32px;
}

.site-seal span {
  display: inline-block;
}

.policy-content a,
.policy-summary a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-page {
  padding-top: clamp(42px, 8vw, 88px);
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.policy-summary {
  position: sticky;
  top: 104px;
}

.policy-summary h1 {
  margin: 10px 0 16px;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.94;
  letter-spacing: 0;
}

.policy-summary p {
  margin: 10px 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.5;
}

.policy-content {
  display: grid;
  gap: 16px;
}

.policy-content section {
  padding: clamp(18px, 3vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(11, 19, 32, 0.06);
}

.policy-content h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 0;
}

.policy-content p {
  margin: 0 0 12px;
  color: #2f3847;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.65;
}

.policy-content p:last-child {
  margin-bottom: 0;
}

.fair-hero {
  min-height: 620px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(250, 247, 242, 0.94), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at 82% 20%, rgba(22, 163, 74, 0.15), transparent 34%);
}

.fair-hero > div {
  max-width: 980px;
}

.fair-disclaimer {
  max-width: 760px;
  padding: 14px 16px;
  color: #344052;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.55;
}

.fair-comparison {
  background: var(--white);
}

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

.comparison-card,
.counteroffer-example {
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(11, 19, 32, 0.1);
}

.comparison-card.risky {
  border-top: 5px solid var(--warning);
}

.comparison-card.cleaner {
  border-top: 5px solid var(--risk-low);
}

.comparison-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.comparison-card-header h3 {
  margin: 0;
  font-size: 26px;
}

.comparison-card-header span {
  padding: 8px 10px;
  color: var(--navy);
  background: #f6f8f5;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.comparison-rows,
.example-number-grid,
.checklist-grid,
.checks-grid {
  display: grid;
  gap: 10px;
}

.comparison-rows div,
.example-number-grid div {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 14px;
  padding: 13px;
  background: #f6f8f5;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.comparison-rows span,
.example-number-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.comparison-rows strong,
.example-number-grid strong {
  color: var(--navy);
  line-height: 1.4;
}

.example-numbers,
.what-checks,
.fair-bottom-disclaimer {
  background: var(--navy);
  color: var(--white);
}

.example-numbers .section-intro p,
.what-checks .section-intro p {
  color: #d8dee8;
}

.example-number-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.example-number-grid div {
  grid-template-columns: 1fr;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.example-number-grid span {
  color: #cfd6df;
}

.example-number-grid strong {
  color: var(--white);
}

.fair-checklist {
  background: var(--ivory);
}

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

.checklist-grid div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
}

.checklist-grid span {
  display: grid;
  min-width: 30px;
  height: 30px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.checklist-grid p {
  margin: 0;
  color: #344052;
  font-weight: 800;
  line-height: 1.45;
}

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

.checks-grid article {
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

.checks-grid span {
  display: block;
  margin-bottom: 32px;
  color: var(--red);
  font-weight: 900;
}

.checks-grid h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.checks-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.fair-counteroffer {
  background: var(--white);
}

.counteroffer-example {
  display: grid;
  max-width: 980px;
  gap: 20px;
}

.counteroffer-example p {
  margin: 0;
  padding: 22px;
  color: #344052;
  background: var(--warning-soft);
  border: 1px solid #edd3ae;
  border-radius: 8px;
  font-size: 18px;
  line-height: 1.65;
}

.counteroffer-example .button {
  justify-self: start;
}

.fair-bottom-disclaimer p {
  max-width: 1040px;
  margin: 0;
  color: #d8dee8;
  font-size: 16px;
  line-height: 1.65;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: none;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(22, 163, 74, 0.28);
  font-size: 14px;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero {
    grid-template-columns: 1fr;
  }

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

  .phone-preview {
    right: 8%;
  }

  .quick-start,
  .pricing-section {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
  }

  .brand {
    min-width: 0;
    flex: 1;
    gap: 10px;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 13px;
  }

  .brand-wheel {
    width: 18px;
    height: 18px;
    border-width: 4px;
  }

  .brand-one-text {
    font-size: 16px;
  }

  .brand-mark-subtitle {
    font-size: 6px;
  }

  .brand strong {
    font-size: 22px;
    line-height: 1.05;
  }

  .header-actions .button {
    display: none;
  }

  .brand small {
    display: flex;
    max-width: 250px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
  }

  .language-select select {
    width: 58px;
    height: 38px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
  }

  .section-band,
  .section-wrap {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 34px;
    overflow: hidden;
  }

  h1 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    font-size: 16px;
    line-height: 1.5;
  }

  .eyebrow,
  .section-kicker {
    font-size: clamp(6.6px, 1.72vw, 7.6px);
    gap: 5px;
    letter-spacing: 0.04em;
    line-height: 1.15;
  }

  .eyebrow {
    display: flex;
    width: 100%;
    align-items: center;
  }

  .eyebrow span:last-child {
    min-width: 0;
    flex: 1;
    white-space: nowrap;
  }

  .hero-california {
    display: flex;
    width: fit-content;
    max-width: min(218px, calc(100% - 118px));
    margin: 8px 0 14px auto;
    gap: 6px;
    padding: 4px 7px;
    font-size: 9.5px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .hero-california span {
    width: 27px;
    height: 20px;
    flex: 0 0 27px;
    font-size: 8px;
  }

  .negotiation-line {
    display: flex;
    width: 100%;
    font-size: 15px;
    line-height: 1.35;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    font-size: 18px;
    white-space: normal;
    text-align: center;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 20px;
  }

  .hero-proof span {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
  }

  .hero-proof span:last-child {
    grid-column: 1 / -1;
  }

  .hero-visual {
    display: none;
  }

  .deal-card,
  .phone-preview {
    position: relative;
    width: 100%;
  }

  .deal-card {
    top: auto;
  }

  .phone-preview {
    display: none;
  }

  .numbers-grid,
  .upload-panel,
  .steps-grid,
  .report-lab,
  .report-main,
  .california-check-grid,
  .target-grid,
  .markup-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .money-finding,
  .money-total {
    grid-template-columns: 1fr;
  }

  .download-actions {
    grid-template-columns: 1fr;
  }

  .report-controls {
    position: static;
    grid-template-columns: 1fr;
  }

  .sample-report {
    padding: 16px;
    overflow: hidden;
  }

  .sample-header {
    display: grid;
    gap: 10px;
  }

  .sample-header strong {
    font-size: 24px;
  }

  .report-badge,
  .risk-chip {
    width: fit-content;
    max-width: 100%;
    min-height: 28px;
    padding: 0 10px;
    font-size: 10px;
    line-height: 1.15;
    white-space: normal;
  }

  .report-meta {
    gap: 7px;
    margin-top: 14px;
  }

  .report-meta span,
  .issues-row span {
    max-width: 100%;
    padding: 7px 9px;
    font-size: 11px;
    line-height: 1.2;
    white-space: normal;
  }

  .score-block {
    min-height: 190px;
  }

  .score-block strong {
    font-size: 58px;
  }

  .money-stack div,
  .target-grid div,
  .california-check-row,
  .money-finding,
  .money-total {
    gap: 8px;
  }

  .money-stack div {
    flex-wrap: wrap;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-note {
    grid-column: auto;
  }

  .site-footer .footer-links {
    grid-column: auto;
    gap: 12px;
  }

  .site-footer .footer-links a {
    min-height: 36px;
    padding: 0 11px;
    font-size: 12px;
  }

  .site-seal {
    grid-column: auto;
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-summary {
    position: static;
  }

  .comparison-grid,
  .example-number-grid,
  .checklist-grid,
  .checks-grid {
    grid-template-columns: 1fr;
  }

  .comparison-rows div {
    grid-template-columns: 1fr;
  }

  .final-cta {
    display: grid;
  }

  .sticky-cta {
    display: inline-flex;
  }
}

@media (max-width: 390px) {
  .site-header {
    padding-right: 12px;
    padding-left: 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand small {
    max-width: 222px;
    font-size: 10px;
  }

  .hero-california {
    max-width: min(198px, calc(100% - 104px));
    margin-left: auto;
  }

  .language-select select {
    width: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Shared responsive safeguards for the landing page and its supporting pages. */
.page-shell {
  overflow: visible;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  :root {
    --mobile-gutter: 16px;
  }

  .site-header {
    gap: 10px;
    padding-right: var(--mobile-gutter);
    padding-left: var(--mobile-gutter);
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
  }

  .brand-copy,
  .header-actions,
  .policy-layout,
  .policy-summary,
  .policy-content,
  .comparison-grid,
  .comparison-card,
  .comparison-rows,
  .example-number-grid,
  .checklist-grid,
  .checks-grid,
  .counteroffer-example,
  .site-footer {
    min-width: 0;
  }

  .brand-name strong {
    font-size: clamp(17px, 4.8vw, 20px);
    white-space: nowrap;
  }

  .brand small {
    max-width: 100%;
    flex-wrap: wrap;
    gap: 1px 3px;
    font-size: 10px;
  }

  .header-actions .button {
    display: none;
  }

  .language-select select {
    width: 54px;
    height: 42px;
    padding: 0 7px;
    font-size: 16px;
  }

  .section-band,
  .section-wrap,
  .site-footer {
    padding-right: var(--mobile-gutter);
    padding-left: var(--mobile-gutter);
  }

  :where(
    h1,
    h2,
    h3,
    p,
    summary,
    .policy-content,
    .policy-summary,
    .comparison-card,
    .comparison-rows,
    .example-number-grid,
    .checklist-grid,
    .checks-grid,
    .counteroffer-example,
    .footer-note,
    .footer-links
  ) {
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  input,
  select,
  textarea {
    max-width: 100%;
    font-size: 16px;
  }

  .button,
  .scenario-button {
    min-height: 48px;
  }

  .policy-layout,
  .comparison-grid,
  .comparison-rows div,
  .example-number-grid,
  .checklist-grid,
  .checks-grid,
  .site-footer {
    grid-template-columns: minmax(0, 1fr);
  }

  .policy-summary {
    position: static;
  }

  .comparison-card-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .counteroffer-example {
    width: 100%;
    padding: 20px 16px;
  }

  .counteroffer-example .button {
    width: 100%;
    justify-self: stretch;
    text-align: center;
    white-space: normal;
  }

  .site-footer .footer-note,
  .site-footer .footer-links,
  .site-seal {
    grid-column: auto;
  }

  .site-footer .footer-links {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer .footer-links a {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    padding: 8px 12px;
    text-align: center;
  }

  .site-seal,
  .site-seal span,
  .site-seal img,
  .site-seal iframe {
    max-width: 100%;
  }

  .sticky-cta {
    right: var(--mobile-gutter);
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    left: var(--mobile-gutter);
    width: auto;
    min-height: 50px;
    padding: 9px 16px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 340px) {
  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-name strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 9px;
  }

  .language-select select {
    width: 50px;
  }
}
