:root {
  --bg: #f6f2e9;
  --bg-accent: #eef5ee;
  --paper: rgba(255, 255, 255, 0.82);
  --paper-strong: rgba(255, 255, 255, 0.94);
  --ink: #18211c;
  --muted: #5d665f;
  --line: rgba(24, 33, 28, 0.1);
  --sage: #1f5d52;
  --gold: #f2b84b;
  --coral: #d76845;
  --sky: #5f88d8;
  --shadow: 0 24px 70px rgba(36, 42, 39, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(242, 184, 75, 0.22), transparent 32%),
    radial-gradient(circle at top right, rgba(95, 136, 216, 0.18), transparent 28%),
    linear-gradient(135deg, var(--bg) 0%, var(--bg-accent) 45%, #edf1f8 100%);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(246, 242, 233, 0.7);
  border-bottom: 1px solid rgba(24, 33, 28, 0.06);
}

.site-nav .site-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  font-weight: 900;
  background: linear-gradient(145deg, var(--coral), var(--sage));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  outline: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.75);
}

.hero {
  padding: 56px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.panel,
.faq-item,
.legal-card,
.contact-card {
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-card {
  border-radius: var(--radius-xl);
  padding: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--sage);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.05;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.lede,
.intro,
.legal-card p,
.faq-item p,
.contact-card p,
.footer-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
}

.button {
  color: white;
  background: linear-gradient(135deg, var(--sage), #2c6e63);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-notes span,
.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
}

.hero-notes span:nth-child(1) {
  background: rgba(215, 104, 69, 0.14);
  color: #8d3d23;
}

.hero-notes span:nth-child(2) {
  background: rgba(31, 93, 82, 0.14);
  color: var(--sage);
}

.hero-notes span:nth-child(3) {
  background: rgba(95, 136, 216, 0.16);
  color: #365ba8;
}

.hero-card {
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -12% -18% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.38), transparent 70%);
}

.phone-frame {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 34px;
  padding: 16px;
  background: linear-gradient(180deg, #1e2a25 0%, #0d1110 100%);
  box-shadow: 0 32px 60px rgba(14, 20, 18, 0.28);
}

.phone-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.phone-screen {
  border-radius: 24px;
  overflow: hidden;
  padding: 18px;
  background:
    linear-gradient(160deg, rgba(249, 240, 221, 0.92), rgba(236, 244, 239, 0.92) 56%, rgba(232, 239, 248, 0.92)),
    white;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
}

.screen-header strong {
  display: block;
  font-size: 1.45rem;
}

.screen-header span {
  color: var(--muted);
  font-size: 0.92rem;
}

.status-pill {
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  text-align: center;
  min-width: 74px;
}

.status-pill b {
  display: block;
  font-size: 1.15rem;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0;
}

.mini-card {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(24, 33, 28, 0.08);
}

.mini-card small {
  display: block;
  color: var(--muted);
}

.stack {
  display: grid;
  gap: 12px;
}

.task-block {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
}

.task-block b {
  display: block;
  margin-bottom: 6px;
}

.task-now {
  border-left: 6px solid var(--coral);
}

.task-next {
  border-left: 6px solid var(--sky);
}

.task-later {
  border-left: 6px solid var(--gold);
}

.section {
  padding: 28px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 20px;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.panel {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.panel p {
  color: var(--muted);
  margin-bottom: 0;
}

.badge {
  margin-bottom: 14px;
  width: fit-content;
}

.badge-coral {
  color: #8d3d23;
  background: rgba(215, 104, 69, 0.14);
}

.badge-sage {
  color: var(--sage);
  background: rgba(31, 93, 82, 0.14);
}

.badge-sky {
  color: #365ba8;
  background: rgba(95, 136, 216, 0.14);
}

.badge-gold {
  color: #916600;
  background: rgba(242, 184, 75, 0.2);
}

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

.checklist .panel ul,
.legal-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.faq-grid {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 22px;
  border-radius: 22px;
}

.faq-item p {
  margin: 0;
}

.preview-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
}

.preview-copy {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.screenshot-card {
  padding: 18px;
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.screenshot-frame {
  border-radius: 26px;
  overflow: hidden;
  background: #111714;
  padding: 10px;
}

.screenshot-frame img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.screenshot-card figcaption {
  padding-top: 14px;
  color: var(--muted);
  font-size: 0.98rem;
}

.page-hero {
  padding: 54px 0 18px;
}

.page-hero-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 18px;
}

.legal-layout,
.contact-layout {
  display: grid;
  gap: 18px;
}

.legal-card,
.contact-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.contact-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.footer {
  padding: 36px 0 52px;
}

.footer-card {
  padding: 24px 28px;
  border-radius: 26px;
  background: rgba(24, 33, 28, 0.92);
  color: rgba(255, 255, 255, 0.9);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

@media (max-width: 900px) {
  .hero-grid,
  .panel-grid,
  .checklist,
  .preview-section,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-card,
  .page-hero-card,
  .panel,
  .legal-card,
  .contact-card,
  .faq-item {
    padding: 24px;
  }

  .site-nav .site-shell,
  .footer-row {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max));
  }

  h1 {
    font-size: 2.8rem;
  }

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

  .nav-links {
    gap: 6px;
  }

  .nav-links a {
    padding: 8px 10px;
  }
}
