/**
 * Copyright (c) 2025-present Daycoded LLC. All rights reserved.
 * LifePacked marketing site styles
 */

:root {
  --bg: #f7fbfb;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-sunken: #eef7f7;
  --border: #d6e6e6;
  --text-primary: #081423;
  --text-secondary: #304454;
  --text-tertiary: #60727f;
  --text-inverse: #eaf1ff;
  --brand: #1acac6;
  --brand-strong: #006878;
  --brand-secondary: #0597bd;
  --brand-secondary-strong: #0c7885;
  --navy: #080d1c;
  --navy-soft: #0f1a2e;
  --shadow-soft: 0 24px 70px rgba(8, 13, 28, 0.12);
  --shadow-strong: 0 36px 90px rgba(8, 13, 28, 0.24);
  --radius-xl: 32px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --font-display: "Avenir Next", "Trebuchet MS", "Helvetica Neue", sans-serif;
  --font-body: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--text-primary);
  background:
    radial-gradient(circle at top left, rgba(26, 202, 198, 0.2), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(5, 151, 189, 0.14), transparent 26%),
    linear-gradient(180deg, #fbfdfd 0%, var(--bg) 42%, #f0f7f7 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 202, 198, 0.22), rgba(26, 202, 198, 0));
  filter: blur(14px);
}

body::after {
  left: -140px;
  bottom: 10%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 151, 189, 0.12), rgba(5, 151, 189, 0));
  filter: blur(20px);
}

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

a {
  color: inherit;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.app-store-badge:hover {
  transform: translateY(-2px);
}

.app-store-badge img {
  height: 40px;
  width: auto;
}

.app-store-badge-nav img {
  height: 32px;
}

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

.section,
.topbar,
.footer,
.legal-header,
.legal-content,
.legal-footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 36px 0 100px;
}

.section-tight {
  padding-top: 8px;
}

.topbar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 18px;
}

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

.brand-mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(26, 202, 198, 0.18));
}

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

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-caption {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.topnav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topnav a {
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.topnav a:hover {
  color: var(--brand-strong);
}

.topnav a.button-nav,
.topnav a.button-nav:hover {
  color: #ffffff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

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

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-secondary) 100%);
  box-shadow: 0 18px 36px rgba(5, 151, 189, 0.22);
}

.button-primary:hover {
  box-shadow: 0 24px 40px rgba(5, 151, 189, 0.26);
}

.button-secondary {
  color: var(--text-primary);
  border-color: rgba(12, 120, 133, 0.18);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(8, 13, 28, 0.08);
  backdrop-filter: blur(16px);
}

.button-secondary:hover {
  border-color: rgba(12, 120, 133, 0.32);
}

.button-nav {
  min-height: 44px;
  padding: 11px 18px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  align-items: start;
  gap: 52px;
  padding-top: 28px;
}

.eyebrow {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-secondary-strong);
}

.hero-title,
.section-heading h2,
.cta-banner-card h2,
.legal-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.hero-title {
  margin: 32px 0 32px;
  max-width: 10ch;
  font-size: clamp(3.35rem, 7vw, 5.8rem);
  line-height: 1.1;
}

.hero-subtitle {
  margin: 0;
  max-width: 38rem;
  font-size: clamp(1.06rem, 1.7vw, 1.28rem);
  line-height: 1.72;
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 18px;
}

.hero-note {
  margin: 0 0 20px;
  color: var(--text-tertiary);
  font-size: 0.96rem;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(214, 230, 230, 0.9);
  box-shadow: 0 14px 28px rgba(8, 13, 28, 0.06);
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-start;
}

.hero-glow {
  position: absolute;
  inset: auto auto 10% 6%;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 202, 198, 0.36), rgba(26, 202, 198, 0));
  filter: blur(18px);
}

.hero-panel {
  position: relative;
  width: min(580px, 100%);
  margin-left: auto;
  padding: 28px;
  border-radius: var(--radius-xl);
  color: var(--text-inverse);
  background:
    linear-gradient(180deg, rgba(15, 26, 46, 0.98), rgba(8, 13, 28, 0.98)),
    linear-gradient(135deg, rgba(26, 202, 198, 0.18), rgba(5, 151, 189, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  animation: panelFloat 10s ease-in-out infinite;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    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: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent);
  pointer-events: none;
}

.panel-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-orbit-a {
  top: -40px;
  right: -50px;
  width: 180px;
  height: 180px;
}

.panel-orbit-b {
  bottom: -60px;
  left: -70px;
  width: 220px;
  height: 220px;
}

.panel-logo-wrap {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 92px;
  height: 92px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(26, 202, 198, 0.16), rgba(5, 151, 189, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.panel-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(26, 202, 198, 0.18));
}

.panel-label {
  position: relative;
  margin: 0 0 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(234, 241, 255, 0.7);
}

.panel-route {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  padding-right: 110px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.route-line {
  flex: 1;
  min-width: 72px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(26, 202, 198, 0.85), rgba(5, 151, 189, 0.25));
}

.panel-trip-meta {
  position: relative;
  margin: 0;
  color: rgba(234, 241, 255, 0.72);
  font-size: 0.96rem;
}

.panel-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  margin-top: 24px;
}

