/* LocalCalendar marketing microsite.
   Tokens, type scale and spacing come from "Website V1 - Implementation Handoff" in the
   Claude Design project. Do not invent values here — read the handoff. */

/* Inter, self-hosted. Three subsets cover the eleven policy languages: latin, latin-ext
   (hr, cs, sl, sv, fi, nb, pt, de, nl) and greek (el). No third-party font request is made
   from any page — this site publishes a privacy policy, so it makes no outbound calls at all.
   Inter is licensed under the SIL Open Font License 1.1; see fonts/OFL.txt. */
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(fonts/inter-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(fonts/inter-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
    U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(fonts/inter-greek.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

:root {
  --blue: #2F6FED;
  --blue-strong: #1B54C7;
  --blue-deep: #1B4FBF;
  --blue-tint: #E3ECFD;
  --red: #C62F26;

  --ink: #11141A;
  --body: #2B3240;
  --secondary: #4A5262;
  --muted: #6B7382;
  --muted-soft: #7E8691;
  --muted-faint: #8A92A0;

  --surface: #FFFFFF;
  --subtle: #F7F9FB;
  --footer: #FAFBFC;

  --hairline: #E4E8ED;
  --hairline-soft: #EDF0F4;
  --hairline-faint: #F0F2F6;
  --hairline-header: #E9ECF1;
  --hover-fill: #F2F5F9;

  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --radius-xl: 18px;

  --content: 1100px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 27px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--blue-strong); }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 6px; }

/* Skip link — visible only once focused. */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10;
  background: var(--surface);
  color: var(--blue);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.skip:focus { left: 12px; top: 12px; }

.wrap { max-width: var(--content); margin: 0 auto; padding-left: 20px; padding-right: 20px; }

/* ---- Header ------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--hairline-header);
}
.site-header .wrap {
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 6px 6px 0;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -.01em;
}
.wordmark:hover { color: var(--ink); }

.site-nav { display: flex; flex-wrap: wrap; gap: 2px; margin-left: auto; }
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: #3A4250;
  text-decoration: none;
}
.site-nav a:hover { background: var(--hover-fill); color: #3A4250; }
.site-nav a[aria-current='page'] { color: var(--blue); font-weight: 600; }

/* ---- Shared blocks ------------------------------------------------------ */

.eyebrow {
  margin: 0 0 22px;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.link-cards { display: flex; flex-wrap: wrap; gap: 12px; }
.link-card {
  flex: 1 1 220px;
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  background: var(--surface);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink);
  text-decoration: none;
}
.link-card:hover { border-color: var(--blue); color: var(--blue); }

/* The only decorative shape in the design: a 6px dot. */
.dots { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.dots li { display: flex; gap: 12px; font-size: 16px; line-height: 24px; color: var(--body); }
.dots li::before {
  content: '';
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--red);
  margin-top: 9px;
}

/* ---- Home --------------------------------------------------------------- */

.hero {
  padding-top: 64px;
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.hero h1 {
  margin: 0;
  font-weight: 600;
  font-size: 38px;
  line-height: 1.14;
  letter-spacing: -.03em;
  max-width: 16ch;
  text-wrap: balance;
}
.hero p {
  margin: 0;
  font-size: 18px;
  line-height: 29px;
  color: var(--secondary);
  max-width: 56ch;
  text-wrap: pretty;
}

/* Shown until the store listings are live; replaced by the two official store badges. */
.coming-soon {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius-md);
  background: var(--blue-tint);
  color: var(--blue-deep);
  font-weight: 600;
  font-size: 15px;
}

.benefits { padding-top: 8px; padding-bottom: 56px; }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}
.benefit {
  background: var(--subtle);
  border-radius: var(--radius-xl);
  padding: 22px;
}
.benefit h3 { margin: 0 0 8px; font-weight: 600; font-size: 17px; line-height: 24px; }
.benefit p {
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  color: var(--secondary);
  text-wrap: pretty;
}

.countries { border-top: 1px solid var(--hairline-soft); border-bottom: 1px solid var(--hairline-soft); }
.countries .wrap { padding-top: 44px; padding-bottom: 44px; }
.countries .eyebrow { margin-bottom: 6px; }
.countries .lede {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 24px;
  color: var(--secondary);
  max-width: 60ch;
}
.country-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2px 24px;
}
.country-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline-faint);
  font-size: 15px;
  line-height: 22px;
}

.statement { padding-top: 48px; padding-bottom: 48px; }
.statement p {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 31px;
  color: var(--body);
  max-width: 34ch;
  text-wrap: pretty;
}

.home-links { border-top: 1px solid var(--hairline-soft); }
.home-links .wrap { padding-top: 40px; padding-bottom: 8px; }

/* ---- Legal pages -------------------------------------------------------- */

.legal { padding-top: 40px; padding-bottom: 24px; }
.legal-layout { display: flex; flex-wrap: wrap; gap: 40px 56px; align-items: flex-start; }

/* The table of contents is a sticky 210px column beside the article, and wraps above it on
   narrow screens. Sticky is dropped once it wraps: a full-width sticky block on its own flex
   line stays pinned over the article and covers the text. The breakpoint is where the two
   columns actually stop fitting - 210 + 56 gap + 460 + 40 page padding. */
