:root {
  --bg: #070806;
  --panel: #11130f;
  --panel-raised: #171a14;
  --line: rgba(255, 255, 255, .11);
  --line-strong: rgba(246, 195, 69, .34);
  --gold: #f6c345;
  --gold-light: #ffe18b;
  --sea: #9ac6cf;
  --text: #fffaf0;
  --muted: rgba(255, 250, 240, .68);
  --shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 8%, rgba(246, 195, 69, .08), transparent 26rem),
    linear-gradient(180deg, #090a08 0, var(--bg) 52%, #050604 100%);
  color: var(--text);
  font-family: Manrope, system-ui, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
img { max-width: 100%; }
body .container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

.hero {
  position: relative;
  display: grid;
  min-height: min(780px, 88vh);
  align-items: end;
  isolation: isolate;
  padding: 150px 0 72px;
  background: var(--hero-image) center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 5, 3, .9) 0%, rgba(4, 5, 3, .66) 48%, rgba(4, 5, 3, .18) 82%),
    linear-gradient(0deg, var(--bg) 0%, rgba(7, 8, 6, .65) 24%, transparent 58%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 72% 26%, rgba(246, 195, 69, .16), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, .08), transparent 46%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 1fr);
  grid-template-areas:
    "eyebrow eyebrow"
    "title title"
    "subtitle actions"
    "trust links";
  align-items: end;
  column-gap: clamp(24px, 5vw, 72px);
  row-gap: 18px;
  margin-inline: auto;
}

.hero-content > .eyebrow { grid-area: eyebrow; justify-self: start; }
.hero-content > h1 { grid-area: title; }
.hero-content > .subtitle { grid-area: subtitle; }
.hero-content > .cta-row { grid-area: actions; justify-content: flex-end; align-self: center; }
.hero-content > .quick-links { grid-area: links; justify-content: flex-end; align-self: start; }
.hero-content > .hero-trust { grid-area: trust; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  margin-left: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero h1 {
  max-width: 1060px;
  margin: 18px 0 20px;
  font-family: Cinzel, serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.02;
  text-wrap: balance;
}

.subtitle {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 250, 240, .8);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.65;
}

.cta-row,
.quick-links,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 11px;
  font-weight: 900;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:focus-visible,
.quick-links a:focus-visible,
.card:focus-visible,
.guide-links a:focus-visible,
.footer a:focus-visible,
.faq summary:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.btn-primary {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 10px 30px rgba(246, 195, 69, .18);
  color: #121006;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(8, 9, 7, .58);
  backdrop-filter: blur(12px);
  color: #fff;
}

.quick-links {
  margin-top: 0;
  gap: 8px;
}

.quick-links a,
.pill-row a {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(8, 9, 7, .5);
  color: rgba(255, 255, 255, .78);
  padding: 7px 12px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(10px);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.quick-links a:hover,
.pill-row a:hover {
  border-color: var(--line-strong);
  background: rgba(246, 195, 69, .08);
  color: #fff;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 0;
  color: rgba(255, 255, 255, .54);
  font-size: 11px;
  font-weight: 700;
}

.hero-trust i { color: var(--gold); }

.band {
  position: relative;
  padding: 88px 0;
  border-top: 1px solid rgba(255, 255, 255, .045);
}

.band.alt {
  background:
    radial-gradient(circle at 88% 12%, rgba(120, 184, 139, .06), transparent 24rem),
    linear-gradient(180deg, #0e100c, #10120e);
}

.section-head {
  display: grid;
  max-width: 760px;
  gap: 0;
  margin-bottom: 34px;
}

.section-head h2,
.guide-panel h2 {
  margin: 10px 0 13px;
  font-family: Cinzel, serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.08;
  text-wrap: balance;
}

.section-head p,
.muted {
  margin: 0;
  color: var(--muted);
}

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

.card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .018));
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.card::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  top: -46px;
  right: -46px;
  border-radius: 50%;
  background: rgba(246, 195, 69, .08);
  transition: transform .3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: linear-gradient(145deg, rgba(246, 195, 69, .07), rgba(255, 255, 255, .025));
}

