:root {
  --bg: #f5efe3;
  --surface: rgba(255, 251, 245, 0.9);
  --surface-strong: #fffaf1;
  --ink: #1d1b18;
  --muted: #5f584d;
  --line: rgba(31, 28, 24, 0.12);
  --accent: #d54f2f;
  --accent-dark: #9d3119;
  --accent-soft: #ffe3d7;
  --teal: #0d6d68;
  --sand: #ead8b5;
  --shadow: 0 20px 60px rgba(50, 40, 24, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(235, 211, 167, 0.6), transparent 35%),
    radial-gradient(circle at top right, rgba(13, 109, 104, 0.12), transparent 30%),
    linear-gradient(180deg, #f7f1e8 0%, #f4efe8 100%);
  font-family: "Manrope", Arial, sans-serif;
}

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

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

.site-shell,
.index-main {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
}

.topbar {
  padding: 20px 0 8px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.75);
  backdrop-filter: blur(14px);
}

.brand {
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand span {
  color: var(--muted);
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  padding: 28px 0 44px;
}

.hero-copy,
.hero-card,
.section-card,
.option-card,
.faq-card,
.cta-band,
.index-card,
.note-panel {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-copy {
  border-radius: 32px;
  padding: 38px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.04;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.75rem, 5vw, 5rem);
}

h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.8rem);
}