.option-card,
.insight-card {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.option-card-featured {
  grid-row: span 2;
  background: linear-gradient(180deg, rgba(26, 202, 198, 0.17), rgba(5, 151, 189, 0.08));
}

.option-tag,
.insight-label,
.feature-kicker,
.aside-label,
.step-number,
.spotlight-index {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.option-tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.option-tag-muted {
  color: rgba(234, 241, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

.option-card h2,
.insight-card h2 {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-size: 1.46rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.option-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0 18px;
  color: rgba(234, 241, 255, 0.72);
  font-size: 0.95rem;
}

.option-price-row strong {
  color: #ffffff;
  font-size: 2.3rem;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.cost-lines {
  display: grid;
  gap: 12px;
}

.cost-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(234, 241, 255, 0.82);
  font-size: 0.94rem;
}

.metric-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.metric-pills span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(234, 241, 255, 0.82);
  font-size: 0.85rem;
  font-weight: 600;
}

.insight-label {
  color: rgba(234, 241, 255, 0.66);
}

.insight-card h2 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.insight-card p {
  margin: 0;
  color: rgba(234, 241, 255, 0.8);
  line-height: 1.68;
  font-size: 0.95rem;
}

.insight-card-accent {
  background: linear-gradient(145deg, rgba(26, 202, 198, 0.24), rgba(5, 151, 189, 0.12));
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 14px 0 0;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.02;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.72;
}

.highlights-grid,
.process-grid,
.feature-stack,
.feature-aside {
  display: grid;
  gap: 18px;
}

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

.spotlight-card,
.step-card,
.feature-panel,
.aside-card,
.legal-section {
  position: relative;
  border: 1px solid rgba(214, 230, 230, 0.94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.spotlight-card {
  min-height: 230px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.96));
  overflow: hidden;
}

.spotlight-card::before,
.feature-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background: radial-gradient(circle, rgba(26, 202, 198, 0.18), rgba(26, 202, 198, 0));
  transform: translate(-30%, -30%);
  pointer-events: none;
}

.spotlight-index,
.step-number {
  color: var(--brand-strong);
}

.spotlight-card h3,
.step-card h3,
.feature-panel h3 {
  margin: 18px 0 12px;
  font-family: var(--font-display);
  font-size: 1.32rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.spotlight-card p:last-child,
.step-card p:last-child,
.feature-panel p:last-child {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.68;
}

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

.step-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.94));
}

.feature-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 22px;
  align-items: start;
}

.feature-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.96));
  overflow: hidden;
}

.feature-kicker {
  color: var(--brand-secondary-strong);
}

.feature-panel h3 {
  max-width: 18ch;
  font-size: 1.72rem;
}

.aside-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(238, 247, 247, 0.96));
}

.aside-card-dark {
  color: var(--text-inverse);
  background: linear-gradient(180deg, rgba(15, 26, 46, 0.98), rgba(8, 20, 35, 0.98));
  border-color: rgba(255, 255, 255, 0.08);
}

.aside-label {
  color: var(--brand-secondary-strong);
}

.aside-card-dark .aside-label {
  color: rgba(234, 241, 255, 0.72);
}

.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-secondary) 100%);
  box-shadow: 0 0 0 4px rgba(26, 202, 198, 0.12);
}

.check-list-light li {
  color: rgba(234, 241, 255, 0.84);
}

.check-list-light li::before {
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(26, 202, 198, 0.16);
}

.cta-banner-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(220px, 0.84fr);
  gap: 24px;
  align-items: center;
  padding: 38px;
  border-radius: var(--radius-xl);
  color: var(--text-inverse);
  background: linear-gradient(140deg, rgba(8, 13, 28, 0.98), rgba(12, 120, 133, 0.98));
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.cta-banner-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 202, 198, 0.34), rgba(26, 202, 198, 0));
}

.cta-banner-copy,
.cta-banner-actions {
  position: relative;
  z-index: 1;
}

.cta-banner-card h2 {
  margin: 14px 0 12px;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.02;
}

.cta-banner-card p:not(.eyebrow):not(.cta-caption) {
  margin: 0;
  color: rgba(234, 241, 255, 0.82);
  line-height: 1.72;
}

