/* YeetnGreet marketing — dark (default) / light */

:root {
  --bg: #0e0f14;
  --panel: #161821;
  --ink: #f4f5f8;
  --ink-secondary: #a9b1d6;
  --ink-tertiary: #7a829e;
  --line: rgba(169, 177, 214, 0.14);
  --accent: #7aa2f7;
  --accent-soft: rgba(122, 162, 247, 0.14);
  --cta: #7aa2f7;
  --cta-ink: #0b1020;
  --control: #1c1e26;
  --font: "Inter", "Segoe UI Variable Text", "Segoe UI", system-ui, sans-serif;
  --radius: 10px;
  color-scheme: dark;
}

:root[data-theme="light"] {
  --bg: #f4f4f5;
  --panel: #ffffff;
  --ink: #111111;
  --ink-secondary: #5c5c66;
  --ink-tertiary: #8b8b96;
  --line: rgba(17, 17, 17, 0.1);
  --accent: #3b6ae8;
  --accent-soft: rgba(59, 106, 232, 0.1);
  --cta: #171717;
  --cta-ink: #ffffff;
  --control: #ffffff;
  color-scheme: light;
}

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

html {
  background: var(--bg);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.011em;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

.shell {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 1.5rem) 3rem;
  overflow-x: clip;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
  min-height: 56px;
  padding: 0.65rem 0;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand:hover { text-decoration: none; color: var(--ink); }

.brand img {
  width: 32px;
  height: 32px;
  display: block;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  text-decoration: none;
}

.brand-link img {
  width: 22px;
  height: 22px;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
}

.hero-brand img {
  width: 72px;
  height: 72px;
  display: block;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.hero-brand .eyebrow {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.topbar nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.15rem;
  width: 100%;
}

@media (min-width: 480px) {
  .topbar nav {
    width: auto;
    justify-content: flex-end;
  }
}

.topbar a,
.theme-toggle {
  color: var(--ink-secondary);
  font-size: 13px;
  font-weight: 500;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.topbar a:hover,
.theme-toggle:hover {
  color: var(--ink);
  background: var(--accent-soft);
  text-decoration: none;
}

.hero {
  padding: 0.5rem 0 2.5rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--accent);
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 5.2vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.18;
  color: var(--ink);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.lede {
  margin: 0;
  color: var(--ink-secondary);
  font-size: 1.02rem;
  max-width: 38rem;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 1rem;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--cta);
  color: var(--cta-ink);
}
.btn.primary:hover { filter: brightness(1.06); text-decoration: none; }

.btn.ghost {
  background: var(--control);
  border-color: var(--line);
  color: var(--ink);
}
.btn.ghost:hover {
  border-color: var(--ink-tertiary);
  text-decoration: none;
}

.pricing-section { padding-top: 0.5rem; }

.section-label {
  margin: 0 0 0.35rem;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.section-note {
  margin: 0 0 1rem;
  color: var(--ink-tertiary);
  font-size: 13px;
}

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

@media (min-width: 640px) {
  .pricing { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.plan {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem 1.1rem 1.15rem;
  min-width: 0;
}

.plan.featured {
  border-color: var(--accent);
}

.plan h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.plan .price {
  margin: 0.5rem 0 0.4rem;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.plan .price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-tertiary);
}

.plan p {
  margin: 0;
  color: var(--ink-secondary);
  font-size: 13px;
}

footer {
  margin-top: 3rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
  color: var(--ink-tertiary);
  font-size: 0.85rem;
}

.narrow {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem clamp(1rem, 4vw, 1.5rem) 3rem;
}

.narrow h1 {
  margin: 0.75rem 0 0.85rem;
  font-size: clamp(1.4rem, 4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.narrow h2 {
  margin: 1.75rem 0 0.55rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.narrow .lede {
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-size: 1.05rem;
  max-width: 36rem;
}

.narrow p {
  margin: 0 0 0.85rem;
  color: var(--ink-secondary);
}

.privacy-back {
  margin-top: 2rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}
