:root {
  color-scheme: dark;
  --bg: #090b10;
  --bg-elevated: #11141b;
  --surface: rgba(18, 22, 30, 0.86);
  --surface-solid: #151922;
  --surface-soft: #1b202b;
  --text: #f6f8fb;
  --muted: #aab3c1;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --accent: #6ee7ff;
  --accent-strong: #22c7ea;
  --accent-ink: #02151b;
  --recommended: #a7f36b;
  --warning: #ffcf66;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --shell: min(1180px, calc(100% - 2rem));
  --transition: 180ms ease;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #edf1f6;
  --bg-elevated: #ffffff;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-solid: #ffffff;
  --surface-soft: #f1f4f8;
  --text: #121721;
  --muted: #5d6878;
  --line: rgba(18, 23, 33, 0.12);
  --line-strong: rgba(18, 23, 33, 0.2);
  --accent: #007d98;
  --accent-strong: #00647a;
  --accent-ink: #ffffff;
  --recommended: #347d10;
  --warning: #8e5f00;
  --shadow: 0 30px 70px rgba(32, 46, 65, 0.16);
}

* {
  box-sizing: border-box;
  scrollbar-color: color-mix(in srgb, var(--accent) 55%, var(--line-strong)) color-mix(in srgb, var(--surface-soft) 72%, transparent);
  scrollbar-width: thin;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

::-webkit-scrollbar {
  width: 0.55rem;
  height: 0.55rem;
}

::-webkit-scrollbar-track {
  background: color-mix(in srgb, var(--surface-soft) 72%, transparent);
}

::-webkit-scrollbar-thumb {
  border: 2px solid color-mix(in srgb, var(--surface-soft) 72%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 55%, var(--line-strong));
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% 0%, rgba(73, 133, 177, 0.15), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-160%);
  transition: transform var(--transition);
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(18px);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-inner {
  min-height: 4.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: block;
  width: 2.35rem;
  height: 2.15rem;
  flex: 0 0 auto;
  color: var(--text);
}

.paw-pad,
.paw-toe {
  position: absolute;
  display: block;
  background: currentColor;
  box-shadow: 0 0 18px color-mix(in srgb, var(--accent) 24%, transparent);
}

.paw-pad {
  left: 0.56rem;
  bottom: 0.18rem;
  width: 1.25rem;
  height: 1.02rem;
  border-radius: 52% 52% 46% 46%;
  transform: rotate(-4deg);
}

.paw-toe {
  width: 0.52rem;
  height: 0.64rem;
  border-radius: 999px;
}

.paw-toe--one {
  top: 0.52rem;
  left: 0.1rem;
  transform: rotate(-24deg);
}

.paw-toe--two {
  top: 0.08rem;
  left: 0.64rem;
  transform: rotate(-10deg);
}

.paw-toe--three {
  top: 0.08rem;
  right: 0.64rem;
  transform: rotate(10deg);
}

.paw-toe--four {
  top: 0.52rem;
  right: 0.1rem;
  transform: rotate(24deg);
}

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

.brand strong {
  line-height: 1.2;
}

.brand small {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}

.theme-toggle:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6.5rem) 0 clamp(4rem, 8vw, 7rem);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.18;
  pointer-events: none;
}

.hero-glow--one {
  top: 5%;
  left: -8%;
  width: 24rem;
  height: 24rem;
  background: var(--accent);
}

.hero-glow--two {
  right: -5%;
  bottom: 2%;
  width: 20rem;
  height: 20rem;
  background: var(--recommended);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.97fr) minmax(0, 1.03fr);
  align-items: center;
  gap: clamp(2.25rem, 6vw, 6rem);
}

.hero-media {
  position: relative;
  order: 2;
}

.hero-copy {
  order: 1;
}

.hero-image-label {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  padding: 0.42rem 0.7rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: #ccc;
  box-shadow: var(--shadow);
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  content: "";
  pointer-events: none;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 160ms ease, transform 420ms cubic-bezier(.2,.8,.2,1);
}