h3 {
  font-size: 1.22rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy p.lead {
  max-width: 60ch;
  font-size: 1.05rem;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 140ms ease, background 140ms ease, color 140ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-secondary {
  border: 1px solid rgba(29, 27, 24, 0.14);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.mini-stat {
  padding: 14px;
  border: 1px solid rgba(29, 27, 24, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
}

.mini-stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.hero-card {
  overflow: hidden;
  border-radius: 32px;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 20px 0 10px;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  margin-bottom: 18px;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}

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

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

.section-card,
.option-card,
.faq-card {
  border-radius: var(--radius-xl);
  padding: 24px;
}

.section-card ul,
.faq-card ul,
.note-panel ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 14px;
}

.tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13, 109, 104, 0.12);
  color: var(--teal);
  font-weight: 700;
  font-size: 0.86rem;
}

.selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.selector button {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.selector button.is-active {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.option-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option-card .kicker {
  color: var(--accent-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.option-card .meta-line {
  color: var(--muted);
  font-size: 0.94rem;
}

.option-card .cta-inline {
  margin-top: auto;
}

.mistakes-list {
  display: grid;
  gap: 14px;
}

.mistake-item {
  padding: 18px;
  border: 1px solid rgba(29, 27, 24, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.mistake-item strong {
  display: block;
  margin-bottom: 6px;
}

.budget-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.budget-table td {
  padding: 12px 0;
  border-bottom: 1px solid rgba(29, 27, 24, 0.08);
  color: var(--muted);
}

.budget-table td:first-child {
  color: var(--ink);
  font-weight: 700;
}

.faq-grid {
  display: grid;
  gap: 16px;
}

.faq-card h3 {
  margin-bottom: 8px;
}

.cta-band {
  margin: 26px 0 42px;
  padding: 26px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(13, 109, 104, 0.12), rgba(213, 79, 47, 0.12)),
    var(--surface-strong);
}

.cta-band p {
  max-width: 60ch;
}

.footer-note {
  padding: 0 0 32px;
  color: var(--muted);
  font-size: 0.92rem;
}

.index-shell {
  min-height: 100vh;
}

.index-main {
  padding: 28px 0 40px;
}

.index-hero {
  padding: 40px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.index-hero p {
  max-width: 60ch;
}

.index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.index-card {
  overflow: hidden;
  border-radius: 28px;
}

.index-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.index-card div {
  padding: 18px 18px 22px;
}

.index-card h2 {
  font-size: 1.35rem;
}

.note-panel {
  margin-top: 22px;
  padding: 26px;
  border-radius: 28px;
}

.note-panel code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

@media (max-width: 980px) {
  .hero,
  .grid-3,
  .grid-2,
  .index-grid {
    grid-template-columns: 1fr;
  }

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

  .topbar-inner {
    border-radius: 20px;
  }
}

@media (max-width: 640px) {
  .site-shell,
  .index-main {
    width: min(calc(100% - 20px), var(--content));
  }

  .hero-copy,
  .hero-card,
  .index-hero,
  .section-card,
  .option-card,
  .faq-card,
  .cta-band,
  .note-panel {
    border-radius: 22px;
  }

  .hero-copy,
  .index-hero {
    padding: 24px;
  }

  .section-card,
  .option-card,
  .faq-card,
  .cta-band,
  .note-panel {
    padding: 18px;
  }
}

.robot-page {
  background:
    linear-gradient(180deg, #f7fbfb 0%, #eef5f4 42%, #f8f1e6 100%);
  color: #101722;
}

.robot-page h1,
.robot-page h2,
.robot-page h3 {
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: 0;
}

.robot-shell {
  width: min(calc(100% - 32px), 1180px);
  margin: 0 auto;
  padding: 24px 0 44px;
}

.robot-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 26px;
  align-items: stretch;
  min-height: 620px;
}

.robot-hero-copy,
.robot-hero-media,
.deal-card,
.sidebar-box,
.guide-card,
.robot-final-cta,
.robot-summary-strip article {
  border: 1px solid rgba(17, 24, 34, 0.1);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(31, 48, 56, 0.12);
}

.robot-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  border-radius: 30px;
}

.disclosure-line {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 20px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #eef7f6;
  color: #42515b;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.45;
}

.robot-kicker {
  margin: 0 0 10px;
  color: #087668;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.robot-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.55rem, 5vw, 5.2rem);
  font-weight: 800;
  line-height: 0.98;
}

.robot-lead {
  max-width: 64ch;
  margin: 22px 0 0;
  color: #4b5963;
  font-size: 1.05rem;
}

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

.robot-button-primary {
  background: #ff5a1f;
  color: #fff;
  box-shadow: 0 12px 30px rgba(255, 90, 31, 0.28);
}

.robot-button-secondary {
  border: 1px solid rgba(16, 23, 34, 0.14);
  background: #fff;
  color: #101722;
}

.robot-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.robot-trust-row span {
  padding: 9px 12px;
  border-radius: 8px;
  background: #f3f6f7;
  color: #43515b;
  font-size: 0.88rem;
  font-weight: 800;
}

.robot-hero-media {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 520px;
  border-radius: 30px;
  background:
    linear-gradient(155deg, #dff0ef 0%, #ffffff 54%, #ffe8dc 100%);
}

.robot-hero-media img {
  width: min(82%, 440px);
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(19, 38, 48, 0.18));
}

.robot-hero-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(260px, calc(100% - 44px));
  padding: 16px;
  border-radius: 12px;
  background: rgba(16, 23, 34, 0.9);
  color: #fff;
}

.robot-hero-badge strong,
.robot-hero-badge span {
  display: block;
}

.robot-hero-badge span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.robot-hero-badge small {
  display: block;
  margin-top: 9px;
  color: #ffcfb7;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.35;
}

.robot-summary-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 28px;
}

.robot-summary-strip article {
  padding: 18px;
  border-radius: 12px;
}

.robot-summary-strip strong,
.robot-summary-strip span {
  display: block;
}

.robot-summary-strip strong {
  color: #087668;
  font-size: 0.84rem;
  text-transform: uppercase;
}

.robot-summary-strip span {
  margin-top: 5px;
  color: #26323d;
  font-weight: 800;
}

.robot-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  align-items: start;
}

.robot-main-column {
  display: grid;
  gap: 16px;
}

.robot-section-head {
  margin: 0 0 10px;
}

.robot-section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
}

.robot-section-head p:last-child {
  max-width: 74ch;
}

.deal-card {
  display: grid;
  grid-template-columns: 52px 132px minmax(0, 1fr) 210px;
  gap: 18px;
  align-items: start;
  padding: 18px;
  border-radius: 14px;
}

.deal-card-featured {
  border-color: rgba(255, 90, 31, 0.32);
  background:
    linear-gradient(90deg, rgba(255, 90, 31, 0.08), rgba(255, 255, 255, 0.92) 44%),
    #fff;
}

.deal-rank {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: #101722;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
}

.deal-image {
  display: grid;
  place-items: center;
  width: 132px;
  aspect-ratio: 1;
  margin: 0;
  border: 1px solid rgba(16, 23, 34, 0.08);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8f8 100%);
}

.deal-image img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.deal-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 7px;
}

.deal-badge {
  padding: 7px 10px;
  border-radius: 8px;
  background: #e7f6f3;
  color: #087668;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.deal-score {
  color: #ff5a1f;
  font-size: 1.25rem;
  font-weight: 800;
}

.deal-card h3 {
  margin: 0;
  font-size: 1.34rem;
  font-weight: 800;
  line-height: 1.18;
}

.deal-rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin-top: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 90, 31, 0.18);
  border-radius: 8px;
  background: #fff7ef;
  color: #87411e;
  line-height: 1.2;
}