.card:hover::after { transform: scale(1.35); }
.card > i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(246, 195, 69, .22);
  border-radius: 50%;
  background: rgba(246, 195, 69, .08);
  color: var(--gold);
  font-size: 16px;
}

.card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 9px;
  font-size: 17px;
  line-height: 1.35;
}

.card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 14px; }

.data-card {
  display: grid;
  min-height: 390px;
  grid-template-rows: 210px 1fr;
  padding: 0;
  color: inherit;
  text-decoration: none;
}

.seo-market-card-wrap {
  position: relative;
  min-height: 390px;
  padding: 0;
}

.seo-market-card-wrap::before,
.seo-market-card-wrap::after {
  display: none;
}

.seo-market-card {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 390px;
  aspect-ratio: 4 / 5;
  border: 0;
  border-radius: 8px;
  background: #111;
  box-shadow: 0 18px 54px rgba(0, 0, 0, .28);
  color: #fff;
  isolation: isolate;
  text-decoration: none;
  transition: transform .28s cubic-bezier(.4, 0, .2, 1), box-shadow .28s cubic-bezier(.4, 0, .2, 1);
}

.seo-market-card:hover {
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 28px 76px rgba(0, 0, 0, .48);
}

.seo-market-card .market-card-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #111;
}

.seo-market-card .market-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .5) 50%, transparent 100%);
  opacity: .82;
  pointer-events: none;
  transition: opacity .3s ease;
}

.seo-market-card:hover .market-card-media::after {
  opacity: .9;
}

.seo-market-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #111;
  transition: transform .45s ease, filter .45s ease;
}

.seo-market-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

.seo-market-card .region-badge,
.seo-market-card .featured-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 6px;
  padding: 5px 9px;
  backdrop-filter: blur(8px);
}