.hero-image-frame img.is-changing {
  opacity: 0;
  transform: scale(0.965);
}

.hero-image-caption {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.guidance-grid h2,
.modal__header h2 {
  margin: 0;
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.15rem, 7vw, 6.5rem);
}

.hero-lead {
  max-width: 58ch;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
}

.hero-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 2rem 0 0;
}

.hero-specs div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.hero-specs dt,
.card-specs dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-specs dd,
.card-specs dd {
  margin: 0.18rem 0 0;
  font-weight: 750;
}

.hero-actions,
.card-actions,
.modal__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.hero-actions {
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-height: 3rem;
  padding: 0.72rem 1rem;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

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

.button:focus-visible,
.text-button:focus-visible,
.theme-toggle:focus-visible,
.modal__close:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 55%, transparent);
  outline-offset: 3px;
}

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

.button--primary:hover {
  background: var(--accent-strong);
}

.button--secondary,
.button--select {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--text);
}

.button--secondary:hover,
.button--select:hover {
  border-color: var(--accent);
}

.hero-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-flags li {
  white-space: nowrap;
  padding: 0.42rem 0.7rem;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
  border-radius: 999px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 18%, transparent), color-mix(in srgb, var(--surface) 86%, transparent));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 24px rgba(0, 0, 0, 0.12);
  color: color-mix(in srgb, var(--text) 88%, var(--accent));
  font-size: 0.76rem;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.hero-flags li:nth-child(2) {
  border-color: color-mix(in srgb, var(--recommended) 36%, var(--line));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--recommended) 18%, transparent), color-mix(in srgb, var(--surface) 86%, transparent));
  color: color-mix(in srgb, var(--text) 88%, var(--recommended));
}

.hero-flags li:nth-child(3) {
  border-color: color-mix(in srgb, var(--warning) 38%, var(--line));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--warning) 16%, transparent), color-mix(in srgb, var(--surface) 86%, transparent));
  color: color-mix(in srgb, var(--text) 88%, var(--warning));
}

.hero-flags li:nth-child(4) {
  border-color: color-mix(in srgb, var(--accent) 22%, var(--line));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--text) 8%, transparent), color-mix(in srgb, var(--surface) 88%, transparent));
  color: var(--muted);
}

.systems-section,
.guidance-section {
  border-top: 1px solid var(--line);
}

.systems-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: color-mix(in srgb, var(--bg-elevated) 55%, transparent);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: end;
  gap: 2rem;
}

.section-heading h2,
.guidance-grid h2,
.modal__header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-heading > p,
.guidance-copy,
.modal__header p {
  color: var(--muted);
}

.section-heading > p {
  max-width: 60ch;
  margin: 0;
  justify-self: end;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1rem;
  margin-top: 2.5rem;
}

.system-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.system-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.system-card--recommended {
  z-index: 2;
  border-color: color-mix(in srgb, var(--recommended) 62%, var(--line));
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--recommended) 9%, var(--surface-solid)), var(--surface));
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.24);
}

.system-card.is-selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 24%, transparent), 0 24px 70px rgba(0, 0, 0, 0.22);
}

