/* Shortless marketing site - tokens and layout per design handoff */
@font-face { font-family: 'Caprasimo'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/caprasimo-400.woff2') format('woff2'); }
@font-face { font-family: 'Figtree'; font-style: normal; font-weight: 400 700; font-display: swap; src: url('/fonts/figtree-var.woff2') format('woff2'); }

:root {
  --ground: #f5ead8;
  --card: #f9f4ed;
  --chip: #ebddc5;
  --ink: #201e1d;
  --body: #645c50;
  --muted: #6d6558;
  --crimson: #a01d20;
  --crimson-hover: #871719;
  --crimson-text: #8f1a1d;
  --pink: #f5d7d6;
  --pink-ink: #6f1214;
  --sage-soft: #f0fae1;
  --sage-chip: #ccdbb2;
  --sage-tint: #e1eecc;
  --sage-ink: #3d472b;
  --blush: rgba(217, 138, 140, 0.75);
  --shadow-card: 0 1px 2px rgba(46, 43, 37, 0.22);
  --shadow-btn: 0 6px 18px rgba(46, 43, 37, 0.22);
  --shadow-big: 0 12px 32px rgba(46, 43, 37, 0.22);
  --shadow-brand: 0 4px 12px rgba(46, 43, 37, 0.22);
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--ground); color: var(--ink); font-family: Figtree, sans-serif; overflow-x: hidden; }
h1, h2, h3 { font-family: Caprasimo, serif; font-weight: 400; }
a { color: var(--crimson-text); }
a:hover { color: var(--crimson-hover); }
:focus-visible { outline: 2px solid var(--crimson); outline-offset: 2px; }
img { max-width: 100%; }

