﻿:root {
  --ink: #10141f;
  --muted: #5f6878;
  --line: #e1e7f0;
  --panel: #f7f9fd;
  --blue: #2563eb;
  --blue-dark: #1e40af;
  --cyan: #16a9c7;
  --green: #0f9b65;
  --gold: #c58a21;
  --rose: #bc4666;
  --white: #ffffff;
  --shadow: 0 28px 90px rgba(16, 20, 31, 0.13);
  --shadow-soft: 0 14px 42px rgba(16, 20, 31, 0.08);
  font-family: "Hammersmith One", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8fbff 0, #ffffff 420px),
    var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -44px;
  z-index: 20;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(225, 231, 240, 0.74);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: 0;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28em;
  color: var(--ink);
}

.wordmark span:last-child {
  color: var(--blue);
}

.brand img,
.footer-brand img {
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-menu a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-menu a:hover {
  color: var(--ink);
}

.nav-cta {
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 6px;
  color: var(--blue);
  background: rgba(37, 99, 235, 0.07);
  padding: 0 15px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0 68px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(410px, 0.86fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(3.2rem, 6.2vw, 5.35rem);
  line-height: 1.14;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-lede,
.section-heading p,
.waitlist-section p,
.market-highlight-section p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-lede {
  max-width: 670px;
  margin: 24px 0 0;
  font-size: 1.18rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 6px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 820;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button.primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.22);
}

.button.secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

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

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

.hero-stats div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.hero-stats dt {
  font-size: 1.55rem;
  font-weight: 850;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 610px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(22, 169, 199, 0.08) 42%, rgba(197, 138, 33, 0.1)),
    #f7f9fd;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  padding: 28px;
  border: 1px solid rgba(225, 231, 240, 0.9);
}

.command-panel {
  width: min(430px, 100%);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.72);
  padding: 18px;
  box-shadow: 0 34px 90px rgba(16, 20, 31, 0.18);
  backdrop-filter: blur(14px);
}

.command-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.command-topbar img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.16);
}

.command-topbar strong,
.command-topbar span,
.signal-card span,
.signal-card strong,
.signal-card p,
.savings-lane span {
  display: block;
}

.command-topbar strong {
  font-size: 1.15rem;
  line-height: 1.1;
}

.command-topbar span,
.signal-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

.signal-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 16px;
  box-shadow: none;
}

.primary-signal {
  min-height: 150px;
  border-radius: 8px;
  background: linear-gradient(135deg, #111827, #17305f);
  color: var(--white);
}

.primary-signal span,
.primary-signal p {
  color: #bdd6ff;
}

.primary-signal strong {
  margin-top: 10px;
  font-size: 2rem;
  line-height: 1.04;
}

.primary-signal p {
  max-width: 270px;
  margin: 12px 0 0;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.signal-grid .signal-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-grid .signal-card:nth-child(2n) {
  border-right: 0;
}

.signal-grid .signal-card:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.signal-card strong {
  margin-top: 8px;
  font-size: 1.28rem;
  line-height: 1.15;
}

.savings-lane {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.savings-lane span {
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.07);
  padding: 8px 11px;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 820;
}

section {
  padding: 88px 0;
}

.answer-band,
.feature-section,
.market-section,
.market-highlight-section,
.hosted-events-section,
.blog-section,
.faq-section,
.waitlist-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

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

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

.answer-grid article,
.deal-cards article,
.market-grid article,
.feature-list article,
.event-flow article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.answer-grid p,
.deal-cards p,
.market-grid p,
.feature-list p,
.event-flow p,
.faq-list p {
  margin: 0;
  color: var(--muted);
}

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

.feature-section.alternate {
  width: 100%;
  max-width: none;
  background: linear-gradient(180deg, #f6f8fc, #ffffff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-section.alternate > .section-heading,
.feature-section.alternate > .logo-strip,
.feature-section.alternate > .deal-cards {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: 30px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.subscription-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(15, 155, 101, 0.07));
  padding: 18px;
  box-shadow: var(--shadow);
}

.subscription-matrix div {
  min-height: 140px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 20px;
}

.subscription-matrix strong,
.subscription-matrix span {
  display: block;
}

.subscription-matrix strong {
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 1.08rem;
}

.subscription-matrix span {
  color: var(--muted);
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.logo-strip img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 10px 14px;
  box-shadow: var(--shadow-soft);
}

.deal-cards article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(15, 155, 101, 0.12);
  color: var(--green);
  font-weight: 850;
}

.market-section {
  border-bottom: 1px solid var(--line);
}

.market-grid article:nth-child(1) {
  border-top: 6px solid var(--blue);
}

.market-grid article:nth-child(2) {
  border-top: 6px solid var(--cyan);
}

.market-grid article:nth-child(3) {
  border-top: 6px solid var(--gold);
}

.market-highlight-section {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.72fr);
  gap: 38px;
  align-items: center;
  border-radius: 8px;
  background: #10141f;
  color: var(--white);
  padding: 46px;
  box-shadow: var(--shadow);
}

.market-highlight-section .eyebrow {
  color: #8fc2ff;
}

.market-highlight-section p {
  color: #c5cfdd;
}

.event-flow {
  display: grid;
  gap: 12px;
}

.event-flow span {
  display: block;
  margin-bottom: 6px;
  color: #8fc2ff;
  font-weight: 850;
}

.event-flow article {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.event-flow p {
  color: #c5cfdd;
}

.india-only {
  display: none;
}

[data-market="india"] .india-only {
  display: block;
}

.hosted-events-section {
  border-bottom: 1px solid var(--line);
}

.hosted-events-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: 22px;
  align-items: stretch;
}

.event-host-form,
.event-book-form,
.hosted-event-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.event-host-form,
.event-book-form {
  display: grid;
  gap: 10px;
}

.event-host-form h3,
.hosted-event-card h3 {
  margin-bottom: 2px;
}

.event-book-form {
  margin-top: 4px;
  border: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.event-host-form label,
.event-book-form label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 820;
}

.event-host-form input,
.event-book-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  font: inherit;
}