.legal-toc { flex: 0 1 210px; min-width: 0; }
@media (min-width: 767px) {
  .legal-toc { position: sticky; top: 84px; }
}
.legal-toc .back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 500;
  font-size: 15px;
  color: var(--blue);
  text-decoration: none;
}
.legal-toc .back:hover { text-decoration: underline; }
.legal-toc h2 {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-faint);
  margin: 12px 0 10px;
}
.legal-toc ol, .legal-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 26px;
  color: var(--secondary);
}
.legal-toc a { color: var(--secondary); text-decoration: none; }
.legal-toc a:hover { color: var(--blue); text-decoration: underline; }

.legal-article { flex: 1 1 460px; min-width: 0; max-width: 70ch; }
.legal-article h1 {
  margin: 0 0 8px;
  font-weight: 600;
  font-size: 34px;
  line-height: 1.16;
  letter-spacing: -.025em;
}
.legal-article .updated { margin: 0 0 32px; font-size: 14px; line-height: 22px; color: var(--muted); }
.legal-article section { padding: 0 0 30px; }
.legal-article h2 { margin: 0 0 8px; font-weight: 600; font-size: 19px; line-height: 26px; }
.legal-article h3 { margin: 0 0 8px; font-weight: 600; font-size: 17px; line-height: 25px; }
.legal-article p { margin: 0 0 14px; font-size: 16px; line-height: 27px; color: var(--body); text-wrap: pretty; }
.legal-article p:last-child { margin-bottom: 0; }
.legal-article ul.dots { margin: 14px 0 0; }
.legal-article li { line-height: 26px; }

/* Language sections on the privacy policy.
   scroll-margin-top clears the sticky header, so a #language anchor lands on the heading
   rather than behind the header. */
.lang-section { padding-top: 8px; scroll-margin-top: 84px; }
.legal-article section[id] { scroll-margin-top: 84px; }
.lang-section + .lang-section { border-top: 1px solid var(--hairline-soft); margin-top: 10px; padding-top: 38px; }
/* Eyebrow sits above the localized title, matching the eyebrow/heading pair used elsewhere. */
.lang-section .lang-native {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.lang-section h2.lang-title {
  margin: 0 0 20px;
  font-weight: 600;
  font-size: 26px;
  line-height: 32px;
  letter-spacing: -.02em;
}

/* Placeholder notice — pre-launch scaffolding, removed with the real Terms copy. */
.layout-only {
  margin: 0 0 24px;
  background: #FFF4DC;
  border-left: 3px solid #C79A3C;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #5C4310;
  text-wrap: pretty;
}

/* ---- Support ------------------------------------------------------------ */

.support { max-width: 820px; margin: 0 auto; padding: 48px 20px 24px; }
.support h1 {
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 34px;
  line-height: 1.16;
  letter-spacing: -.025em;
}
.support .lede {
  margin: 0 0 36px;
  font-size: 18px;
  line-height: 29px;
  color: var(--secondary);
  max-width: 56ch;
  text-wrap: pretty;
}
.panel-filled {
  background: var(--subtle);
  border-radius: var(--radius-xl);
  padding: 24px;
  margin-bottom: 14px;
}
.panel-outlined {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  padding: 24px;
  margin-bottom: 40px;
}
.panel-filled h2, .panel-outlined h2 { margin: 0 0 8px; font-weight: 600; font-size: 20px; line-height: 27px; }
.panel-filled p, .panel-outlined p { margin: 0 0 16px; font-size: 16px; line-height: 26px; color: var(--secondary); text-wrap: pretty; }
.panel-filled .dots { margin: 0 0 18px; }
.panel-outlined .contact { margin: 0; font-size: 17px; line-height: 26px; font-weight: 600; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: var(--radius-md);
  background: var(--blue);
  color: var(--surface);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.btn-primary:hover { background: var(--blue-strong); color: var(--surface); }

.faq { margin-bottom: 40px; }
.faq .eyebrow { margin-bottom: 6px; }
.faq-item { padding: 18px 0; border-bottom: 1px solid var(--hairline-faint); }
.faq-item:last-child { border-bottom: 0; }
.faq-item h3 { margin: 0 0 4px; font-weight: 600; font-size: 16px; line-height: 24px; }
.faq-item p { margin: 0; font-size: 16px; line-height: 25px; color: var(--secondary); }

/* ---- Footer ------------------------------------------------------------- */

.site-footer { margin-top: 56px; border-top: 1px solid var(--hairline-soft); background: var(--footer); }
.site-footer .wrap {
  padding-top: 32px;
  padding-bottom: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px 40px;
  align-items: flex-start;
}
.footer-identity { flex: 1 1 240px; min-width: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-identity .mark { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; }
.footer-identity p { margin: 0; font-size: 13px; line-height: 21px; color: var(--muted-soft); }
.footer-identity a { color: var(--muted-soft); }
.footer-identity a:hover { color: var(--blue); }
.footer-nav { flex: 0 1 auto; display: flex; flex-wrap: wrap; gap: 4px 8px; }
.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 10px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  color: var(--secondary);
  text-decoration: none;
}
.footer-nav a:hover { color: var(--blue); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
