/* Verdela — site styles. Organic Tactile: clay surfaces, botanical greens,
   soft shadows, generous whitespace. Light theme with a deep-green hero. */

:root {
  --deep: #1f5c3f;
  --fresh: #43b06a;
  --fresh-on-dark: #bdeccd;
  --mint: #dcefe2;
  --sage: #c5d8c9;
  --cream: #f5f6f0;
  --ink: #1c2a23;
  --muted: #5b6b61;
  --surface: #ffffff;
  --line: #e4ece6;
  --radius: 28px;
  --radius-sm: 16px;
  --maxw: 1120px;
  --shadow: 0 18px 40px -18px rgba(20, 54, 31, 0.22), 0 4px 10px -6px rgba(20, 54, 31, 0.12);
  --shadow-sm: 0 8px 20px -12px rgba(20, 54, 31, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Poppins", "Inter", sans-serif;
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
a { color: var(--deep); text-decoration-color: rgba(31, 92, 63, 0.35); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--fresh); }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(48px, 8vw, 96px) 0; }
.eyebrow {
  font-family: "Poppins", sans-serif; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 0.74rem; color: var(--fresh);
  margin: 0 0 0.6em;
}
.lede { font-size: 1.16rem; color: var(--muted); max-width: 62ch; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }

/* ---- Brand lockup ---- */
.lockup { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.lockup img { width: 30px; height: 30px; display: block; }
.lockup .word {
  font-family: "Quicksand", sans-serif; font-weight: 600; font-size: 1.5rem;
  letter-spacing: -0.01em; color: var(--ink);
}
.lockup .word .ac { color: var(--fresh); font-weight: 700; }
.lockup.on-dark .word { color: #fff; }
.lockup.on-dark .word .ac { color: var(--fresh-on-dark); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 50px; padding: 0 26px; border-radius: 999px; font-weight: 600;
  font-family: "Poppins", sans-serif; font-size: 1rem; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--fresh); color: #07210f; box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.btn-outline { background: transparent; color: var(--deep); border-color: var(--sage); }
.btn-outline:hover { border-color: var(--fresh); background: #fff; }
@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; } }

/* Google Play "coming soon" badge */
.play-badge {
  display: inline-flex; align-items: center; gap: 12px; min-height: 58px;
  padding: 10px 22px; border-radius: 14px; background: #0d2a1c; color: #fff;
  border: 1px solid rgba(255,255,255,.16); text-decoration: none; cursor: default;
}
.play-badge svg { width: 26px; height: 26px; flex: none; }
.play-badge .pb-top { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; opacity: .72; }
.play-badge .pb-main { font-family: "Poppins", sans-serif; font-weight: 600; font-size: 1.18rem; line-height: 1.1; }
.play-badge .soon {
  margin-inline-start: 6px; font-size: .62rem; font-weight: 700; letter-spacing: .08em;
  background: var(--fresh); color: #07210f; padding: 3px 8px; border-radius: 999px; text-transform: uppercase;
}

/* ---- Nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 246, 240, 0.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 68px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-weight: 500; text-decoration: none; color: var(--ink); font-size: .98rem; }
.nav-links a:hover { color: var(--deep); }
.nav-cta { display: inline-flex; }
@media (max-width: 760px) { .nav-links a:not(.nav-cta) { display: none; } }

/* ---- Hero (deep-green gradient) ---- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(158deg, var(--fresh) 0%, var(--deep) 72%);
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 62%);
}
.hero::before { width: 60vw; height: 60vw; top: -22vw; right: -12vw; }
.hero::after { width: 46vw; height: 46vw; bottom: -24vw; left: -14vw; background: radial-gradient(circle, rgba(189,236,205,.14), transparent 62%); }
.hero .wrap { position: relative; padding-top: clamp(56px, 9vw, 104px); padding-bottom: clamp(56px, 9vw, 104px); }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; text-align: center; } }
.hero h1 { color: #fff; }
.hero .tagline {
  font-family: "Quicksand", sans-serif; text-transform: uppercase; letter-spacing: 0.34em;
  text-indent: 0.34em; font-weight: 600; font-size: .82rem; color: rgba(255,255,255,.66); margin: 0 0 18px;
}
.hero .lede { color: rgba(255,255,255,.86); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
@media (max-width: 880px) { .hero-cta { justify-content: center; } }

/* Hero visual: floating clay mark */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.orb {
  position: relative; width: min(340px, 78vw); aspect-ratio: 1;
  border-radius: 40px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 30px 70px -30px rgba(0,0,0,.5);
}
.orb img { width: 52%; height: 52%; filter: drop-shadow(0 12px 24px rgba(0,0,0,.3)); }
@media (prefers-reduced-motion: no-preference) { .orb img { animation: float 6s ease-in-out infinite; } }
@keyframes float { 0%,100% { transform: translateY(-6px); } 50% { transform: translateY(6px); } }

/* ---- Feature cards ---- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: 20px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.card .ic {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  margin-bottom: 16px; background: var(--mint); color: var(--deep);
}
.card .ic svg { width: 25px; height: 25px; }
.card h3 { margin-bottom: 6px; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---- Trust strip ---- */
.trust { background: var(--mint); border-block: 1px solid var(--line); }
.trust .wrap { display: flex; flex-wrap: wrap; gap: 18px 40px; align-items: center; justify-content: center; text-align: center; }
.trust .item { display: inline-flex; align-items: center; gap: 10px; color: var(--deep); font-weight: 500; }
.trust .item svg { width: 22px; height: 22px; flex: none; }

/* ---- Languages ---- */
.langs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 28px; }
.langs span {
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px; font-size: .95rem; box-shadow: var(--shadow-sm);
}

