*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg-page: #081522;
  --bg-deep: #0d2233;
  --bg-warm: #10293b;
  --bg-card: #11283a;
  --bg-card-elevated: #143246;
  --bg-inset: #18394c;
  --bg-header: rgba(8, 21, 34, 0.88);
  --text-heading: #f3ebdd;
  --text-body: #c9d5df;
  --text-muted: #afc1cf;
  --text-soft: #b8c8d4;
  --navy: #0a1828;
  --royal: #1a3348;
  --jade: #1faf87;
  --jade-soft: #36c59a;
  --jade-deep: #168a66;
  --teal: #2eb8b0;
  --teal-glow: rgba(54, 197, 154, 0.45);
  --teal-soft: rgba(46, 184, 176, 0.14);
  --ember: #e97a2e;
  --gold: #d7a33d;
  --gold-soft: #f0b84c;
  --gold-line: rgba(240, 184, 76, 0.35);
  --cyan-glow: rgba(72, 210, 220, 0.22);
  --line: rgba(175, 193, 207, 0.12);
  --line-jade: rgba(54, 197, 154, 0.28);
  --shadow-soft: 0 22px 56px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 12px 36px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 56px var(--teal-glow), 0 0 90px rgba(233, 122, 46, 0.12);
  --font-display: "Lora", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --max: 1140px;
  --gutter: clamp(1rem, 3vw, 1.75rem);
  --header-h: 62px;
  --scroll-pad: 80px;
  --radius: 12px;
  --radius-pill: 999px;
  color-scheme: dark;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-pad);
}

section[id] {
  scroll-margin-top: var(--scroll-pad);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.68;
  color: var(--text-body);
  background:
    radial-gradient(720px 520px at 88% -5%, rgba(46, 184, 176, 0.14), transparent 58%),
    radial-gradient(560px 420px at 12% 8%, rgba(233, 122, 46, 0.08), transparent 55%),
    radial-gradient(480px 380px at 50% 100%, rgba(26, 80, 120, 0.12), transparent 60%),
    linear-gradient(180deg, var(--bg-page) 0%, var(--bg-deep) 40%, var(--bg-warm) 100%);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--jade-soft);
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--gold-soft);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  color: var(--text-heading);
  border: 1px solid var(--line-jade);
}

.skip-link:focus {
  left: 0;
}

.shell {
  width: min(var(--max), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  isolation: isolate;
  background: var(--bg-header);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--jade-soft), var(--teal), var(--gold-soft), transparent);
  opacity: 0.7;
  pointer-events: none;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem 1rem;
  min-height: var(--header-h);
  width: min(var(--max), 100% - var(--gutter) * 2);
  margin-inline: auto;
  padding: 0.35rem 0;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-heading);
  text-decoration: none;
  letter-spacing: 0.01em;
  margin-right: auto;
}

.brand span {
  background: linear-gradient(120deg, var(--jade-soft), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.header-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.22rem 0.6rem;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-pill);
  color: var(--gold-soft);
  background: rgba(233, 122, 46, 0.1);
}

.nav-toggle {
  display: none;
  font: inherit;
  color: var(--text-heading);
  border: 1px solid var(--line-jade);
  background: var(--bg-card);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  font-size: 0.92rem;
}

.primary-nav a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-pill);
  border-bottom: 2px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.primary-nav a:hover {
  color: var(--text-heading);
  background: var(--teal-soft);
}

.primary-nav a.is-active {
  color: var(--text-heading);
  background: rgba(54, 197, 154, 0.12);
  border-bottom-color: var(--jade-soft);
  box-shadow: 0 0 20px rgba(54, 197, 154, 0.15);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  padding: 0.55rem 1.35rem;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.btn--sm {
  padding: 0.48rem 1.05rem;
  font-size: 0.88rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--jade-soft) 0%, var(--jade) 55%, var(--jade-deep) 100%);
  color: #f3ebdd;
  border-color: rgba(54, 197, 154, 0.35);
  box-shadow:
    0 4px 18px rgba(31, 175, 135, 0.35),
    0 0 24px rgba(54, 197, 154, 0.2);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--jade) 0%, #1a5c78 100%);
  color: #fff;
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.4),
    0 0 32px rgba(54, 197, 154, 0.28);
}

