@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@600;700&family=Lexend:wght@300;400;500;600&display=swap');

:root {
  --cream: #fff8e9;
  --paper: #fffdf7;
  --brown: #51382c;
  --green: #326b3d;
  --green-dark: #214d2b;
  --sage: #dce9d5;
  --pink: #f3c9c7;
  --yellow: #f4dda2;
  --blue: #c9e0e5;
  --line: #dacdbb;
  --shadow: 0 18px 50px rgba(81, 56, 44, .12);
  --radius: 28px;
  --content: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--brown);
  background:
    radial-gradient(circle at 10% 2%, rgba(111, 155, 100, .18), transparent 24rem),
    var(--cream);
  font-family: 'Lexend', sans-serif;
  font-weight: 400;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; }
a { color: var(--green-dark); text-underline-offset: 4px; }
a:hover { text-decoration-thickness: 3px; }
h1, h2, h3, .brand, .button { font-family: 'Fredoka', sans-serif; }
h1, h2, h3 { margin: 0; color: var(--green-dark); line-height: 1.04; }
h1 { font-size: clamp(3rem, 12vw, 6.7rem); letter-spacing: -.04em; }
h2 { font-size: clamp(2.15rem, 7vw, 4.1rem); letter-spacing: -.025em; }
h3 { font-size: clamp(1.55rem, 5vw, 2.2rem); }
p { margin: 0 0 1rem; }
.skip-link { position: absolute; left: -999px; top: 8px; }
.skip-link:focus { left: 8px; z-index: 100; padding: 10px 14px; background: var(--paper); }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,248,233,.94); border-bottom: 1px solid rgba(218,205,187,.8); backdrop-filter: blur(12px); }
.nav-wrap { width: min(calc(100% - 28px), var(--content)); min-height: 72px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--green-dark); font-size: 1.2rem; font-weight: 700; text-decoration: none; }
.brand img { width: 44px; height: 44px; border-radius: 14px; object-fit: cover; }
.menu-toggle { border: 1px solid var(--line); border-radius: 999px; padding: 9px 14px; color: var(--brown); background: var(--paper); font: 600 .95rem 'Lexend', sans-serif; }
.site-nav { display: none; position: absolute; left: 14px; right: 14px; top: 65px; padding: 12px; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); box-shadow: var(--shadow); }
.site-nav.open { display: grid; }
.site-nav a { padding: 10px 12px; border-radius: 12px; color: var(--brown); font-weight: 600; text-decoration: none; }
.site-nav a:hover, .site-nav a[aria-current='page'] { background: var(--sage); color: var(--green-dark); }
.shell { width: min(calc(100% - 28px), var(--content)); margin-inline: auto; }
.hero { padding: 64px 0 48px; }
.hero-grid { display: grid; gap: 36px; align-items: center; }
.eyebrow { margin-bottom: 12px; color: var(--green); font-size: .82rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.lead { max-width: 700px; margin-top: 22px; font-size: clamp(1.08rem, 3vw, 1.35rem); }
.hero-art { position: relative; min-height: 300px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 42% 58% 48% 52% / 52% 38% 62% 48%; background: var(--sage); }
.hero-art::before, .hero-art::after { content: ''; position: absolute; border-radius: 999px; background: var(--yellow); transform: rotate(-12deg); }
.hero-art::before { width: 65%; height: 18%; left: -8%; top: 12%; }
.hero-art::after { width: 48%; height: 14%; right: -5%; bottom: 10%; background: var(--pink); }
.hero-art img { position: relative; z-index: 1; width: min(78%, 360px); filter: drop-shadow(0 18px 24px rgba(33,77,43,.2)); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 11px 19px; border: 2px solid var(--green-dark); border-radius: 999px; background: var(--green-dark); color: white; font-size: 1.02rem; font-weight: 600; text-decoration: none; }
.button.secondary { background: transparent; color: var(--green-dark); }
.button.disabled { border-color: #8a7d70; background: #8a7d70; cursor: default; }
.section { padding: 54px 0; }
.section-heading { max-width: 740px; margin-bottom: 26px; }
.section-heading p { margin-top: 12px; font-size: 1.05rem; }
.cards { display: grid; gap: 20px; }
.card { position: relative; overflow: hidden; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); }
.card:nth-child(2n) { background: #fbf2dc; }
.app-card { display: grid; gap: 22px; }
.app-icon { width: 112px; height: 112px; padding: 7px; border-radius: 30px; background: #f4f0df; object-fit: contain; }
.tag { display: inline-block; width: fit-content; margin-bottom: 12px; padding: 5px 11px; border-radius: 999px; background: var(--sage); color: var(--green-dark); font-size: .8rem; font-weight: 700; }
.text-link { font-weight: 700; }
.soft-panel { padding: clamp(28px, 6vw, 58px); border-radius: 36px; background: var(--green-dark); color: #fff9eb; }
.soft-panel h2, .soft-panel a { color: #fff9eb; }
.soft-panel p { max-width: 760px; margin-top: 16px; }
.detail-hero { padding: 56px 0 24px; }
.detail-grid { display: grid; gap: 28px; align-items: center; }
.detail-icon { width: min(58vw, 250px); margin: auto; filter: drop-shadow(0 16px 28px rgba(81,56,44,.18)); }
.prose { max-width: 820px; }
.prose h2 { margin: 2.2rem 0 1rem; font-size: clamp(1.8rem, 6vw, 2.8rem); }
.prose h3 { margin: 1.7rem 0 .7rem; }
.prose li { margin-bottom: .55rem; }
.notice { margin: 22px 0; padding: 18px 20px; border-left: 7px solid var(--green); border-radius: 14px; background: var(--sage); }
.future-card { border: 2px dashed #9ba98e; background: rgba(255,253,247,.65); box-shadow: none; }
.site-footer { margin-top: 56px; padding: 34px 0 50px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; gap: 22px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.footer-links a { font-weight: 600; }
.tiny { font-size: .86rem; opacity: .78; }

@media (min-width: 740px) {
  .menu-toggle { display: none; }
  .site-nav { position: static; display: flex; padding: 0; border: 0; background: transparent; box-shadow: none; }
  .site-nav a { padding: 8px 10px; font-size: .88rem; }
  .hero { padding: 86px 0 70px; }
  .hero-grid, .detail-grid { grid-template-columns: 1.1fr .9fr; }
  .cards.two { grid-template-columns: repeat(2, 1fr); }
  .cards.three { grid-template-columns: repeat(3, 1fr); }
  .app-card { grid-template-columns: auto 1fr; }
  .footer-grid { grid-template-columns: 1fr auto; align-items: end; }
}

@media (min-width: 1000px) {
  .site-nav a { padding-inline: 13px; font-size: .94rem; }
  .hero-art { min-height: 470px; }
}

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