/* Tiny Timer — public support & legal pages
   Ported verbatim from the original app/globals.css. The only changes: the vestigial
   Tailwind import and @theme block are gone (every rule below was already hand-written),
   and the Geist webfont is replaced with a system stack so these pages make zero
   third-party requests — appropriate for pages that state what we don't share. */

:root {
  --cream: #fffdf8;
  --surface: #ffffff;
  --ink: #183944;
  --muted: #66808a;
  --sky: #86d9f5;
  --sky-deep: #249fc9;
  --sky-soft: #e7f7fd;
  --blush: #f6c9cd;
  --blush-soft: #fff0f1;
  --green: #98dc67;
  --green-soft: #eef9e7;
  --border: #dbe8eb;
  --shadow: 0 18px 55px rgba(24, 57, 68, 0.10);
  --radius-lg: 34px;
  --radius-md: 22px;
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI Variable Display",
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; }
a { color: inherit; }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow-shell, .legal-shell { width: min(820px, calc(100% - 40px)); }

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,253,248,.92); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(219,232,235,.85); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; font-weight: 900; font-size: 22px; letter-spacing: -.6px; }
.brand-mark { display: inline-flex; width: 42px; height: 42px; overflow: hidden; border-radius: 50%; flex: 0 0 auto; }
.brand-half { width: 50%; height: 100%; }
.brand-half-blush { background: var(--blush); }
.brand-half-green { background: var(--green); }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 750; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--sky-deep); }

.home-hero { position: relative; min-height: 690px; display: grid; align-items: center; overflow: hidden; padding: 82px 0 92px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.eyebrow { color: var(--sky-deep); font-size: 13px; font-weight: 900; letter-spacing: 2.2px; text-transform: uppercase; margin: 0 0 17px; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { margin: 0; font-size: clamp(48px, 6vw, 78px); line-height: .98; letter-spacing: -4px; font-weight: 950; }
.hero-lede { margin: 26px 0 0; color: var(--muted); font-size: 20px; line-height: 1.55; max-width: 640px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { min-height: 54px; padding: 0 24px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; font-weight: 900; transition: transform .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--sky); color: var(--ink); box-shadow: 0 10px 24px rgba(36,159,201,.18); }
.button-secondary { background: var(--surface); color: var(--ink); border: 1px solid var(--border); }
.hero-orb { position: absolute; border-radius: 50%; opacity: .75; }
.hero-orb-blush { width: 320px; height: 320px; background: var(--blush); top: -150px; right: 12%; }
.hero-orb-green { width: 210px; height: 210px; background: var(--green); bottom: -100px; left: 6%; }
.timer-illustration { display: flex; justify-content: center; }
.timer-card { width: min(430px, 100%); padding: 34px 32px; border-radius: 46px; background: var(--surface); box-shadow: var(--shadow); text-align: center; transform: rotate(1.5deg); border: 1px solid rgba(219,232,235,.75); }
.timer-badge { display: inline-flex; align-items: center; gap: 9px; padding: 8px 13px 8px 9px; border-radius: 999px; background: var(--blush-soft); color: #cc6070; font-size: 10px; font-weight: 950; letter-spacing: 1.2px; }
.timer-badge .brand-mark { width: 24px; height: 24px; }
.reveal-circle { width: 230px; height: 230px; margin: 31px auto 22px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--green) 0 35%, var(--sky) 35% 67%, var(--blush) 67% 100%); padding: 22px; }
.reveal-circle span { width: 100%; height: 100%; display: grid; place-items: center; border-radius: 50%; background: var(--cream); color: var(--ink); font-size: 58px; }
.timer-time { font-size: 48px; font-weight: 950; letter-spacing: -2px; }
.timer-card > p { color: var(--muted); margin: 8px 0 0; line-height: 1.5; }

.quick-links { padding: 100px 0; background: var(--surface); }
.section-heading { max-width: 660px; margin: 0 auto 42px; text-align: center; }
.section-heading h2 { font-size: clamp(36px, 4.5vw, 54px); letter-spacing: -2.6px; line-height: 1.05; margin: 0; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-card { min-height: 310px; padding: 32px; border-radius: var(--radius-lg); text-decoration: none; border: 1px solid var(--border); transition: transform .18s ease, box-shadow .18s ease; }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.sky-card { background: var(--sky-soft); }
.blush-card { background: var(--blush-soft); }
.green-card { background: var(--green-soft); }
.card-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--surface); font-size: 25px; font-weight: 950; }
.info-card h3 { margin: 44px 0 10px; font-size: 25px; letter-spacing: -1px; }
.info-card p { color: var(--muted); line-height: 1.55; margin: 0; }
.text-link { display: block; margin-top: 22px; color: var(--sky-deep); font-weight: 900; }