.seo-market-card .region-badge {
  top: 10px;
  left: 10px;
  max-width: calc(100% - 20px);
  overflow: hidden;
  border: 1px solid rgba(251, 191, 36, .4);
  background: rgba(251, 191, 36, .15);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seo-market-card .featured-badge {
  top: 10px;
  right: 10px;
  max-width: calc(100% - 20px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(8, 8, 8, .58);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.seo-market-card .card-body {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 8px;
  padding: 12px;
}

.seo-market-card .card-body h3 {
  margin: 0;
  color: #fff;
  font-family: Cinzel, serif;
  font-size: 20px;
  line-height: 1.22;
}

.seo-market-card .card-desc {
  display: -webkit-box;
  min-height: 38px;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #d1d5db;
  font-size: 13px;
  line-height: 1.45;
}

.seo-market-card .market-rate-badge {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(251, 191, 36, .4);
  border-radius: 6px;
  background: rgba(251, 191, 36, .15);
  color: var(--gold);
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  backdrop-filter: blur(5px);
}

.seo-market-card .rate-prefix {
  color: rgba(255, 255, 255, .68);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.seo-market-skeleton {
  pointer-events: none;
}

.seo-market-skeleton .market-card-media,
.seo-market-skeleton h3,
.seo-market-skeleton .card-desc,
.seo-market-skeleton .market-rate-badge {
  position: relative;
  background: linear-gradient(90deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .13), rgba(255, 255, 255, .06));
  background-size: 220% 100%;
  animation: shimmer 1.15s ease-in-out infinite;
}

.seo-market-skeleton h3 {
  width: 72%;
  height: 22px;
  border-radius: 6px;
}

.seo-market-skeleton .card-desc {
  height: 44px;
  border-radius: 6px;
}

.seo-market-skeleton .market-rate-badge {
  width: 48%;
  height: 34px;
  border-radius: 999px;
  color: transparent;
}

.seo-market-card .featured-badge {
  max-width: calc(100% - 20px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seo-market-card .card-body h3 {
  font-family: Cinzel, serif;
}

.seo-market-card .card-cta {
  margin-top: 2px;
}

.data-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  pointer-events: none;
}

.data-card:hover::before { border-color: rgba(246, 195, 69, .28); }
.data-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #1b1e18;
  filter: saturate(.88) contrast(1.03);
  transition: transform .5s ease, filter .5s ease;
}

.data-card-share {
  position: absolute;
  z-index: 4;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(0,0,0,.62);
  color: #fff;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.data-card-share:hover {
  transform: translateY(-1px);
  border-color: var(--gold);
  background: var(--gold);
  color: #121006;
}

.data-card-share i { pointer-events: none; }

.data-card:hover img { transform: scale(1.045); filter: saturate(1.05) contrast(1.04); }
.data-card-body {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 19px 20px 20px;
  background: linear-gradient(180deg, rgba(20, 22, 18, .99), rgba(11, 13, 9, .99));
}

.data-card-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.data-card small {
  overflow: hidden;
  color: var(--sea);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.chip {
  flex: none;
  border: 1px solid rgba(246, 195, 69, .28);
  border-radius: 999px;
  background: rgba(246, 195, 69, .1);
  color: var(--gold-light);
  padding: 4px 8px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.data-card h3 { margin: 2px 0 0; font-family: Cinzel, serif; font-size: 19px; font-weight: 500; }
.data-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 13px;
}

.data-card .arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 6px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.data-card .arrow::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transition: transform .2s ease;
}

.data-card:hover .arrow::after { transform: translateX(4px); }

.skeleton-card { min-height: 390px; pointer-events: none; }
.skeleton-card::after { display: none; }
.skeleton-media,
.skeleton-line {
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
  background-size: 220% 100%;
  animation: shimmer 1.5s linear infinite;
}

.skeleton-media { height: 210px; margin: -24px -24px 22px; border-radius: 0; }
.skeleton-line { height: 11px; margin-top: 11px; }
.skeleton-line.short { width: 58%; }
@keyframes shimmer { to { background-position: -220% 0; } }

.template {
  display: grid;
  overflow: hidden;
  grid-template-columns: 132px 1fr;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel-raised), var(--panel));
}

.template img { width: 100%; height: 100%; min-height: 118px; object-fit: cover; }
.template div { padding: 14px 16px 14px 0; }
.template h3 { margin: 0 0 6px; font-size: 18px; }
.template p { margin: 0; color: var(--muted); }

.feature-strip {
  position: relative;
  z-index: 3;
  display: grid;
  overflow: hidden;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 1px;
  margin-top: -34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.feature-strip div { padding: 18px; background: rgba(14, 16, 12, .96); }
.feature-strip strong { display: block; color: #fff; font-family: Cinzel, serif; font-size: 26px; line-height: 1; }
.feature-strip span { display: block; margin-top: 8px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.planner-cta {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  padding: 38px 40px;
  border: 1px solid rgba(246, 195, 69, .32);
  border-radius: 10px;
  background:
    radial-gradient(circle at 92% 10%, rgba(246, 195, 69, .2), transparent 18rem),
    linear-gradient(135deg, rgba(246, 195, 69, .1), rgba(255, 255, 255, .025));
  box-shadow: var(--shadow);
}

.planner-cta::after {
  content: "\f5a0";
  position: absolute;
  right: 25%;
  color: rgba(246, 195, 69, .055);
  font-family: "Font Awesome 6 Free";
  font-size: 150px;
  font-weight: 900;
  line-height: 1;
  transform: rotate(-12deg);
  pointer-events: none;
}

.planner-cta-content { position: relative; z-index: 1; max-width: 690px; }
.planner-cta h2 {
  margin: 10px 0 12px;
  font-family: Cinzel, serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.08;
}

.planner-cta p { margin: 0; color: var(--muted); }
.planner-cta-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 800;
}

.planner-cta-steps span { display: inline-flex; align-items: center; gap: 7px; }
.planner-cta-steps i { color: var(--gold); }
.planner-cta-action { position: relative; z-index: 1; display: grid; min-width: 220px; gap: 10px; text-align: center; }
.planner-cta-action .btn { min-height: 56px; padding-inline: 26px; font-size: 12px; }
.planner-cta-action small { color: rgba(255, 255, 255, .52); font-size: 10px; }

.guide-rail {
  display: grid;
  grid-template-columns: .9fr 1.5fr;
  align-items: stretch;
  gap: 16px;
}

.guide-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border: 1px solid rgba(246, 195, 69, .24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0, rgba(246, 195, 69, .14), transparent 50%),
    linear-gradient(145deg, rgba(246, 195, 69, .09), rgba(255, 255, 255, .025));
}

.guide-panel h2 { font-size: clamp(28px, 3.2vw, 40px); }
.guide-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.guide-links a {
  position: relative;
  display: grid;
  min-height: 126px;
  align-content: start;
  gap: 7px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018));
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.guide-links a:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: rgba(246, 195, 69, .055);
}