/* ---- Disclaimer card ---- */
.note {
  display: flex; gap: 14px; align-items: flex-start; background: #fff7e8;
  border: 1px solid #f0dcae; border-radius: var(--radius-sm); padding: 16px 18px; color: #6b4e16;
}
.note svg { width: 22px; height: 22px; flex: none; margin-top: 2px; color: #b8860b; }

/* ---- Footer ---- */
.footer { background: var(--deep); color: rgba(255,255,255,.82); }
.footer a { color: rgba(255,255,255,.82); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer .wrap { padding-block: 54px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
@media (max-width: 700px) { .footer .wrap { grid-template-columns: 1fr 1fr; } }
.footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer .brandcol p { color: rgba(255,255,255,.66); font-size: .95rem; max-width: 34ch; margin-top: 14px; }
.footer .legal { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.14); padding-top: 22px; margin-top: 8px;
  display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: space-between; font-size: .88rem; color: rgba(255,255,255,.6); }
.made { display: inline-flex; align-items: center; gap: 7px; }

/* ---- Legal / document pages ---- */
.doc { background: var(--surface); }
.doc .wrap { max-width: 800px; padding-block: clamp(40px, 7vw, 80px); }
.doc h1 { color: var(--ink); }
.doc .updated { color: var(--muted); font-size: .95rem; margin-top: -.4em; }
.doc h2 { font-size: 1.4rem; margin-top: 1.8em; }
.doc h3 { font-size: 1.1rem; margin-top: 1.4em; }
.doc ul { padding-inline-start: 22px; }
.doc li { margin-bottom: .5em; }
.doc .back { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 24px; font-weight: 500; text-decoration: none; }
.doc .reviewnote { margin-top: 2.5em; padding: 14px 16px; background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius-sm); font-size: .92rem; color: var(--muted); }

:focus-visible { outline: 3px solid var(--fresh); outline-offset: 2px; border-radius: 4px; }

/* ---- Dark mode ---- */
@media (prefers-color-scheme: dark) {
  :root {
    --cream: #0e1311; --surface: #161d18; --ink: #e8f0ea; --muted: #9db0a4;
    --line: #243029; --mint: #14241b; --sage: #243029;
    --shadow-sm: 0 8px 20px -12px rgba(0,0,0,.5);
  }
  body { background: var(--cream); }
  .nav { background: rgba(14,19,17,.82); }
  .lockup .word { color: #fff; }
  .play-badge { background: #0a1611; }
  .note { background: #2a2410; border-color: #4a3f1a; color: #e6d59c; }
  .card .ic { background: #14241b; color: var(--fresh-on-dark); }
  .doc .reviewnote { background: #11201a; }
}