.recommended-ribbon {
  position: absolute;
  top: -0.75rem;
  right: 1.1rem;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: var(--recommended);
  color: #102006;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.tier-pill,
.selection-state {
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tier-pill {
  color: var(--accent);
}

.selection-state {
  display: none;
  color: var(--recommended);
}

.system-card.is-selected .selection-state {
  display: inline;
}

.system-card h3 {
  margin: 0.8rem 0 0;
  font-size: 1.55rem;
  line-height: 1.15;
}

.system-card__summary {
  min-height: 5.1rem;
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.card-specs {
  display: grid;
  gap: 0;
  margin: 1rem 0 0;
  border-block: 1px solid var(--line);
}

.card-specs div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}

.card-specs div:last-child {
  border-bottom: 0;
}

.card-specs dd {
  text-align: right;
}

.resolution-line {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.card-actions {
  margin-top: auto;
  padding-top: 1.25rem;
}

.system-card.is-selected .button--select {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 14%, var(--surface));
}

.text-button {
  white-space: nowrap;
  padding: 0.45rem 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-weight: 800;
  cursor: pointer;
}

.text-button:hover {
  text-decoration: underline;
  text-underline-offset: 0.22rem;
}

.guidance-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.guidance-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
}

.guidance-copy p {
  max-width: 68ch;
  margin: 0;
}

.guidance-copy p + p {
  margin-top: 1rem;
}

.site-footer {
  padding: 1.7rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-inner p {
  margin: 0;
}

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

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-weight: 850;
  text-decoration: none;
}

.footer-brand:hover {
  color: var(--accent);
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  padding: 1rem;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 180ms, opacity 180ms ease;
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(12px);
}

.modal__dialog {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  width: min(1180px, calc(100vw - 2rem));
  max-height: min(94vh, 900px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface-solid);
  box-shadow: var(--shadow);
  transform: translateY(18px) scale(0.985);
  transition: transform 180ms ease;
}

.modal.is-open .modal__dialog {
  transform: none;
}

.modal__close {
  position: absolute;
  z-index: 3;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-solid) 82%, transparent);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.modal__header {
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 240px);
  align-items: center;
  gap: 1.5rem;
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid var(--line);
}

.modal__header p:not(.eyebrow) {
  max-width: 68ch;
  margin: 0.65rem 0 0;
}

.modal__header img {
  width: 100%;
  max-width: 220px;
  max-height: 220px;
  justify-self: end;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  object-fit: contain;
}

.modal__body {
  display: grid;
  overflow-y: auto;
  flex: 1 1 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.5rem 1.25rem 1.5rem 1.5rem;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.spec-panel {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
}

.spec-brief {
  grid-column: 1 / -1;
  padding: 1.1rem 1.2rem;
  border: 1px solid color-mix(in srgb, var(--accent) 32%, var(--line));
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, var(--surface-soft)), var(--surface-soft));
}

.spec-panel--wide {
  grid-column: 1 / -1;
}

.spec-panel h3,
.spec-brief h3 {
  margin: 0 0 0.85rem;
  font-size: 1rem;
}

.spec-brief p {
  max-width: 86ch;
  margin: 0;
  color: var(--muted);
}

.spec-list {
  margin: 0;
}

.spec-list div {
  display: grid;
  grid-template-columns: minmax(110px, 0.75fr) minmax(0, 1.25fr);
  gap: 1rem;
  padding: 0.58rem 0;
  border-bottom: 1px solid var(--line);
}

.spec-list div:last-child {
  border-bottom: 0;
}

.spec-list dt {
  color: var(--muted);
  font-size: 0.82rem;
}

.spec-list dd {
  margin: 0;
  font-weight: 700;
}

.suitability-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.suitability-list li {
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: var(--surface-solid);
}

.suitability-list strong,
.suitability-list span {
  display: block;
}

.suitability-list span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.modal__footer {
  flex: 0 0 auto;
  justify-content: flex-end;
  padding: 1rem 2rem 2rem;
}

body.modal-open {
  overflow: hidden;
}