.guide-links strong { font-size: 15px; }
.guide-links span { color: var(--muted); font-size: 12px; }
.guide-links i { color: var(--gold); font-size: 15px; }

.faq { display: grid; max-width: 900px; gap: 10px; margin-inline: auto; }
.faq details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .025);
  transition: border-color .2s ease, background .2s ease;
}

.faq details[open] { border-color: rgba(246, 195, 69, .25); background: rgba(246, 195, 69, .035); }
.faq summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 19px 56px 19px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--gold);
  font-size: 22px;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq details[open] summary::after { content: "\2212"; }
.faq p { margin: 0; padding: 0 56px 20px 20px; color: var(--muted); font-size: 14px; }

.footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: #050604;
  color: rgba(255, 255, 255, .56);
  font-size: 13px;
}

.footer .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer a { margin-left: 16px; color: rgba(255, 255, 255, .72); text-decoration: none; }
.footer a:hover { color: var(--gold); }

.empty {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .025);
  color: var(--muted);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible { opacity: 1; transform: none; }

#navbar {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: padding .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

#navbar.scrolled {
  border-color: rgba(255, 255, 255, .1);
  background: rgba(5, 6, 4, .94);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .25);
  backdrop-filter: blur(14px);
}

#navbar .nav-inner { height: auto; display: block; justify-content: normal; gap: 0; }
#nav-bar-row { position: relative; display: flex; height: 40px; align-items: center; justify-content: space-between; }
#navbar a { text-decoration: none; }
#navbar img { display: block; width: auto; object-fit: contain; }
#nav-mobile-logo { height: 40px; }
#navbar .nav-desktop-block { display: none; }
#navbar .nav-pill {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 9px 24px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  background: rgba(0, 0, 0, .46);
  backdrop-filter: blur(14px);
}

#navbar .nav-pill a,
#nav-account-actions > a {
  padding: 6px 4px;
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s ease;
}

#navbar .nav-pill a:hover,
#nav-account-actions > a:hover { color: var(--gold); }
#nav-account-actions { width: 224px; align-items: center; justify-content: flex-end; gap: 8px; }
#nav-account-actions > a {
  padding: 9px 15px;
  border: 1px solid var(--gold);
  border-radius: 5px;
  background: var(--gold);
  color: #111;
}

#navbar button.nav-mobile {
  position: absolute;
  right: 24px;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: #fff;
}

#nav-hamburger-lines { display: grid; justify-items: end; gap: 6px; }
#nav-hamburger-lines span { display: block; height: 2px; background: #fff; }
#nav-hamburger-lines span:first-child { width: 24px; }
#nav-hamburger-lines span:last-child { width: 16px; }

#mobile-menu-overlay {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #050505;
  transform: translateX(0);
  transition: transform .5s ease;
}

#mobile-menu-overlay.translate-x-full { transform: translateX(100%); }
#mobile-menu-overlay > div:nth-of-type(2) { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
#mobile-menu-overlay > div:nth-of-type(2) a {
  color: rgba(255, 255, 255, .55);
  font-family: Cinzel, serif;
  font-size: 30px;
  text-decoration: none;
}

#mobile-menu-overlay > button {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, .45);
}

#mobile-account-actions { position: relative; z-index: 1; display: flex; align-items: center; gap: 16px; margin-top: 30px; }
#mobile-account-actions a { color: rgba(255, 255, 255, .65); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
#mobile-account-actions a { border-radius: 5px; background: var(--gold); color: #111; padding: 9px 16px; }

@media (max-width: 900px) {
  .hero { min-height: 760px; padding-top: 132px; }
  .hero-content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "subtitle"
      "actions"
      "links"
      "trust";
    align-items: start;
  }
  .hero-content > .cta-row,
  .hero-content > .quick-links {
    justify-content: flex-start;
  }
  .grid.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-strip,
  .guide-rail,
  .planner-cta { grid-template-columns: 1fr; }
  .planner-cta-action { width: min(100%, 360px); min-width: 0; }
}