.event-form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hosted-event-panel {
  display: grid;
  gap: 14px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.09), rgba(15, 155, 101, 0.08)),
    var(--white);
}

.hosted-event-card {
  display: grid;
  min-height: 260px;
  align-content: center;
  gap: 12px;
}

.hosted-event-card span,
.event-share-box span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hosted-event-card p,
.event-share-box p {
  margin: 0;
  color: var(--muted);
}

.hosted-event-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.event-share-box {
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 16px;
}

.event-share-box p {
  margin-top: 6px;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.blog-section {
  border-bottom: 1px solid var(--line);
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.blog-categories span {
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.07);
  color: var(--blue-dark);
  padding: 6px 14px;
  font-size: 0.86rem;
  font-weight: 820;
}

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

.blog-cards article {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.blog-cards article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.blog-cards .blog-tag {
  align-self: flex-start;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue-dark);
  padding: 4px 10px;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-cards h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.25;
}

.blog-cards p {
  margin: 0;
  color: var(--muted);
  flex: 1;
}

.blog-cards .blog-meta {
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 850;
}

.blog-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.answer-grid article,
.deal-cards article,
.market-grid article {
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.answer-grid article:hover,
.deal-cards article:hover,
.market-grid article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin-top: 10px;
}

.waitlist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.74fr);
  gap: 30px;
  align-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.24), rgba(15, 155, 101, 0.12)),
    var(--ink);
  color: var(--white);
  padding: 46px;
  box-shadow: var(--shadow);
}

.waitlist-section .eyebrow,
.waitlist-section p {
  color: #b9d7ff;
}

.waitlist-form {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.waitlist-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 760;
}

.waitlist-form div {
  display: flex;
  gap: 10px;
}

.waitlist-form input {
  min-width: 0;
  flex: 1;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: var(--white);
  padding: 0 12px;
  font: inherit;
}