.btn--ghost {
  background: rgba(17, 40, 58, 0.65);
  color: var(--text-heading);
  border-color: var(--line-jade);
}

.btn--ghost:hover {
  background: rgba(54, 197, 154, 0.1);
  border-color: var(--gold-soft);
  color: var(--text-heading);
}

.js-affiliate-pending {
  opacity: 0.72;
  cursor: not-allowed;
}

.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(1.15rem, 2.8vw, 2rem) 0 clamp(1.5rem, 3vw, 2.25rem);
  background:
    radial-gradient(680px 520px at 78% 35%, rgba(46, 184, 176, 0.16), transparent 62%),
    radial-gradient(520px 400px at 95% 20%, rgba(72, 210, 220, 0.1), transparent 58%),
    linear-gradient(180deg, rgba(13, 34, 51, 0.95) 0%, rgba(8, 21, 34, 0.4) 100%);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(480px 380px at 88% 48%, var(--cyan-glow), transparent 65%),
    radial-gradient(360px 300px at 92% 60%, rgba(233, 122, 46, 0.1), transparent 58%);
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(240px, 0.78fr);
  gap: clamp(0.85rem, 2vw, 1.65rem);
  align-items: center;
  width: min(var(--max), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.hero__copy {
  padding-top: 0;
  max-width: none;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 0.65rem;
  padding: 0.38rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gold-line);
  background: rgba(233, 122, 46, 0.12);
  box-shadow: 0 0 20px rgba(233, 122, 46, 0.08);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  line-height: 1.18;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--text-heading);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero__lede {
  font-size: 1.1rem;
  color: var(--text-body);
  margin: 0 0 0.85rem;
  max-width: 54ch;
  line-height: 1.65;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.05rem;
  max-width: 54ch;
}

.hero__meta span {
  padding: 0.28rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(17, 40, 58, 0.85);
  border: 1px solid var(--line);
  color: var(--text-soft);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
  max-width: 54ch;
}

.hero__actions .btn {
  flex: 1 1 10rem;
  min-width: min(100%, 11rem);
  padding: 0.82rem 1.85rem;
  font-size: 0.96rem;
}

.hero__figure {
  --poster-aspect: 819 / 1024;
  position: relative;
  margin: 0;
  width: min(100%, 368px);
  justify-self: end;
  align-self: center;
  padding: 0.45rem;
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(145deg, rgba(20, 50, 70, 0.9), rgba(17, 40, 58, 0.95));
  border: 1px solid rgba(54, 197, 154, 0.35);
  box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.hero__figure::before {
  content: "";
  position: absolute;
  inset: -14%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-glow) 0%, rgba(233, 122, 46, 0.1) 42%, transparent 72%);
  pointer-events: none;
}

.hero__figure picture {
  display: block;
  aspect-ratio: var(--poster-aspect);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(165deg, rgba(8, 21, 34, 0.5) 0%, rgba(26, 60, 85, 0.4) 100%);
  line-height: 0;
  box-shadow: inset 0 0 40px rgba(54, 197, 154, 0.08);
}

.hero__figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
}

.disclosure {
  margin-top: 1rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: rgba(17, 40, 58, 0.75);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.spec-strip {
  margin: 0 auto 1.85rem;
  width: min(var(--max), 100% - var(--gutter) * 2);
}

.spec-strip__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0;
  background: linear-gradient(180deg, var(--bg-card-elevated), var(--bg-card));
  border: 1px solid var(--line-jade);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.spec-item {
  padding: 0.95rem 1.05rem;
  border-right: 1px solid var(--line);
  background: transparent;
}

.spec-item:first-child {
  box-shadow: inset 3px 0 0 var(--gold-soft);
}

.spec-item:last-child {
  border-right: none;
}

.spec-item dt {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--jade-soft);
  margin: 0 0 0.3rem;
  font-weight: 700;
}

.spec-item dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-heading);
}

.section {
  padding: 2rem 0;
}

.section--alt {
  background: rgba(16, 41, 59, 0.55);
  border-block: 1px solid var(--line);
}

.section__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jade-soft);
  margin: 0 0 0.45rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  margin: 0 0 1rem;
  line-height: 1.22;
  color: var(--text-heading);
  letter-spacing: -0.01em;
}

.section__intro {
  color: var(--text-body);
  max-width: 62ch;
  margin: 0 0 1.5rem;
}