@media (min-width: 1025px) {
  #nav-bar-row { height: 64px; }
  #navbar .nav-desktop-block { display: block; flex: 0 0 auto; }
  #navbar .nav-desktop-block img { height: 64px; }
  #navbar .nav-desktop { display: flex; }
  #navbar .nav-mobile { display: none !important; }
}

@media (max-width: 720px) {
  body .container { width: min(100% - 28px, 1120px); }
  .hero-content { width: min(100% - 28px, 1120px); }
  .hero { min-height: 700px; padding: 124px 0 48px; }
  .hero h1 { font-size: clamp(39px, 12vw, 56px); }
  .subtitle { font-size: 16px; line-height: 1.6; }
  .band { padding: 64px 0; }
  .grid.three,
  .grid.two,
  .guide-links { grid-template-columns: 1fr; }
  .data-card { min-height: 0; grid-template-rows: 210px 1fr; }
  .template { grid-template-columns: 1fr; }
  .template img { height: 180px; }
  .template div { padding: 16px; }
  .feature-strip { margin-top: 0; }
  .footer .container { display: grid; }
  .footer a { margin: 0 14px 0 0; }
}

@media (max-width: 480px) {
  .hero { min-height: 680px; background-position: 58% center; }
  .hero h1 { font-size: 38px; }
  .cta-row { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .quick-links { flex-wrap: nowrap; overflow-x: auto; padding: 2px 2px 8px; scrollbar-width: none; }
  .quick-links::-webkit-scrollbar { display: none; }
  .quick-links a { flex: none; font-size: 11px; }
  .hero-trust { align-items: flex-start; }
  .section-head h2 { font-size: 30px; }
  .card,
  .guide-panel,
  .planner-cta { padding: 24px 20px; }
  .planner-cta { gap: 26px; }
  .planner-cta::after { right: -30px; font-size: 120px; }
  .planner-cta-action { width: 100%; }
  .faq summary { padding-left: 16px; }
  .faq p { padding-left: 16px; padding-right: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Minimal SEO landing treatment */
.seo-guide-page {
  background: #07070a;
}

.seo-guide-page .hero {
  min-height: 560px;
  padding: 132px 0 56px;
  overflow: hidden;
}

.seo-guide-page .hero::before {
  background:
    linear-gradient(90deg, rgba(4, 4, 5, .92) 0%, rgba(4, 4, 5, .72) 48%, rgba(4, 4, 5, .18) 100%),
    linear-gradient(0deg, #07070a 0%, rgba(7, 7, 10, .55) 34%, transparent 72%);
}

.seo-guide-page .hero::after {
  display: none;
}

.seo-guide-page .hero-content {
  width: min(1120px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(260px, 1fr);
  grid-template-areas:
    "eyebrow eyebrow"
    "title title"
    "subtitle actions"
    "trust links";
  align-items: end;
  column-gap: clamp(24px, 5vw, 72px);
  row-gap: 18px;
  margin-inline: auto;
}

.seo-guide-page .hero h1 {
  max-width: 1040px;
  margin: 14px 0 14px;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: 0;
}

.seo-guide-page .subtitle {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 250, 240, .72);
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 1.55;
}

.seo-guide-page .hero-trust,
.seo-guide-page .quick-links {
  display: flex;
}

.seo-guide-page .quick-links {
  max-width: none;
  gap: 8px;
  margin-top: 0;
  justify-content: flex-end;
}

.seo-guide-page .hero-trust {
  max-width: 620px;
  align-items: flex-start;
  color: rgba(255, 250, 240, .6);
}

.seo-guide-page .band {
  padding: 50px 0;
}

.seo-guide-page .band.alt {
  background: #090a0c;
}

.seo-guide-page .section-head {
  max-width: 620px;
  margin-bottom: 20px;
}

.seo-guide-page .section-head h2,
.seo-guide-page .guide-panel h2,
.seo-guide-page .planner-cta h2 {
  margin: 8px 0 8px;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: 0;
}

.seo-guide-page .section-head p,
.seo-guide-page .muted {
  max-width: 560px;
  font-size: 14px;
  line-height: 1.6;
}

.seo-guide-page .grid {
  gap: 14px;
}

.seo-guide-page .card {
  min-height: 0;
  padding: 18px;
  border-radius: 8px;
  box-shadow: none;
}

.seo-guide-page .card::after {
  display: none;
}

.seo-guide-page .card > i {
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 8px;
}

.seo-guide-page .card h3 {
  font-family: Manrope, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 900;
}

.seo-guide-page .card p {
  font-size: 13px;
  line-height: 1.55;
}

.seo-overview-strip {
  position: relative;
  z-index: 4;
  margin-top: -24px;
}

.seo-overview-strip .container {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: rgba(11, 12, 13, .96);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .28);
  backdrop-filter: blur(14px);
}

.seo-overview-strip div {
  min-width: 0;
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.seo-overview-strip div:last-child {
  border-right: 0;
}

.seo-overview-strip strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.seo-overview-strip span {
  display: block;
  color: rgba(255, 250, 240, .58);
  font-size: 12px;
  line-height: 1.45;
}

.seo-experience-grid {
  margin-top: 14px;
}

.seo-result-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111115;
}

.seo-result-card a {
  display: grid;
  color: inherit;
  text-decoration: none;
}

.seo-result-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #17171d;
}

.seo-result-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.94) contrast(1.02);
  transition: transform .35s ease;
}

