:root {
  --bg: #f6f3ea;
  --surface: #fffdf7;
  --ink: #152126;
  --muted: #536168;
  --teal: #0b5d5e;
  --teal-soft: #d7ece8;
  --orange: #e47b3a;
  --orange-soft: #fde7d6;
  --line: #d8d2c4;
  --ok: #1a7d52;
  --warn: #b65e21;
  --shadow: 0 18px 40px rgba(15, 40, 40, 0.12);
  --radius: 18px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(1000px 460px at 95% -15%, #d0e7df 0%, transparent 70%),
    radial-gradient(900px 430px at -10% 7%, #f5d9bf 0%, transparent 65%),
    var(--bg);
  color: var(--ink);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  line-height: 1.5;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  font-family: "Newsreader", Georgia, serif;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2rem, 3.6vw, 3.6rem);
}

h2 {
  font-size: clamp(1.55rem, 2.2vw, 2.3rem);
}

h3 {
  font-size: 1.1rem;
}

p,
li {
  color: var(--muted);
}

a {
  color: inherit;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 999;
  background: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(12px);
  background: rgba(246, 243, 234, 0.78);
  border-bottom: 1px solid rgba(216, 210, 196, 0.7);
}

.nav-wrap {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, var(--teal), #169194);
  font-size: 0.82rem;
}

.brand-name {
  font-weight: 700;
  color: var(--ink);
}

nav {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.btn {
  text-decoration: none;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  background: linear-gradient(140deg, var(--teal), #117779);
  color: #fff;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(7, 70, 71, 0.23);
}

.btn-small {
  font-size: 0.88rem;
  padding: 0.55rem 0.82rem;
}

.btn-ghost {
  background: transparent;
  color: var(--teal);
  border-color: rgba(11, 93, 94, 0.3);
}

.hero {
  padding: clamp(2.2rem, 5.5vw, 4rem) 0 2.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.4rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.65rem;
}

.positioning-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  margin: 0 0 0.75rem;
  padding: 0.46rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 93, 94, 0.28);
  background: linear-gradient(130deg, #e7f3ef, #f6eee4);
  color: #15494a;
  font-size: clamp(0.92rem, 1.8vw, 1.12rem);
  font-weight: 700;
  line-height: 1.2;
}

.positioning-banner::before {
  content: "";
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--teal), #169194);
}

.lead {
  font-size: 1.08rem;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.trust-strip {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.trust-strip li {
  background: rgba(11, 93, 94, 0.08);
  color: #1a585a;
  border-radius: 999px;
  padding: 0.35rem 0.62rem;
  font-size: 0.8rem;
}

.hero-card {
  min-height: 270px;
  border: 1px solid rgba(11, 93, 94, 0.18);
  background: linear-gradient(165deg, #124446 0%, #0e5f61 45%, #21888b 100%);
  color: #f3fcfd;
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
}

.hero-card p {
  color: rgba(243, 252, 253, 0.9);
  margin: 0;
}

.hero-card-label {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.hero-card h2 {
  font-size: 1.7rem;
}

.pill {
  display: inline-flex;
  align-self: flex-start;
  border-radius: 999px;
  padding: 0.27rem 0.6rem;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  font-weight: 600;
}

section {
  padding: 2.2rem 0;
}

.section-head {
  margin-bottom: 1rem;
}

.audience-grid,
.privacy-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

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

.audience article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.feature-section {
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.25), rgba(214, 236, 230, 0.36));
  border-top: 1px solid rgba(216, 210, 196, 0.72);
  border-bottom: 1px solid rgba(216, 210, 196, 0.72);
}

.feature-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tab-btn {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.52rem 0.8rem;
  cursor: pointer;
  color: var(--ink);
  font-weight: 600;
}

.tab-btn[aria-selected="true"] {
  border-color: var(--teal);
  background: var(--teal-soft);
  color: #10494a;
}

.feature-panel {
  margin-top: 0.9rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

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

.panel-points,
.faq-list {
  display: grid;
  gap: 0.55rem;
}

.panel-points div {
  border: 1px solid #d7dedb;
  border-radius: 12px;
  padding: 0.65rem;
  background: #f8fbf9;
}

.panel-points h4 {
  margin: 0 0 0.25rem;
  font-size: 0.93rem;
}

.panel-points p {
  margin: 0;
  font-size: 0.89rem;
}

.preview-box {
  border-radius: 14px;
  background: linear-gradient(165deg, #f7ece0, #e5f2ed);
  border: 1px solid #d8d2c4;
  padding: 0.9rem;
}

.preview-chip {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  color: #7e4a20;
  background: var(--orange-soft);
  border-radius: 999px;
  padding: 0.26rem 0.52rem;
  margin-bottom: 0.5rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

th,
td {
  text-align: left;
  padding: 0.72rem;
  border-bottom: 1px solid #ece6d9;
}

th {
  background: #f7f1e6;
  color: #203137;
}

tr:last-child td {
  border-bottom: 0;
}

.pricing-note {
  font-size: 0.89rem;
  margin-top: 0.7rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  overflow: clip;
}

.faq-item button {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 0.75rem;
  color: var(--ink);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-item button span {
  color: var(--teal);
  font-weight: 700;
  margin-left: 0.8rem;
}

.faq-answer {
  padding: 0 0.75rem 0.75rem;
}

.faq-answer[hidden] {
  display: none;
}

.privacy-callout {
  background: linear-gradient(175deg, #14484a 0%, #1b6264 100%);
  color: #ebfbfb;
}

.privacy-callout p,
.privacy-callout li,
.privacy-callout .eyebrow {
  color: rgba(235, 251, 251, 0.92);
}

.privacy-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.privacy-callout ul {
  margin: 0;
  padding-left: 1rem;
}

.cta {
  text-align: center;
}

.footnote,
.small {
  font-size: 0.84rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 2rem;
}

.legal-page {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
  max-width: 860px;
}

.legal-page h1 {
  margin-bottom: 0.6rem;
}

.legal-page h2 {
  margin-top: 1.65rem;
  margin-bottom: 0.5rem;
  font-size: clamp(1.24rem, 1.8vw, 1.55rem);
}

.legal-page h3 {
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

.legal-page p,
.legal-page li {
  font-size: 0.96rem;
}

.legal-page ul {
  padding-left: 1.2rem;
}

.footer-grid {
  grid-template-columns: 1fr auto auto;
  align-items: start;
}

.footer-grid nav {
  display: grid;
  gap: 0.3rem;
}

.footer-grid nav a {
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 980px) {
  .hero-grid,
  .panel-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}

@media (max-width: 740px) {
  nav {
    display: none;
  }

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

  .site-header .btn-small {
    font-size: 0.79rem;
    padding: 0.48rem 0.68rem;
  }

  section {
    padding: 1.7rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