.section--tight {
  padding-top: 1.5rem;
  padding-bottom: 1.25rem;
}

#veredito {
  background: transparent;
}

#veredito .shell {
  padding: 1.35rem 1.4rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line-jade);
  background: linear-gradient(135deg, rgba(17, 40, 58, 0.95), rgba(20, 50, 70, 0.85));
  box-shadow: var(--shadow-card), 0 0 40px rgba(54, 197, 154, 0.06);
}

.verdict {
  margin: 0 0 0.85rem;
  padding: 0 0 0 1rem;
  background: transparent;
  border: none;
  border-left: 3px solid var(--jade-soft);
  border-radius: 0;
  box-shadow: none;
}

.verdict p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 2.2vw, 1.22rem);
  line-height: 1.58;
  color: var(--text-heading);
}

.section__intro--after-verdict {
  padding-left: 1rem;
  border-left: 1px solid rgba(240, 184, 76, 0.35);
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 0;
}

#destaques.section--alt {
  background: linear-gradient(180deg, rgba(13, 34, 51, 0.6), rgba(8, 21, 34, 0.2));
}

.observation-stack {
  counter-reset: highlight;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.observation {
  counter-increment: highlight;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(17, 40, 58, 0.92), rgba(20, 50, 70, 0.75));
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.observation:hover {
  border-color: rgba(54, 197, 154, 0.35);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), 0 0 24px rgba(54, 197, 154, 0.08);
}

.observation:nth-child(1) {
  border-top: 2px solid var(--jade-soft);
}

.observation:nth-child(2) {
  border-top: 2px solid rgba(72, 210, 220, 0.55);
}

.observation:nth-child(3) {
  border-top: 2px solid var(--jade);
}

.observation:nth-child(4) {
  border-top: 2px solid var(--gold-soft);
}

.observation:nth-child(5) {
  border-top: 2px solid var(--ember);
}

.observation h3 {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.06rem;
  margin: 0 0 0.4rem;
  color: var(--text-heading);
}

.observation h3::before {
  content: counter(highlight, decimal-leading-zero);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--jade-soft);
  flex-shrink: 0;
}

.observation:nth-child(4) h3::before {
  color: var(--gold-soft);
}

.observation p {
  margin: 0;
  color: var(--text-body);
  font-size: 0.96rem;
  line-height: 1.62;
}

@media (min-width: 768px) {
  .observation-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem 1.25rem;
  }

  .observation:nth-child(5) {
    grid-column: 1;
  }
}

#pontos-fortes .balance-grid {
  gap: 1.15rem;
  align-items: stretch;
}

#pontos-fortes .balance-col {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

#pontos-fortes .balance-col:first-child {
  background: linear-gradient(160deg, rgba(31, 175, 135, 0.14), rgba(17, 40, 58, 0.95));
  border-color: rgba(54, 197, 154, 0.3);
}

#pontos-fortes .balance-col--note {
  background: linear-gradient(160deg, rgba(233, 122, 46, 0.12), rgba(17, 40, 58, 0.95));
  border-color: rgba(240, 184, 76, 0.28);
}

#pontos-fortes .balance-col h3 {
  font-size: 1.2rem;
  color: var(--text-heading);
}

#pontos-fortes .balance-col ul {
  color: var(--text-body);
}

.balance-col h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
  color: var(--jade-soft);
}

.balance-col--note h3 {
  color: var(--gold-soft);
}

.balance-col ul {
  margin: 0;
  padding-left: 1.15rem;
}

.balance-col li + li {
  margin-top: 0.45rem;
}

.editorial-rg-note {
  margin: 1.75rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 62ch;
}

#ficha-tecnica.section--alt {
  background: rgba(16, 41, 59, 0.45);
}

.tech-sheet-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-jade);
  border-radius: calc(var(--radius) + 2px);
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
}