.seo-result-card:hover .seo-result-media img {
  transform: scale(1.035);
}

.seo-result-media span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: inline-flex;
  max-width: calc(100% - 58px);
  align-items: center;
  gap: 7px;
  overflow: hidden;
  border: 1px solid rgba(251, 191, 36, .38);
  border-radius: 8px;
  background: rgba(0, 0, 0, .62);
  color: var(--gold);
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.seo-result-body {
  display: grid;
  gap: 6px;
  min-height: 138px;
  padding: 14px;
}

.seo-result-body small {
  overflow: hidden;
  color: rgba(255, 250, 240, .44);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.seo-result-body h3 {
  margin: 0;
  font-family: Manrope, system-ui, sans-serif;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}

.seo-result-body p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.seo-result-card .data-card-share {
  top: 10px;
  right: 10px;
}

.seo-guide-page .seo-faq-band {
  background:
    linear-gradient(180deg, #090a0c, #08090b);
}

.seo-guide-page .seo-faq-section .section-head {
  margin-inline: auto;
  text-align: center;
}

.seo-guide-page .faq {
  max-width: 840px;
}

.seo-guide-page .guide-rail {
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
}

.seo-guide-page .guide-panel {
  padding: 24px;
  box-shadow: none;
}

.seo-guide-page .guide-links {
  gap: 10px;
}

.seo-guide-page .guide-links a {
  min-height: 96px;
  padding: 16px;
}

.seo-guide-page .guide-links span {
  display: block;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .seo-guide-page .hero {
    min-height: 520px;
    padding-top: 116px;
  }
  .seo-guide-page .hero-content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "subtitle"
      "actions"
      "links"
      "trust";
    align-items: start;
  }
  .seo-guide-page .hero-content > .cta-row,
  .seo-guide-page .hero-content > .quick-links {
    justify-content: flex-start;
  }
  .seo-overview-strip .container {
    grid-template-columns: 1fr;
  }
  .seo-overview-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }
  .seo-overview-strip div:last-child {
    border-bottom: 0;
  }
  .seo-guide-page .guide-rail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .seo-guide-page .hero-content {
    width: min(100% - 28px, 1120px);
  }
  .seo-guide-page .hero {
    min-height: 500px;
    padding: 108px 0 42px;
  }
  .seo-guide-page .band {
    padding: 42px 0;
  }
  .seo-guide-page .grid.three,
  .seo-guide-page .grid.two {
    grid-template-columns: 1fr;
  }
  .seo-market-card {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
  .seo-market-card .featured-badge {
    display: none;
  }
  .seo-market-card .card-body h3 {
    font-size: 19px;
  }
  .seo-guide-page .quick-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }
  .seo-guide-page .quick-links a {
    min-width: 0;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .seo-guide-page .hero h1 {
    font-size: 34px;
  }
  .seo-guide-page .quick-links {
    grid-template-columns: 1fr;
  }
  .seo-market-card .card-body {
    padding: 11px;
  }
}