.support-hero { padding: 88px 0 90px; background: linear-gradient(145deg, var(--sky-soft), var(--cream) 65%); }
.support-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
.support-grid h1, .legal-hero h1 { font-size: clamp(48px, 6vw, 74px); }
.contact-card { background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow); border-radius: var(--radius-lg); padding: 34px; }
.contact-card h2 { margin: 0; font-size: 28px; letter-spacing: -1.2px; }
.contact-card p { color: var(--muted); line-height: 1.55; }
.contact-card .button { width: 100%; margin-top: 10px; }
.contact-card .contact-email { text-align: center; color: var(--sky-deep); font-weight: 800; font-size: 13px; margin: 18px 0 0; }
.faq-section { padding: 90px 0; }
.left-heading { margin-left: 0; text-align: left; }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 24px; font-size: 17px; font-weight: 900; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { color: var(--sky-deep); font-size: 26px; font-weight: 500; transition: transform .18s ease; }
.faq-item[open] summary span { transform: rotate(45deg); }
.faq-item p { color: var(--muted); line-height: 1.65; margin: 0; padding: 0 24px 24px; }
.privacy-note { margin-top: 36px; padding: 30px; border-radius: var(--radius-md); background: var(--green-soft); }
.privacy-note h2 { margin: 0 0 8px; font-size: 23px; }
.privacy-note p { color: var(--muted); line-height: 1.6; margin: 0; }
.privacy-note a { color: var(--sky-deep); font-weight: 800; }

.legal-hero { padding: 78px 0 62px; background: linear-gradient(160deg, var(--blush-soft), var(--cream) 70%); border-bottom: 1px solid var(--border); }
.legal-intro { max-width: 720px; color: var(--muted); font-size: 19px; line-height: 1.6; margin: 24px 0 0; }
.legal-content { padding-top: 58px; padding-bottom: 90px; }
.legal-content section { padding: 0 0 34px; margin: 0 0 34px; border-bottom: 1px solid var(--border); }
.legal-content section:last-child { border-bottom: 0; }
.legal-content h2 { margin: 0 0 16px; font-size: 27px; letter-spacing: -1px; }
.legal-content h3 { margin: 26px 0 9px; font-size: 18px; }
.legal-content p, .legal-content li { color: #4f6972; line-height: 1.75; font-size: 16px; }
.legal-content ul { padding-left: 24px; }
.legal-content a { color: var(--sky-deep); font-weight: 700; }

.site-footer { background: var(--ink); color: white; padding: 58px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 70px; }
.footer-brand { color: white; }
.footer-grid p { color: #b6c9cf; max-width: 440px; line-height: 1.55; }
.footer-grid nav { display: grid; align-content: start; gap: 12px; min-width: 220px; }
.footer-grid nav a { color: #dce8eb; text-decoration: none; font-size: 14px; }
.footer-grid nav a:hover { color: var(--sky); }
.copyright { color: #8da7af; border-top: 1px solid rgba(255,255,255,.12); margin-top: 36px; padding-top: 22px; font-size: 12px; }

:focus-visible { outline: 3px solid var(--sky-deep); outline-offset: 3px; }
@media (max-width: 850px) {
  .hero-grid, .support-grid { grid-template-columns: 1fr; gap: 52px; }
  .home-hero { padding-top: 66px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-lede { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .card-grid { grid-template-columns: 1fr; }
  .info-card { min-height: auto; }
  .info-card h3 { margin-top: 30px; }
}
@media (max-width: 640px) {
  .shell, .narrow-shell, .legal-shell { width: min(100% - 28px, 1120px); }
  .header-inner { min-height: 72px; }
  .brand { font-size: 19px; }
  .brand-mark { width: 36px; height: 36px; }
  .main-nav { gap: 14px; }
  .main-nav a { font-size: 12px; }
  h1 { font-size: 49px; letter-spacing: -2.8px; }
  .hero-lede { font-size: 17px; }
  .home-hero, .support-hero { padding: 58px 0 70px; }
  .timer-card { padding: 26px 20px; border-radius: 34px; }
  .reveal-circle { width: 190px; height: 190px; }
  .quick-links, .faq-section { padding: 70px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .legal-hero { padding: 58px 0 48px; }
  .legal-content { padding-top: 42px; }
}
