:root {
  --teal-950: #062a2c;
  --teal-900: #0a3d40;
  --teal-800: #0f5c5f;
  --teal-700: #0f766e;
  --teal-500: #14b8a6;
  --teal-300: #5eead4;
  --teal-100: #ccfbf1;
  --teal-50: #f0fdfa;
  --ink: #102a2e;
  --ink-soft: #3d5a5e;
  --cream: #f4faf9;
  --gold: #e9a23b;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(15, 118, 110, 0.14);
  --radius: 20px;
  --max: 1120px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(45, 212, 191, 0.28), transparent 60%),
    radial-gradient(900px 500px at 90% 0%, rgba(233, 162, 59, 0.16), transparent 55%),
    linear-gradient(180deg, #e8f7f5 0%, var(--cream) 35%, #ffffff 100%);
  min-height: 100vh;
}

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

a {
  color: var(--teal-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--teal-800);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(244, 250, 249, 0.82);
  border-bottom: 1px solid rgba(15, 118, 110, 0.08);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(15, 118, 110, 0.25);
}

.brand span {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal-700);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.28);
}

.btn-primary:hover {
  color: var(--white);
  box-shadow: 0 16px 34px rgba(15, 118, 110, 0.34);
}

.btn-ghost {
  color: var(--teal-800);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 118, 110, 0.18);
}

.btn-ghost:hover {
  color: var(--teal-900);
  background: var(--white);
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.25rem 2rem;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
  min-height: min(88vh, 820px);
}

.hero-content {
  color: var(--ink);
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
  animation: riseIn 0.8s ease both;
}

.hero-brand img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(15, 118, 110, 0.22);
}

.hero-brand h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--teal-900);
}

.hero-copy {
  max-width: 34rem;
  animation: riseIn 0.9s ease 0.08s both;
}

.hero-copy h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.2rem);
  font-weight: 560;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-copy p {
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 30rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  animation: riseIn 1s ease 0.16s both;
}

.hero-visual {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(160deg, var(--teal-100), var(--white));
  animation: riseIn 1s ease 0.12s both;
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.4rem;
}

.section-head h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
}

.feature-strip {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.feature-strip.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.feature-strip.reverse .feature-copy {
  order: 2;
}

.feature-strip.reverse .feature-visual {
  order: 1;
}

.feature-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(160deg, var(--teal-100), var(--white));
}

.feature-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.feature-copy h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: -0.02em;
}

.feature-copy p {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink);
  font-weight: 560;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--gold));
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}

.privacy-band {
  margin: 1rem 0 0;
  padding: 4rem 1.25rem;
  background:
    radial-gradient(700px 280px at 20% 20%, rgba(94, 234, 212, 0.35), transparent 70%),
    linear-gradient(135deg, var(--teal-900), var(--teal-700));
  color: var(--white);
}

.privacy-band-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.privacy-band h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  letter-spacing: -0.03em;
}

.privacy-band p {
  margin: 0 0 1.3rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 34rem;
}

.privacy-band .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.privacy-band img {
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.cta {
  text-align: center;
  padding-bottom: 5rem;
}

.cta h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
}

.cta p {
  margin: 0 auto 1.4rem;
  max-width: 30rem;
  color: var(--ink-soft);
}

.site-footer {
  border-top: 1px solid rgba(15, 118, 110, 0.1);
  background: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.footer-links a {
  text-decoration: none;
  font-weight: 600;
  color: var(--ink-soft);
}

.footer-links a:hover {
  color: var(--teal-700);
}

/* Legal pages */
.legal-page {
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(45, 212, 191, 0.18), transparent 55%),
    linear-gradient(180deg, #eef9f7 0%, #ffffff 40%);
}

.legal-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.25rem 1.5rem;
}

.legal-hero h1 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.03em;
}

.legal-meta {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 1rem 1.25rem 4.5rem;
}

.legal-content h2 {
  margin: 2.2rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.legal-content h3 {
  margin: 1.4rem 0 0.5rem;
  font-size: 1.08rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

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

.legal-content li + li {
  margin-top: 0.35rem;
}

.legal-callout {
  margin: 1.5rem 0;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--teal-500);
  background: var(--teal-50);
  border-radius: 0 12px 12px 0;
  color: var(--ink);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .nav-links {
    gap: 0.85rem;
  }

  .nav-links .hide-sm {
    display: none;
  }

  .feature-strip,
  .feature-strip.reverse,
  .privacy-band-inner {
    grid-template-columns: 1fr;
  }

  .feature-strip.reverse .feature-copy,
  .feature-strip.reverse .feature-visual {
    order: initial;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 2.2rem;
  }

  .hero-brand img {
    width: 58px;
    height: 58px;
  }
}

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

  .hero-brand,
  .hero-copy,
  .hero-actions,
  .hero-visual {
    animation: none;
  }
}