.cta-banner-actions {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.cta-caption {
  margin: 0;
  font-size: 0.93rem;
  color: rgba(234, 241, 255, 0.72);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 0 0 56px;
  border-top: 1px solid rgba(214, 230, 230, 0.8);
}

.footer-links,
.legal-footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
}

.footer-links a,
.legal-footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.legal-footer-links a:hover {
  color: var(--brand-strong);
}

.copyright,
.legal-copyright {
  margin: 0;
  padding-top: 28px;
  color: var(--text-tertiary);
  font-size: 0.92rem;
}

.disclosure {
  margin: 12px 0 0;
  color: var(--text-tertiary);
  font-size: 0.82rem;
  line-height: 1.6;
  max-width: 72ch;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: revealUp 0.8s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.reveal-delay-1 {
  animation-delay: 0.08s;
}

.reveal-delay-2 {
  animation-delay: 0.18s;
}

/* ========================================
   Legal Pages
   ======================================== */

.legal-page {
  min-height: 100vh;
}

.legal-header,
.legal-content,
.legal-footer {
  width: min(980px, calc(100% - 48px));
}

.legal-header {
  padding: 24px 0 10px;
}

.legal-header a {
  text-decoration: none;
}

.legal-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.legal-content {
  padding: 16px 0 56px;
}

.legal-title {
  margin: 0 0 14px;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.98;
}

.legal-updated {
  margin: 0 0 28px;
  color: var(--text-tertiary);
  font-size: 0.96rem;
}

.legal-sections {
  display: grid;
  gap: 18px;
}

.legal-section {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.96));
}

.legal-section h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.24rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.legal-section p {
  margin: 0 0 12px;
  color: var(--text-secondary);
  line-height: 1.72;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 0 0 0 1.15rem;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--text-secondary);
}

.legal-section li {
  padding-left: 4px;
  line-height: 1.65;
}

.legal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 0 0 48px;
  border-top: 1px solid rgba(214, 230, 230, 0.8);
}

/* ========================================
   Motion
   ======================================== */

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ========================================
   Compare Section
   ======================================== */

.compare-stage {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-xl);
  color: var(--text-inverse);
  background:
    linear-gradient(180deg, rgba(15, 26, 46, 0.98), rgba(8, 13, 28, 0.98)),
    linear-gradient(135deg, rgba(26, 202, 198, 0.18), rgba(5, 151, 189, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.compare-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    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: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent);
  pointer-events: none;
}

.compare-stage-label {
  position: relative;
  margin-bottom: 20px;
}

.compare-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.option-card-compare-featured {
  background: linear-gradient(180deg, rgba(26, 202, 198, 0.17), rgba(5, 151, 189, 0.08));
}

.compare-swap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.swap-pill {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(234, 241, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
}

.swap-pill-active {
  background: rgba(26, 202, 198, 0.18);
  border-color: rgba(26, 202, 198, 0.3);
  color: rgba(26, 202, 198, 0.95);
}

.compare-caption {
  margin: 14px 0 0;
  color: var(--text-tertiary);
  font-size: 0.84rem;
}

/* ========================================
   Responsive
   ======================================== */

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

  .hero-visual {
    min-height: auto;
  }

  .hero-panel {
    margin: 0;
  }

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

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

  .feature-showcase,
  .cta-banner-card {
    grid-template-columns: 1fr;
  }

  .cta-banner-actions {
    justify-self: start;
  }
}

@media (max-width: 820px) {

  .topbar,
  .footer,
  .legal-header,
  .legal-content,
  .legal-footer,
  .section {
    width: min(1180px, calc(100% - 32px));
  }

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

  .topnav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-title {
    max-width: 12ch;
  }

  .panel-route {
    padding-right: 0;
  }

  .panel-logo-wrap {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 20px;
  }

  .panel-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 30px 0 76px;
  }

  .hero-actions,
  .footer,
  .legal-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .button-nav {
    width: 100%;
  }

  .topnav {
    gap: 12px;
  }

  .topnav a:not(.button-nav) {
    font-size: 0.92rem;
  }

  .hero-badges,
  .footer-links,
  .legal-footer-links {
    gap: 10px;
  }

  .highlights-grid,
  .process-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .feature-panel,
  .aside-card,
  .cta-banner-card,
  .spotlight-card,
  .step-card,
  .legal-section {
    padding: 22px;
  }

  .hero-title {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .panel-route {
    flex-wrap: wrap;
  }

  .route-line {
    min-width: 40px;
  }

  .copyright,
  .legal-copyright {
    padding-top: 0;
  }
}

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

  .reveal,
  .hero-panel,
  .button {
    animation: none;
    transition: none;
    transform: none;
    opacity: 1;
  }
}