.deal-rating-row strong {
  color: #d94816;
  font-size: 0.92rem;
  font-weight: 900;
}

.deal-rating-row span {
  color: #5f4738;
  font-size: 0.88rem;
  font-weight: 800;
}

.deal-copy {
  margin: 8px 0 12px;
  color: #4b5963;
}

.deal-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
}

.deal-price strong {
  color: #101722;
  font-size: 1.34rem;
  line-height: 1;
}

.deal-price span {
  min-width: 1px;
  color: #7c8790;
  font-weight: 800;
}

.deal-price .strike {
  text-decoration: line-through;
}

.deal-price em {
  padding: 6px 8px;
  border-radius: 7px;
  background: #fff1e9;
  color: #d94816;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

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

.deal-grid div {
  padding: 10px;
  border-radius: 8px;
  background: #f6f8f9;
}

.deal-grid strong,
.deal-grid span {
  display: block;
}

.deal-grid strong {
  margin-bottom: 3px;
  color: #101722;
  font-size: 0.78rem;
}

.deal-grid span,
.deal-cta span {
  color: #5b6973;
  font-size: 0.84rem;
  line-height: 1.45;
}

.deal-cta {
  display: grid;
  gap: 9px;
  justify-items: stretch;
  text-align: center;
  padding-top: 46px;
}

.deal-cta .button {
  width: 100%;
}

.robot-sidebar {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 16px;
}

.sidebar-box {
  padding: 20px;
  border-radius: 14px;
}

.sidebar-box h2,
.sidebar-box h3 {
  margin: 0;
  font-weight: 800;
}

.sidebar-box h2 {
  font-size: 1.55rem;
  line-height: 1.1;
}

.sidebar-box h3 {
  font-size: 1.12rem;
}

.sidebar-cta {
  background: #101722;
  color: #fff;
}

.sidebar-cta p {
  color: rgba(255, 255, 255, 0.74);
}

.robot-check-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.robot-check-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  color: #4b5963;
  line-height: 1.55;
}

.robot-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #18aa93;
}

.buying-guide,
.robot-faq,
.robot-final-cta {
  margin-top: 28px;
}

.buying-guide {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

.guide-card {
  padding: 24px;
  border-radius: 18px;
}

.guide-card h2,
.guide-card h3 {
  margin: 0;
  font-weight: 800;
}

.guide-card h2 {
  font-size: 2rem;
  line-height: 1.12;
}

.robot-final-cta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 26px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(24, 170, 147, 0.14), rgba(255, 90, 31, 0.12)),
    #fff;
}

.robot-final-cta h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  font-weight: 800;
  line-height: 1.08;
}

.legal-panel {
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(16, 23, 34, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.legal-panel h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
}

.legal-panel p {
  margin: 8px 0 0;
  color: #5b6973;
  font-size: 0.92rem;
}

.legal-footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  width: min(calc(100% - 32px), 1180px);
  margin: 0 auto;
  padding: 0 0 34px;
  color: #5b6973;
  font-size: 0.9rem;
}

.legal-footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1080px) {
  .robot-hero,
  .robot-layout,
  .buying-guide {
    grid-template-columns: 1fr;
  }

  .robot-hero {
    min-height: 0;
  }

  .robot-sidebar {
    position: static;
  }
}

@media (max-width: 820px) {
  .robot-summary-strip,
  .deal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .deal-card {
    grid-template-columns: 52px 112px minmax(0, 1fr);
  }

  .deal-image {
    width: 112px;
  }

  .deal-body {
    grid-column: 2 / -1;
  }

  .deal-cta {
    grid-column: 1 / -1;
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .robot-shell {
    width: min(calc(100% - 20px), 1180px);
    padding-top: 10px;
  }

  .robot-hero-copy,
  .guide-card,
  .robot-final-cta {
    padding: 20px;
    border-radius: 18px;
  }

  .robot-hero-media {
    min-height: 340px;
    border-radius: 18px;
  }

  .robot-hero h1 {
    font-size: 2.35rem;
  }

  .robot-summary-strip,
  .deal-grid,
  .robot-final-cta {
    grid-template-columns: 1fr;
  }

  .robot-final-cta {
    display: grid;
  }

  .deal-card {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .deal-rank {
    width: 46px;
    height: 46px;
  }

  .deal-image {
    grid-column: 1 / -1;
    width: min(100%, 220px);
    justify-self: center;
  }

  .deal-body {
    grid-column: 1 / -1;
  }

  .deal-topline {
    align-items: flex-start;
  }

  .legal-footer {
    flex-wrap: wrap;
  }
}
