:root {
  --brand: #4a294a;
  --soft: #f5e2fa;
  --pale: #f8eef8;
  --ink: #261b26;
  --muted: #665866;
  --line: #eadbea;
  --warm: #fbf7f2;
  --white: #fff;
  --shadow: 0 18px 48px rgba(74, 41, 74, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  font-size: 16px;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Arial,
    sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
}
a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  width: min(1120px, calc(100% - 28px));
  margin: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  font-weight: 800;
  text-decoration: none;
  color: var(--brand);
}
.logo img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  flex: 0 0 auto;
}
.logo span {
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--brand);
  font-weight: 800;
}
.site-nav {
  display: none;
  position: absolute;
  left: 14px;
  right: 14px;
  top: 66px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px;
  box-shadow: var(--shadow);
}
.site-nav.open {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}
.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.98rem;
  padding: 10px 12px;
  border-radius: 12px;
}
.site-nav a[aria-current="page"] {
  color: var(--brand);
  font-weight: 800;
  background: var(--pale);
}
.hero {
  background: linear-gradient(145deg, var(--brand), #6b3d69 58%, #9d74a0);
  color: #fff;
  padding: 42px 0 34px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
.hero-copy {
  min-width: 0;
}
.hero h1 {
  font-size: clamp(2rem, 11vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: 0;
  margin: 0 0 16px;
  overflow-wrap: anywhere;
}
.hero p {
  font-size: 1.03rem;
  max-width: 680px;
  margin: 0 0 14px;
}
.eyebrow {
  max-width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.544rem;
  line-height: 1.25;
  font-weight: 800;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  overflow-wrap: anywhere;
}
.hero-media {
  margin: 4px 0 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(31, 18, 31, 0.28);
}
.hero-media img {
  width: 100%;
  aspect-ratio: 1.2/1;
  object-fit: cover;
}
.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 22px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 0.98rem;
  line-height: 1.2;
  font-weight: 800;
  border: 1px solid var(--brand);
  white-space: normal;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(74, 41, 74, 0.22);
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74, 41, 74, 0.18);
}

.btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .btn:hover,
  .btn:active {
    transition: none;
    transform: none;
  }
}
.hero .btn {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}
.btn-secondary,
.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 4px 16px rgba(31, 18, 31, 0.12);
}

.btn-secondary:hover,
.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 10px 28px rgba(31, 18, 31, 0.2);
}
.breadcrumb {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 14px 0;
  overflow-wrap: anywhere;
}
.section {
  padding: 42px 0;
}
.section:nth-of-type(even) {
  background: var(--warm);
}
.prose {
  max-width: 850px;
}
.prose h2,
.section h2 {
  font-size: clamp(1.45rem, 7vw, 2rem);
  line-height: 1.18;
  color: var(--brand);
  letter-spacing: 0;
  margin: 0 0 16px;
  overflow-wrap: anywhere;
}
.prose p {
  font-size: 1rem;
  margin: 0 0 17px;
}
.cta-band {
  padding: 42px 0;
  background: var(--pale);
}
.cta-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.cta-card h2 {
  font-size: clamp(1.35rem, 6vw, 1.9rem);
  margin: 0 0 8px;
  color: var(--brand);
  line-height: 1.18;
  overflow-wrap: anywhere;
}
.cta-card p {
  margin: 0;
  max-width: 680px;
}
.cta-card .btn {
  margin-top: 18px;
}
.disclaimer-section {
  padding: 24px 0;
  background: #fff;
}
.disclaimer {
  border-left: 4px solid var(--brand);
  background: var(--pale);
  padding: 16px;
  border-radius: 14px;
  color: #3d303d;
  font-size: 0.95rem;
}
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.table-wrap:focus-within {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.compare-table th,
.compare-table td {
  text-align: left;
  vertical-align: top;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}
.compare-table th {
  background: var(--brand);
  color: #fff;
}
.faq-list {
  max-width: 900px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px 16px;
  margin: 10px 0;
  background: #fff;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--brand);
  line-height: 1.35;
}
.site-footer {
  background: #271827;
  color: #f8eef8;
  padding: 38px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.site-footer a {
  display: block;
  color: #fff;
  margin: 7px 0;
}
.site-footer h2,
.site-footer h3 {
  margin-top: 0;
  color: #fff;
  line-height: 1.2;
}
@media (min-width: 520px) {
  .container {
    width: min(1120px, calc(100% - 40px));
  }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }
  .btn {
    width: auto;
    min-width: 190px;
  }
  .cta-card .btn {
    width: auto;
  }
  .hero-media img {
    aspect-ratio: 1.35/1;
  }
}
@media (min-width: 861px) {
  .site-header {
    padding: 14px clamp(20px, 4vw, 44px);
    gap: 20px;
  }
  .logo img {
    width: 42px;
    height: 42px;
  }
  .logo span {
    font-size: 1.05rem;
  }
  .menu-toggle {
    display: none;
  }
  .site-nav {
    display: flex;
    position: static;
    left: auto;
    right: auto;
    top: auto;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }
  .site-nav a {
    font-size: 0.94rem;
    padding: 7px 8px;
  }
  .site-nav a[aria-current="page"] {
    background: transparent;
  }
  .hero {
    padding: 72px 0 54px;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.98fr);
    gap: 44px;
  }
  .hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.35rem);
  }
  .hero p {
    font-size: 1.12rem;
  }
  .eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    padding: 6px 10px;
  }
  .hero-media {
    border-radius: 28px;
  }
  .section {
    padding: 56px 0;
  }
  .prose h2,
  .section h2 {
    font-size: clamp(1.55rem, 3vw, 2.35rem);
  }
  .prose p {
    font-size: 1.06rem;
  }
  .cta-band {
    padding: 54px 0;
  }
  .cta-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 30px;
    border-radius: 24px;
  }
  .cta-card .btn {
    margin-top: 0;
    flex: 0 0 auto;
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .compare-table {
    min-width: 860px;
  }
  .compare-table th,
  .compare-table td {
    padding: 15px;
    font-size: 1rem;
  }
}