.tech-sheet {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.tech-sheet th,
.tech-sheet td {
  padding: 0.9rem 1.15rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.tech-sheet tr:last-child th,
.tech-sheet tr:last-child td {
  border-bottom: none;
}

.tech-sheet th {
  width: 38%;
  font-weight: 600;
  color: var(--jade-soft);
  background: rgba(8, 21, 34, 0.45);
  font-size: 0.86rem;
}

.tech-sheet td {
  color: var(--text-heading);
  background: rgba(17, 40, 58, 0.65);
  font-size: 0.96rem;
}

.tech-sheet tr:nth-child(even) td {
  background: rgba(20, 50, 70, 0.55);
}

.source-footnote {
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.source-footnote__line {
  margin: 0;
}

.source-footnote__meta {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  color: rgba(175, 193, 207, 0.75);
}

.source-footnote a {
  color: var(--jade-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.source-footnote a:hover {
  color: var(--gold);
}

#faq .section__label,
#faq .section__title,
#faq .faq-list {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.faq-item {
  border: 1px solid var(--line-jade);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.faq-item:has(.faq-q[aria-expanded="true"]) {
  border-color: rgba(54, 197, 154, 0.45);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), 0 0 24px rgba(54, 197, 154, 0.1);
}

.faq-q {
  width: 100%;
  min-height: 58px;
  text-align: left;
  font: inherit;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 0.85rem 1.05rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-heading);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.15s ease;
}

.faq-q:hover {
  background: rgba(54, 197, 154, 0.08);
}

.faq-q::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  width: 1.85rem;
  height: 1.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--jade-soft);
  background: rgba(54, 197, 154, 0.12);
  border: 1px solid rgba(54, 197, 154, 0.25);
  flex-shrink: 0;
}

.faq-q[aria-expanded="true"] {
  background: rgba(54, 197, 154, 0.1);
}

.faq-q[aria-expanded="true"]::after {
  content: "−";
  background: rgba(31, 175, 135, 0.2);
  color: var(--text-heading);
}

.faq-a {
  padding: 0 1.15rem 1rem;
  color: var(--text-body);
  font-size: 0.98rem;
}

.faq-a p {
  margin: 0;
}

.site-footer {
  margin-top: 2rem;
  padding: 32px 0 26px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  background: #060f18;
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(var(--max), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 36rem;
}

.footer-brand__lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.footer-brand__mark {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.footer-brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-heading);
}

.footer-brand__name span {
  color: var(--gold);
}

.footer-brand__desc {
  margin: 9px 0 0;
  max-width: 34rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 24px;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  font-size: 0.8125rem;
}

.footer-links a {
  color: var(--jade-soft);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-divider {
  height: 1px;
  margin: 0;
  background: var(--line);
}

.footer-top + .footer-divider {
  margin-top: 24px;
}

.footer-divider + .footer-rg {
  margin-top: 18px;
}

.footer-rg + .footer-divider {
  margin-top: 20px;
}

.footer-divider + .footer-bottom {
  margin-top: 16px;
}

.footer-rg {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.55;
  color: rgba(175, 193, 207, 0.82);
}

.footer-rg a {
  margin-left: 0.35rem;
  color: var(--jade-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-rg a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copy,
.footer-note {
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.45;
  color: rgba(175, 193, 207, 0.62);
}

.footer-note {
  text-align: right;
}

@media (max-width: 700px) {
  .site-footer {
    padding: 32px 24px 26px;
  }

  .footer-inner {
    width: 100%;
  }

  .footer-top {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px 24px;
  }

  .footer-links a {
    white-space: normal;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .footer-note {
    text-align: left;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 899px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hero__figure {
    order: -1;
    justify-self: center;
    width: min(100%, 300px);
    margin-inline: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1rem var(--gutter);
    background: var(--bg-card-elevated);
    border-bottom: 1px solid var(--line-jade);
    box-shadow: var(--shadow-soft);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    flex-wrap: wrap;
    position: relative;
  }

  .header-cta {
    order: 3;
  }

  .spec-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .spec-item:last-child {
    border-bottom: none;
  }
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.26fr) minmax(268px, 0.74fr);
    gap: clamp(0.85rem, 1.6vw, 1.5rem);
  }

  .hero__lede,
  .hero__meta,
  .hero__actions {
    max-width: 56ch;
  }

  .hero__figure {
    width: clamp(268px, 31vw, 372px);
    max-width: 372px;
  }
}

@media (min-width: 900px) and (max-width: 1024px) {
  .hero__figure {
    width: min(300px, 34vw);
  }
}

@media (max-width: 599px) {
  .hero__actions {
    flex-direction: column;
    max-width: none;
  }

  .hero__actions .btn {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
  }
}
