/* GWIA marketing/legal site — tokens mirror gwia-app/src/theme/tokens.ts exactly. Keep in sync. */

:root {
  --bg: #F7F5FB;
  --surf: #FFFFFF;
  --surf2: #F0EDF9;
  --brd: #E2DCF2;
  --brd-strong: #C9C0E4;

  --pink: #D63384;
  --pink-dim: #FCE8F3;
  --pink-brd: rgba(214, 51, 132, 0.25);

  --lav: #7C3AED;
  --lav-dim: #EDE9FE;
  --lav-brd: rgba(124, 58, 237, 0.2);

  --cyan: #0891B2;
  --cyan-dim: #E0F2FE; /* site-only tint, app tokens.ts has no cyanDim */

  --txt: #1A1035;
  --txt-secondary: #5C5080;
  --txt-muted: #9B8FC0;

  --orange: #EA580C;
  --orange-dim: #FFEDD5;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--txt);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  color: var(--pink);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 245, 251, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--brd);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--txt);
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text .name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
}

.brand-text .expansion {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--txt-muted);
  margin-top: 1px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav {
  display: flex;
  gap: 24px;
}

.site-nav a {
  color: var(--txt-secondary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
}

.site-nav a:hover {
  color: var(--pink);
  text-decoration: none;
}

.site-nav a.current {
  color: var(--pink);
}

.lang-switch {
  display: flex;
  gap: 4px;
  padding-left: 18px;
  border-left: 1px solid var(--brd);
}

.lang-switch a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--txt-muted);
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
}

.lang-switch a:hover {
  color: var(--pink);
  text-decoration: none;
}

.lang-switch a.current {
  color: var(--pink);
  background: var(--pink-dim);
  border-color: var(--pink-brd);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 72px 24px 56px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero .logo-mark {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.18);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--txt);
}

.hero p.lede {
  font-size: 17px;
  color: var(--txt-secondary);
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--pink);
  color: #fff;
}

.btn-primary:hover {
  background: #c02876;
}

.btn-secondary {
  background: var(--surf);
  color: var(--txt);
  border-color: var(--brd-strong);
}

.btn-secondary:hover {
  background: var(--surf2);
}

/* Status pill */

.status-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 28px auto 0;
  padding: 8px 16px;
  background: var(--pink-dim);
  border: 1px solid var(--pink-brd);
  border-radius: var(--radius-pill);
  color: var(--pink);
  font-size: 13px;
  font-family: var(--font-heading);
  font-weight: 600;
}

.status-note .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
}

/* Sections */

section {
  padding: 56px 0;
}

section.alt {
  background: var(--surf);
  border-top: 1px solid var(--brd);
  border-bottom: 1px solid var(--brd);
}

.section-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 40px;
}

.section-head h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}

.section-head p {
  color: var(--txt-secondary);
  font-size: 15px;
  margin: 0;
}

/* Use cases (why ask strangers) */

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.usecase {
  display: flex;
  gap: 14px;
  background: var(--surf);
  border: 1px solid var(--brd);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.usecase .mark {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.usecase:nth-child(1) .mark {
  background: var(--pink-dim);
}

.usecase:nth-child(2) .mark {
  background: var(--lav-dim);
}

.usecase:nth-child(3) .mark {
  background: var(--orange-dim);
}

.usecase:nth-child(4) .mark {
  background: var(--cyan-dim);
}

.usecase h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  margin: 0 0 4px;
  color: var(--txt);
}

.usecase p {
  color: var(--txt-secondary);
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
}

.usecase-tagline {
  text-align: center;
  margin: 28px 0 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--txt);
}

.usecase-tagline span {
  color: var(--pink);
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step {
  background: var(--surf);
  border: 1px solid var(--brd);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}

.step .num {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--lav-dim);
  color: var(--lav);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  margin: 0 0 6px;
}

.step p {
  color: var(--txt-secondary);
  font-size: 14px;
  margin: 0;
  line-height: 1.55;
}

/* Feature cards (Get guessed / Guess about others) */

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  border: 1px solid var(--brd);
}

.card.pink {
  background: var(--pink-dim);
  border-color: var(--pink-brd);
}

.card.lav {
  background: var(--lav-dim);
  border-color: var(--lav-brd);
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin: 0 0 8px;
}

.card.pink h3 {
  color: var(--pink);
}

.card.lav h3 {
  color: var(--lav);
}

.card p {
  color: var(--txt-secondary);
  font-size: 14px;
  margin: 0;
  line-height: 1.55;
}

/* Real moments gallery */

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.compare-card {
  background: var(--surf);
  border: 1px solid var(--brd);
  border-radius: var(--radius-lg);
  padding: 16px;
}

.compare-photos {
  position: relative;
  display: flex;
  gap: 4px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.compare-photos img {
  width: 50%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.vs-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--surf);
  border: 1px solid var(--brd-strong);
  color: var(--pink);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(26, 16, 53, 0.12);
}

.compare-caption {
  margin: 14px 2px 2px;
  font-size: 14px;
  color: var(--txt-secondary);
  line-height: 1.5;
}

.compare-caption strong {
  color: var(--txt);
}

.lifestyle-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.lifestyle-strip figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--brd);
}

.lifestyle-strip img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.lifestyle-strip figcaption {
  padding: 12px 16px 16px;
  font-size: 13px;
  color: var(--txt-secondary);
  background: var(--surf);
}

/* Privacy reassurance strip */

.privacy-strip {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surf2);
  border: 1px solid var(--brd);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
}

.privacy-strip .icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cyan);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
}

.privacy-strip p {
  margin: 0;
  color: var(--txt-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.privacy-strip strong {
  color: var(--txt);
}

/* Contact */

.contact-card {
  background: var(--surf);
  border: 1px solid var(--brd);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}

.contact-card .email {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--pink);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--brd);
  padding: 32px 0 40px;
}

.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer .fbrand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--txt-muted);
  font-size: 13px;
}

.site-footer .fbrand img {
  width: 20px;
  height: 20px;
  border-radius: 5px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--txt-secondary);
  font-size: 13px;
}

/* Legal pages */

.legal-page .wrap {
  max-width: 720px;
}

.legal-header {
  padding: 48px 0 8px;
}

.legal-header h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 30px;
  margin: 0 0 8px;
}

.legal-header .updated {
  color: var(--txt-muted);
  font-size: 13px;
}

.legal-disclaimer {
  background: var(--orange-dim);
  border: 1px solid rgba(234, 88, 12, 0.25);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--txt);
  line-height: 1.6;
}

.legal-disclaimer a {
  color: var(--pink);
}

.legal-intro {
  color: var(--txt-secondary);
  font-size: 15px;
  line-height: 1.7;
  white-space: pre-line;
  margin: 20px 0 8px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--brd);
}

.legal-section {
  padding: 24px 0;
  border-bottom: 1px solid var(--brd);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 10px;
  color: var(--txt);
}

.legal-section p {
  color: var(--txt-secondary);
  font-size: 14.5px;
  line-height: 1.75;
  white-space: pre-line;
  margin: 0;
}

.legal-section a {
  color: var(--pink);
}

/* Responsive */

@media (max-width: 720px) {
  .steps,
  .cards,
  .compare-grid,
  .lifestyle-strip,
  .usecase-grid {
    grid-template-columns: 1fr;
  }

  .site-header .wrap {
    flex-wrap: wrap;
    padding: 12px 0;
    row-gap: 8px;
  }

  .header-right {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav {
    gap: 14px;
  }

  .lang-switch {
    border-left: none;
    padding-left: 0;
  }

  .site-footer .wrap {
    flex-direction: column;
    text-align: center;
  }
}