.waitlist-success {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-weight: 820;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

.site-footer p {
  margin: 8px 0 0;
  font-size: 0.82rem;
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 8px 10px;
  }

  .hero,
  .feature-layout,
  .market-highlight-section,
  .waitlist-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .answer-grid,
  .deal-cards,
  .market-grid,
  .blog-cards {
    grid-template-columns: 1fr;
  }

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

  section {
    padding: 64px 0;
  }

  .market-highlight-section,
  .waitlist-section {
    padding: 32px 26px;
  }

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

@media (max-width: 560px) {
  .nav,
  .hero,
  .answer-band,
  .feature-section,
  .market-section,
  .market-highlight-section,
  .blog-section,
  .faq-section,
  .waitlist-section,
  .site-footer {
    width: calc(100% - 32px);
  }

  .hero-copy,
  .hero-lede,
  .hero-actions,
  .hero-stats,
  .hero-visual {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 2.8rem);
    line-height: 1.16;
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

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

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

  .hero-visual {
    min-height: 480px;
    padding: 16px;
  }

  .command-panel {
    width: 100%;
    padding: 14px;
  }

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

  .signal-grid .signal-card {
    border-right: 0;
  }

  .signal-grid .signal-card:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .signal-grid .signal-card:last-child {
    border-bottom: 0;
  }

  .savings-lane span {
    max-width: 100%;
  }

  .subscription-matrix {
    grid-template-columns: 1fr;
  }

  .market-highlight-section,
  .waitlist-section {
    padding: 26px 18px;
  }

  .blog-categories {
    gap: 6px;
  }

  .blog-categories span {
    padding: 5px 11px;
    font-size: 0.78rem;
  }

  .waitlist-form div {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .nav {
    gap: 12px;
  }

  .brand img,
  .footer-brand img {
    width: 40px;
    height: 40px;
  }
}

/* =========================================================================
   Legal / prose pages — terms, privacy, compliance, delete-account
   ========================================================================= */

.legal {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 96px;
  color: var(--ink);
}

.legal-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-header h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin: 8px 0 12px;
  line-height: 1.15;
}

.legal-meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 16px;
}

.legal-lede {
  font-size: 1.06rem;
  color: var(--ink);
  margin: 0;
  line-height: 1.6;
}

.legal-toc {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 40px;
}

.legal-toc strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.legal-toc ol {
  margin: 0;
  padding-left: 22px;
  columns: 2;
  column-gap: 28px;
  font-size: 0.95rem;
}

.legal-toc li {
  margin-bottom: 6px;
  break-inside: avoid;
}

.legal-toc a {
  color: var(--blue-dark);
}

.legal-toc a:hover {
  text-decoration: underline;
}

.legal section {
  margin: 0 0 40px;
}

.legal section h2 {
  font-size: 1.45rem;
  margin: 0 0 14px;
  scroll-margin-top: 96px;
}

.legal section h3 {
  font-size: 1.08rem;
  margin: 20px 0 8px;
  color: var(--ink);
}

.legal p {
  margin: 0 0 14px;
  line-height: 1.65;
  font-size: 1rem;
}

.legal ul,
.legal ol {
  margin: 0 0 16px;
  padding-left: 22px;
  line-height: 1.65;
}

.legal li {
  margin-bottom: 6px;
}

.legal a {
  color: var(--blue-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.legal a:hover {
  color: var(--blue);
}

.legal code {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.9em;
}

.legal em {
  font-style: italic;
  color: var(--ink);
}

.legal .contact-list {
  list-style: none;
  padding-left: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 20px;
}

.legal .contact-list li {
  margin-bottom: 4px;
}

.legal-footer-note {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.delete-cta {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  margin: 0 0 40px;
  text-align: center;
}

.delete-cta .button.delete-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 16px 28px;
  font-size: 1rem;
  text-decoration: none;
}

.delete-cta-fallback {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.delete-cta-fallback a {
  color: var(--blue-dark);
  text-decoration: underline;
}

.social-links {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue-dark);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}

.social-links svg {
  fill: currentColor;
}

.compliance-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 16px 0 8px;
}

.compliance-cards article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
}

.compliance-cards h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.compliance-cards p {
  margin: 0 0 8px;
  font-size: 0.92rem;
  color: var(--muted);
}

.compliance-cards p:last-child {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 600;
}

.compliance-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 8px;
  font-size: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.compliance-table thead {
  background: var(--panel);
}

.compliance-table th,
.compliance-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.compliance-table tbody tr:last-child td {
  border-bottom: none;
}

.compliance-table th {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  .legal {
    padding: 28px 0 72px;
  }

  .legal-toc ol {
    columns: 1;
  }

  .legal section h2 {
    font-size: 1.25rem;
  }

  .compliance-table {
    font-size: 0.88rem;
  }

  .compliance-table th,
  .compliance-table td {
    padding: 10px 10px;
  }
}