.container { max-width: 1060px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.narrow { max-width: 760px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; background: var(--crimson); color: #fff; text-decoration: none; border-radius: 999px; font-weight: 700; box-shadow: var(--shadow-btn); transition: background 0.15s ease; }
.btn:hover { background: var(--crimson-hover); color: #fff; }
.btn-nav { padding: 10px 20px; font-size: 14px; }
.btn-hero { padding: 16px 30px; font-size: 17px; }
.btn-cta { padding: 16px 34px; font-size: 17px; }
.btn-outline { display: inline-block; color: var(--crimson-text); border: 2px solid var(--crimson); border-radius: 999px; padding: 9px 18px; font-size: 14px; font-weight: 700; text-decoration: none; transition: background 0.15s ease; }
.btn-outline:hover { background: var(--pink); color: var(--crimson-text); }

/* Nav */
.nav { padding-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-mark { width: 42px; height: 42px; border-radius: 999px; background: var(--crimson); display: grid; place-items: center; box-shadow: var(--shadow-brand); }
.brand-name { font-family: Caprasimo, serif; font-size: 24px; }
.nav-links { display: flex; align-items: center; gap: 20px; font-size: 14px; font-weight: 600; }
.nav-links > a:not(.btn) { text-decoration: none; color: var(--body); }
.nav-links > a:not(.btn):hover { color: var(--crimson-text); }
@media (max-width: 480px) {
  .nav { gap: 10px; }
  .brand { gap: 10px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-name { font-size: 20px; }
  .nav-links { gap: 12px; }
  .btn-nav { padding: 8px 12px; }
}

/* Hero */
.hero { padding-top: 72px; padding-bottom: 40px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(44px, 6vw, 68px); line-height: 1.05; margin: 0 0 20px; text-wrap: pretty; }
.hero-copy { font-size: 19px; line-height: 1.55; color: var(--body); margin: 0 0 30px; max-width: 46ch; text-wrap: pretty; }
.hero-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-caption { font-size: 14px; font-weight: 600; color: var(--muted); }
.hero-art { position: relative; height: 380px; }
.deco-sage { position: absolute; top: 10px; right: 20px; width: 150px; height: 150px; border-radius: 999px; background: var(--sage-chip); }
.deco-blush { position: absolute; bottom: 30px; right: 150px; width: 66px; height: 66px; border-radius: 999px; background: var(--blush); }
.hero-badge { position: absolute; top: 46px; left: 30px; width: 290px; height: 290px; }
.hero-pulse { position: absolute; inset: 0; border-radius: 999px; background: var(--crimson); animation: sl-pulse 2.8s ease-out infinite; }
.hero-disc { position: absolute; inset: 0; border-radius: 999px; background: var(--crimson); box-shadow: var(--shadow-big); display: grid; place-items: center; }
.hero-disc-inner { display: grid; place-items: center; gap: 10px; text-align: center; }
.hero-glyph { animation: sl-wiggle 0.7s 0.5s; }
.hero-word { font-family: Caprasimo, serif; font-size: 30px; color: #fff; }
.hero-sub { font-size: 13px; font-weight: 600; color: rgba(255, 255, 255, 0.85); }
@keyframes sl-pulse { 0% { transform: scale(1); opacity: 0.35; } 100% { transform: scale(1.18); opacity: 0; } }
@keyframes sl-wiggle { 0% { transform: rotate(0deg); } 25% { transform: rotate(-12deg); } 55% { transform: rotate(9deg); } 80% { transform: rotate(-4deg); } 100% { transform: rotate(0deg); } }

@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; gap: 36px; }
  .hero-art { width: 100%; max-width: 380px; margin: 0 auto; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-pulse { animation: none; opacity: 0; }
  .hero-glyph { animation: none; }
  .chev { transition: none; }
}

/* Counter strip */
.counter-section { padding-bottom: 72px; }
.counter { background: var(--sage-soft); border-radius: 28px; padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.pill { display: inline-block; border-radius: 999px; padding: 5px 12px; font-weight: 700; }
.pill-sage { background: var(--sage-chip); color: var(--sage-ink); font-size: 11px; margin-bottom: 8px; }
.pill-pink { background: var(--pink); color: var(--pink-ink); font-size: 12px; }
.counter-trivia { font-family: Caprasimo, serif; font-size: 26px; color: var(--sage-ink); }
.counter-right { text-align: right; }
.counter-num { font-family: Caprasimo, serif; font-size: 46px; color: var(--crimson-text); }

/* Features */
.features { padding-bottom: 84px; }
.features h2, .faq h2 { font-size: 38px; margin: 0 0 32px; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.card { background: var(--card); border-radius: 28px; padding: 26px; box-shadow: var(--shadow-card); }
.card-icon { width: 48px; height: 48px; border-radius: 999px; display: grid; place-items: center; margin-bottom: 16px; }
.card-icon.pink { background: var(--pink); color: var(--pink-ink); }
.card-icon.sage { background: var(--sage-tint); color: var(--sage-ink); }
.card h3 { font-size: 20px; margin: 0 0 8px; }
.card p { font-size: 14px; line-height: 1.55; color: var(--body); margin: 0; text-wrap: pretty; }

/* Screenshots */
.shots { padding-bottom: 84px; }
.shots h2 { font-size: 38px; margin: 0 0 10px; }
.shots-sub { font-size: 16px; color: var(--body); margin: 0 0 32px; }
.shots-row { display: flex; gap: 22px; align-items: flex-end; justify-content: center; flex-wrap: wrap; }
.shots img { border-radius: 28px; box-shadow: var(--shadow-big); }
.shot-phone { width: 240px; height: auto; }

/* FAQ */
.faq { padding-bottom: 84px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border-radius: 20px; overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: none; border: none; cursor: pointer; padding: 18px 22px; font-family: Figtree, sans-serif; font-size: 16px; font-weight: 700; color: var(--ink); text-align: left; }
.faq-q:hover { background: var(--pink); }
.chev { color: var(--crimson-text); display: grid; place-items: center; transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.faq-q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq-a { margin: 0; padding: 0 22px 18px; font-size: 15px; line-height: 1.6; color: var(--body); text-wrap: pretty; }

/* Bottom CTA */
.cta-section { padding-bottom: 90px; text-align: center; }
.cta { position: relative; background: var(--pink); border-radius: 28px; padding: 60px 32px; overflow: hidden; }
.cta-deco-tr { position: absolute; top: -40px; right: -30px; width: 160px; height: 160px; border-radius: 999px; background: var(--sage-chip); }
.cta-deco-bl { position: absolute; bottom: -50px; left: -20px; width: 130px; height: 130px; border-radius: 999px; background: var(--blush); }
.cta h2 { position: relative; font-size: 36px; margin: 0 0 12px; color: var(--pink-ink); }
.cta p { position: relative; font-size: 16px; color: var(--pink-ink); margin: 0 0 28px; }
.cta .btn { position: relative; }

/* Footer */
.site-footer { border-top: 1.5px solid var(--chip); padding: 28px 24px 40px; }
.footer-inner { max-width: 1060px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 14px; color: var(--muted); }
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-links { display: flex; align-items: center; gap: 20px; font-weight: 600; }
.footer-links a { color: var(--crimson-text); text-decoration: none; }
.footer-links a:hover { color: var(--crimson-hover); }

/* Privacy page */
.privacy-main { padding-top: 56px; padding-bottom: 90px; }
.privacy-main h1 { font-size: 44px; margin: 0 0 10px; }
.privacy-date { font-size: 14px; font-weight: 600; color: var(--muted); margin: 0 0 36px; }
.privacy-summary { background: var(--sage-soft); border-radius: 28px; padding: 24px 28px; margin-bottom: 40px; }
.privacy-summary p { margin: 0; font-size: 17px; line-height: 1.6; color: var(--sage-ink); font-weight: 600; }
.privacy-sections { display: flex; flex-direction: column; gap: 32px; font-size: 16px; line-height: 1.65; color: var(--body); }
.privacy-sections section > h2 { font-size: 24px; color: var(--ink); margin: 0 0 10px; }
.privacy-sections p { margin: 0; }
.privacy-sections p + ul { margin: 12px 0; }
.privacy-sections ul { margin: 0 0 12px; padding-left: 22px; display: flex; flex-direction: column; gap: 6px; }
.privacy-sections ul + p { margin-top: 12px; }
