/* Togetherlee landing — warm palette pulled from src/theme/index.js */
:root {
  --bg: #f5efe6; /* warmBackground */
  --card: #fdfaf6; /* cardBackground */
  --primary: #cc7259; /* terracotta */
  --primary-dark: #b85f47;
  --text: #3d2b1f; /* deepBrown */
  --secondary: #7a5c48; /* warmBrown */
  --tan: #e8dece; /* warmTan (borders) */
  --golden: #d9b84a;
  --sage: #8dad85;
  --blue: #7a9ec4;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 6px 20px rgba(61, 43, 31, 0.08);
  --shadow-soft: 0 2px 10px rgba(61, 43, 31, 0.05);
  --maxw: 1040px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

a {
  color: var(--primary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ─── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 239, 230, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--tan);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.brand:hover {
  text-decoration: none;
}
.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
}
.brand-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.site-nav {
  display: flex;
  gap: 22px;
}
.site-nav a {
  color: var(--secondary);
  font-weight: 600;
  font-size: 15px;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  padding: 16px 30px;
  border-radius: 30px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(204, 114, 89, 0.32);
}
.btn-primary:hover {
  background: var(--primary-dark);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(204, 114, 89, 0.38);
}
.btn svg {
  width: 20px;
  height: 20px;
}
/* Non-interactive pill (e.g. "Coming soon") — same look, not clickable */
.btn-static {
  cursor: default;
}
.btn-primary.btn-static:hover {
  background: var(--primary);
  transform: none;
  box-shadow: 0 8px 20px rgba(204, 114, 89, 0.32);
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 68px 0 52px;
}
.hero-icon {
  width: 112px;
  height: 112px;
  border-radius: 28px;
  box-shadow: 0 12px 30px rgba(204, 114, 89, 0.25);
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(40px, 11vw, 60px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text);
  line-height: 1.05;
  white-space: nowrap;
}
.hero .tagline {
  font-size: clamp(17px, 4.5vw, 21px);
  color: var(--primary);
  font-weight: 600;
  margin: 14px 0 12px;
}
.divider {
  width: 48px;
  height: 3px;
  background: var(--primary);
  opacity: 0.4;
  border-radius: 2px;
  margin: 20px auto 28px;
}
.hero .cta {
  margin-top: 6px;
}

/* ─── Benefits ───────────────────────────────────────────── */
.benefits {
  padding: 20px 0 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.benefit {
  background: var(--card);
  border: 1px solid var(--tan);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-soft);
  text-align: left;
}
.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.benefit-icon svg {
  width: 28px;
  height: 28px;
}
.benefit--cal .benefit-icon {
  color: var(--blue);
  background: rgba(122, 158, 196, 0.15);
}
.benefit--chat .benefit-icon {
  color: var(--sage);
  background: rgba(141, 173, 133, 0.15);
}
.benefit--heart .benefit-icon {
  color: var(--primary);
  background: rgba(204, 114, 89, 0.15);
}
.benefit h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text);
}
.benefit p {
  color: var(--secondary);
  font-size: 15px;
}

/* ─── Story ──────────────────────────────────────────────── */
.story {
  padding: 30px 0 60px;
  text-align: center;
}
.story-card {
  background: var(--card);
  border: 1px solid var(--tan);
  border-radius: var(--radius);
  padding: 40px 28px;
  box-shadow: var(--shadow-soft);
  max-width: 720px;
  margin: 0 auto;
}
.story-card h2 {
  font-size: clamp(22px, 6vw, 28px);
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
}
.story-card p {
  color: var(--secondary);
  font-size: 16px;
}

/* ─── Legal pages ────────────────────────────────────────── */
.legal {
  padding: 44px 0 60px;
}
.legal .container {
  max-width: 780px;
}
.legal h1 {
  font-size: clamp(28px, 7vw, 38px);
  font-weight: 800;
  letter-spacing: -0.6px;
  margin-bottom: 8px;
}
.legal .updated {
  color: var(--secondary);
  font-size: 14px;
  margin-bottom: 28px;
}
.legal h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 30px 0 10px;
}
.legal h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 20px 0 8px;
  color: var(--secondary);
}
.legal p,
.legal li {
  color: var(--secondary);
  font-size: 15.5px;
  margin-bottom: 12px;
}
.legal ul,
.legal ol {
  padding-left: 22px;
  margin-bottom: 12px;
}
.legal .placeholder {
  background: rgba(217, 184, 74, 0.12);
  border: 1px dashed var(--golden);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  color: var(--secondary);
  font-size: 15px;
}

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--tan);
  background: var(--card);
  padding: 34px 0 40px;
  margin-top: 20px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: var(--secondary);
  font-weight: 600;
  font-size: 15px;
}
.footer-contact {
  color: var(--secondary);
  font-size: 15px;
}
.footer-copyright {
  color: #a08d7d;
  font-size: 13px;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (min-width: 720px) {
  .benefits {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding-top: 26px;
    padding-bottom: 56px;
  }
  .hero {
    padding: 84px 0 60px;
  }
}
