:root {
  --bg: #07111f;
  --panel: rgba(10, 18, 33, 0.82);
  --panel-strong: rgba(10, 19, 36, 0.96);
  --text: #eef4ff;
  --muted: #a6b6d6;
  --line: rgba(181, 204, 255, 0.16);
  --line-strong: rgba(181, 204, 255, 0.28);
  --accent: #55d6be;
  --accent-strong: #f7b955;
  --melonly: #39d98a;
  --sonoran: #73a7ff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 20px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(85, 214, 190, 0.18), transparent 28%),
    radial-gradient(circle at 85% 8%, rgba(115, 167, 255, 0.22), transparent 26%),
    linear-gradient(180deg, #081120 0%, #0a1427 42%, #060c18 100%);
  font-family: "Manrope", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
  pointer-events: none;
}

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

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

.page-shell {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
  padding: 24px 0 14px;
}

.site-header,
.hero,
.site-footer {
  position: relative;
  overflow: hidden;
}

.comparison-section {
  position: relative;
  overflow: hidden;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  margin-bottom: 24px;
  background: rgba(7, 15, 28, 0.62);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--sonoran));
  box-shadow: 0 0 0 6px rgba(85, 214, 190, 0.12);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong,
.site-nav a,
.button,
.panel-label,
.product-label,
.card-index,
.eyebrow,
.status,
.summary-card span {
  font-family: "Space Grotesk", sans-serif;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy span,
.site-nav a,
.lede,
.section-heading p,
.info-card p,
.compare-row-label span,
.compare-cell,
.gallery-heading p,
.process-card p,
.site-footer p,
.footer-stamp,
figcaption {
  color: var(--muted);
}

.brand-copy span {
  font-size: 0.84rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.hero,
.comparison-section,
.site-footer {
  background: linear-gradient(180deg, rgba(15, 28, 48, 0.74), rgba(8, 16, 30, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero {
  display: block;
  padding: 34px;
  min-height: 0;
}

.hero::after,
.comparison-section::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(247, 185, 85, 0.13), transparent 65%);
  pointer-events: none;
}

.hero-disclosure {
  display: inline-flex;
  max-width: 64ch;
  margin: 0 0 16px;
  padding: 10px 14px;
  background: rgba(247, 185, 85, 0.08);
  border: 1px solid rgba(247, 185, 85, 0.22);
  border-radius: 14px;
  color: #ffe0a7;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
  line-height: 1.45;
}

.hero-compare-lockups {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-compare-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(10, 18, 33, 0.78);
  border: 1px solid var(--line);
  border-radius: 18px;
  backdrop-filter: blur(14px);
}

.hero-compare-lockup img {
  width: auto;
  height: 28px;
  max-width: 160px;
  object-fit: contain;
}

.hero-compare-lockups .hero-compare-lockup:first-child img:last-child {
  height: 36px;
  max-width: 170px;
}

.hero-compare-lockups .hero-compare-lockup:last-child img:last-child {
  height: 36px;
  max-width: 180px;
}

.hero-compare-lockup span {
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.site-footer h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
}

.lede,
.section-heading p,
.gallery-heading p,
.process-card p,
.site-footer p,
figcaption {
  line-height: 1.65;
}

.lede {
  max-width: 42ch;
  margin: 16px 0 0;
  font-size: 0.98rem;
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 26px;
  align-items: end;
}

.hero-rail {
  display: grid;
  gap: 12px;
  align-content: start;
}

.hero-rail-title {
  margin: 0;
  color: var(--accent-strong);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-compare-lockups-links {
  margin-bottom: 0;
}

.hero-compare-link {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.hero-compare-link:hover,
.hero-compare-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: var(--panel-strong);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), #74a6ff);
  color: #04101d;
  box-shadow: 0 18px 45px rgba(85, 214, 190, 0.25);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
}

.compare-header,
.compare-row-label,
.compare-cell,
.gallery-block,
.promo-card {
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.panel-label {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.promo-grid {
  display: grid;
  gap: 18px;
}

.gallery-block {
  padding: 22px;
  border-radius: var(--radius-md);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.source-banner {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding: 18px 20px;
  background: rgba(247, 185, 85, 0.08);
  border: 1px solid rgba(247, 185, 85, 0.22);
  border-radius: 18px;
}

.source-banner strong {
  font-family: "Space Grotesk", sans-serif;
  color: #ffd08b;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.source-banner span {
  color: var(--muted);
  line-height: 1.6;
}

.source-banner a {
  width: fit-content;
  color: #ffd08b;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
}

.source-banner a:hover,
.source-banner a:focus-visible {
  color: #fff0ca;
}

.gallery-heading h3,
.compare-row-label strong {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.compare-header:hover,
.compare-row-label:hover,
.compare-cell:hover,
.promo-card:hover,
.gallery-block:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: var(--panel-strong);
}

.comparison-section,
.site-footer {
  margin-top: 24px;
  padding: 36px;
}

.site-footer {
  padding: 16px 22px;
  margin-bottom: 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 72ch;
  margin-bottom: 28px;
}

.section-heading h2,
.site-footer h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-heading p {
  margin: 0;
}

.compare-board {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.compare-header,
.compare-row-label,
.compare-cell {
  padding: 18px;
  border-radius: 18px;
  min-height: 96px;
  height: 100%;
}

.compare-header {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.compare-header p,
.product-label,
.gallery-heading p,
figcaption {
  margin: 0;
}

.compare-header-topic {
  align-items: flex-end;
}

.compare-header-topic p {
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.compare-header img {
  max-width: 100%;
  max-height: 42px;
  width: auto;
  object-fit: contain;
  object-position: center;
}

.compare-header-melonly {
  box-shadow: inset 0 0 0 1px rgba(57, 217, 138, 0.12);
}

#community .compare-header-melonly img {
  max-height: 54px;
}

.compare-header-sonoran {
  box-shadow: inset 0 0 0 1px rgba(115, 167, 255, 0.12);
}

.compare-row-label {
  display: grid;
  gap: 8px;
  align-content: center;
}

.compare-row-label strong {
  margin: 0;
  font-size: 1rem;
}

.compare-row-label span {
  font-size: 0.92rem;
}

.compare-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.95rem;
}

.compare-cell-stack {
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.compare-note-small {
  color: rgba(222, 231, 248, 0.82);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
}

.compare-note-small-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.status,
.cell-note,
.status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
}

.status {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-review {
  background: rgba(247, 185, 85, 0.12);
  color: #ffd08b;
}

.status-open {
  background: rgba(85, 214, 190, 0.12);
  color: #88f0dd;
}

.status-proof {
  background: rgba(115, 167, 255, 0.12);
  color: #a9c5ff;
}

.cell-note {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.status-chip {
  width: 100%;
  justify-content: flex-start;
  gap: 8px;
  padding: 12px 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: left;
  border: 1px solid transparent;
  overflow-wrap: anywhere;
}

.status-chip-positive {
  background: rgba(57, 217, 138, 0.12);
  border-color: rgba(57, 217, 138, 0.26);
  color: #a8ffd0;
}

.status-chip-negative {
  background: rgba(255, 108, 108, 0.12);
  border-color: rgba(255, 108, 108, 0.24);
  color: #ffb7b7;
}

.status-chip-neutral {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #dce5fa;
}

.status-chip-warning {
  background: rgba(247, 185, 85, 0.14);
  border-color: rgba(247, 185, 85, 0.28);
  color: #ffd08b;
}

.status-chip-info {
  background: rgba(115, 167, 255, 0.14);
  border-color: rgba(115, 167, 255, 0.28);
  color: #bfd3ff;
}

.pricing-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.pricing-link:hover,
.pricing-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(85, 214, 190, 0.42);
  background: rgba(85, 214, 190, 0.08);
}

.info-tooltip {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(220, 229, 250, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  cursor: help;
}

.info-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  width: min(240px, 60vw);
  padding: 10px 12px;
  border: 1px solid rgba(181, 204, 255, 0.16);
  border-radius: 12px;
  background: rgba(8, 16, 30, 0.96);
  color: var(--text);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
  text-align: left;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.45;
  z-index: 5;
}

.info-tooltip:hover::after,
.info-tooltip:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.gallery-block {
  margin-top: 18px;
  overflow: visible;
}

.gallery-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}

.promo-sections {
  display: grid;
  gap: 22px;
}

.promo-group {
  display: grid;
  gap: 16px;
}

.promo-group-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}

.promo-group-heading img {
  width: auto;
  max-width: 120px;
  max-height: 34px;
  object-fit: contain;
}

.promo-group-heading h4 {
  margin: 0 0 4px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
}

.promo-group-heading p {
  margin: 0;
  color: var(--muted);
}

.promo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

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

.promo-card {
  margin: 0;
  padding: 12px;
  border-radius: 18px;
}

.promo-card img,
.promo-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
}

figcaption {
  padding: 12px 4px 4px;
}

.footer-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.copyright {
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
}

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

.reveal-delay-1 {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .promo-grid-dual {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .compare-board {
    grid-template-columns: 1fr;
  }

  .compare-header-topic {
    min-height: auto;
  }

  .gallery-heading {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 16px), var(--content-width));
    padding-top: 14px;
  }

  .site-header {
    border-radius: 28px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
  }

  .hero,
  .comparison-section,
  .site-footer {
    padding: 20px 16px;
  }

  .hero-main {
    gap: 18px;
  }

  .hero-disclosure {
    display: block;
    max-width: none;
    font-size: 0.8rem;
    margin-bottom: 14px;
  }

  .hero-rail {
    gap: 10px;
  }

  .hero-compare-lockups {
    gap: 12px;
  }

  .hero-compare-lockup {
    width: 100%;
    justify-content: center;
    gap: 10px;
    padding: 14px 12px;
    flex-wrap: wrap;
  }

  .hero-compare-lockup img {
    max-width: min(40vw, 150px);
    height: auto;
    max-height: 30px;
  }

  .hero-compare-lockups .hero-compare-lockup:first-child img:last-child,
  .hero-compare-lockups .hero-compare-lockup:last-child img:last-child {
    max-width: min(44vw, 168px);
    max-height: 34px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 10vw, 2.8rem);
    line-height: 1.04;
  }

  .lede {
    max-width: none;
    font-size: 0.94rem;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .section-heading h2 {
    font-size: clamp(1.6rem, 8vw, 2.25rem);
  }

  .compare-header,
  .compare-row-label,
  .compare-cell {
    min-height: auto;
    padding: 14px;
  }

  .compare-header img {
    max-height: 34px;
  }

  #community .compare-header-melonly img {
    max-height: 44px;
  }

  .compare-row-label strong {
    font-size: 0.98rem;
  }

  .compare-row-label span,
  .compare-cell {
    font-size: 0.9rem;
  }

  .compare-cell-stack {
    align-items: stretch;
  }

  .status-chip,
  .cell-note {
    width: 100%;
  }

  .status-chip {
    font-size: 0.84rem;
    padding: 10px 12px;
  }

  .pricing-link {
    width: 100%;
  }

  .promo-group-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }

  .site-nav a {
    padding: 8px 12px;
    font-size: 0.88rem;
  }
}