@media (min-width: 980px) {
  .system-card--recommended {
    transform: translateY(-0.75rem);
  }

  .system-card--recommended:hover {
    transform: translateY(-1rem);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .section-heading,
  .guidance-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 2.25rem;
  }

  .hero-media {
    max-width: 640px;
    margin-inline: auto;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-flags {
    justify-content: center;
  }

  .section-heading > p {
    justify-self: start;
  }

  .system-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-inline: auto;
    margin-top: 2.5rem;
  }

  .system-card__summary {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(100% - 1.25rem, 1180px);
    --radius-lg: 1.4rem;
  }

  .header-inner {
    min-height: 4.25rem;
  }

  .brand small,
  .theme-toggle__text {
    display: none;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-image-label {
    top: 0.65rem;
    left: 0.65rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }

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

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

  .system-card {
    padding: 1.15rem;
  }

  .modal {
    padding: 0;
    align-items: end;
  }

  .modal__dialog {
    width: 100%;
    max-height: 94vh;
    border-radius: 1.2rem 1.2rem 0 0;
  }

  .modal__header,
  .modal__body {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }

  .modal__header img {
    max-width: 180px;
    max-height: 180px;
    margin-inline: auto;
    order: -1;
  }

  .modal__footer {
    padding: 0 1.25rem 1.25rem;
  }

  .modal__footer .button {
    flex: 1 1 100%;
  }

  .spec-panel--wide {
    grid-column: auto;
  }

  .suitability-list {
    grid-template-columns: 1fr;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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


/* Pricing -------------------------------------------------------------- */
.hero-price {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, var(--line));
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 11%, var(--surface-solid)), var(--surface));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.package-exclusions {
  grid-column: 1 / -1;
  margin: -0.2rem 0 0;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  color: color-mix(in srgb, var(--warning) 84%, var(--muted));
  font-size: 0.82rem;
  font-weight: 750;
}

.hero-price__total {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.3rem 0.4rem;
}

.hero-price__total span,
.card-price span,
.modal-price__total span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-price__total strong {
  margin-top: 0.1rem;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.hero-price__total small,
.card-price small,
.modal-price small {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.price-breakdown {
  display: grid;
  align-content: center;
  margin: 0;
  padding: 0 0 0 1rem;
  border-left: 1px solid var(--line);
}

.price-breakdown div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
}

.price-breakdown div + div {
  border-top: 1px solid var(--line);
}

.price-breakdown dt {
  color: var(--muted);
  font-size: 0.8rem;
}

.price-breakdown dd {
  margin: 0;
  white-space: nowrap;
  font-weight: 850;
}

.card-price {
  display: grid;
  margin-top: 1rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--surface-soft);
}

.card-price strong {
  margin-top: 0.12rem;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.system-card--recommended .card-price {
  border-color: color-mix(in srgb, var(--recommended) 45%, var(--line));
  background: color-mix(in srgb, var(--recommended) 8%, var(--surface-soft));
}

.pricing-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-elevated) 42%, transparent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: start;
}

.pricing-grid h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.pricing-intro {
  max-width: 52ch;
  margin: 1rem 0 0;
  color: var(--muted);
}

.service-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: grid;
  grid-template-columns: minmax(145px, 0.42fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.service-list span {
  color: var(--muted);
}

.price-note {
  margin-top: 1.25rem;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--accent);
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 0.86rem;
}

.price-note strong {
  color: var(--text);
}

.exclusion-note {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
  padding: 1.05rem 1.15rem;
  border: 1px solid color-mix(in srgb, #ff7a45 70%, var(--line));
  border-left: 5px solid #ff7a45;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(255, 96, 64, 0.24), rgba(255, 180, 70, 0.13)),
    color-mix(in srgb, var(--surface-solid) 84%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 20px 50px rgba(130, 38, 12, 0.22);
  color: color-mix(in srgb, var(--text) 90%, #ffb46b);
  backdrop-filter: blur(14px);
}

.exclusion-note strong {
  color: #ffb46b;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.exclusion-note span {
  color: color-mix(in srgb, var(--text) 78%, #ffb46b);
}

.modal-price {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0.75rem;
  margin-top: 0.85rem;
  padding: 0.7rem;
  border: 1px solid color-mix(in srgb, var(--accent) 40%, var(--line));
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
}

.modal-price .package-exclusions {
  margin-top: -0.1rem;
  padding-top: 0.65rem;
}

.modal-price__total {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-price__total strong {
  margin-top: 0.1rem;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.modal-price .price-breakdown {
  padding-left: 0.8rem;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero-price,
  .modal-price {
    grid-template-columns: 1fr;
  }

  .price-breakdown,
  .modal-price .price-breakdown {
    padding: 0.75rem 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-list li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}
