:root {
  --bg: #F3F2EF;
  --surface: #FFFFFF;
  --ink: #1C1C1F;
  --muted: #55555D;
  --line: rgba(60, 60, 67, 0.14);
  --accent: #C4531F;
  --accent-ink: #9A3E14;
  --accent-soft: #FBE4D6;
  --blue: #1E4AA8;
  --blue-soft: #DEE7FB;
  --radius: 22px;
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111113;
    --surface: #1C1C1F;
    --ink: #F2F2F4;
    --muted: #A8A8B0;
    --line: rgba(255, 255, 255, 0.12);
    --accent: #F07A42;
    --accent-ink: #FFB48C;
    --accent-soft: #3A2217;
    --blue: #9DB8F5;
    --blue-soft: #1B2640;
  }
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", Figtree, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}
a { color: var(--accent-ink); text-underline-offset: 3px; }
a:hover { color: var(--accent); }
.wrap { max-width: 760px; margin: 0 auto; padding: 0 20px; }

/* header */
.top { padding: 20px 0; }
.top .wrap { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-family: Figtree, -apple-system, system-ui, sans-serif; font-weight: 800; font-size: 20px; letter-spacing: -0.02em; }
.brand img { width: 36px; height: 36px; border-radius: 9px; box-shadow: 0 2px 8px rgba(0,0,0,0.12); }
.nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; justify-content: flex-end; }
.nav a { text-decoration: none; color: var(--muted); font-weight: 600; font-size: 15px; padding: 10px 12px; border-radius: 999px; }
.nav a:hover { color: var(--ink); background: var(--surface); }
.nav a[aria-current="page"] { color: var(--ink); background: var(--surface); }
.nav .lang { border: 1px solid var(--line); }

/* hero */
.hero { padding: 40px 0 28px; }
.eyebrow { display: inline-block; font-size: 14px; font-weight: 700; color: var(--accent-ink); background: var(--accent-soft); padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; }
h1 { font-family: Figtree, -apple-system, system-ui, sans-serif; font-size: clamp(34px, 7vw, 52px); line-height: 1.05; font-weight: 900; letter-spacing: -0.035em; margin: 0 0 14px; }
.lede { font-size: 19px; color: var(--muted); margin: 0; max-width: 600px; }
.updated { font-size: 15px; color: var(--muted); margin: 0; }

/* cards */
.card { background: var(--surface); border-radius: var(--radius); padding: 24px; border: 1px solid var(--line); }
.contact { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin: 8px 0 40px; }
.contact p { margin: 0; }
.contact .label { font-size: 14px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.contact .email { font-size: 20px; font-weight: 700; word-break: break-all; }
.btn { display: inline-flex; align-items: center; gap: 8px; min-height: 48px; padding: 0 22px; border-radius: 999px; background: var(--accent); color: #FFFFFF; text-decoration: none; font-weight: 700; }
.btn:hover { color: #FFFFFF; filter: brightness(1.06); }
@media (prefers-color-scheme: dark) { .btn { background: #C4531F; } }

h2 { font-family: Figtree, -apple-system, system-ui, sans-serif; font-size: 26px; line-height: 1.2; font-weight: 800; letter-spacing: -0.02em; margin: 40px 0 16px; }
h3 { font-size: 19px; line-height: 1.3; margin: 0 0 6px; }

/* faq */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; }
.faq summary { cursor: pointer; list-style: none; padding: 18px 52px 18px 20px; font-weight: 700; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 22px; top: 50%; width: 10px; height: 10px; border-right: 2.5px solid var(--muted); border-bottom: 2.5px solid var(--muted); transform: translateY(-70%) rotate(45deg); transition: transform 0.2s; }
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq summary:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 18px; }
.faq .answer { padding: 0 20px 18px; color: var(--muted); }
.faq .answer p { margin: 0; }

/* privacy */
.summary { background: var(--blue-soft); border: 0; }
.summary h2 { margin-top: 0; color: var(--blue); font-size: 20px; }
.summary ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.summary li { position: relative; padding-left: 30px; font-weight: 600; }
.summary li::before { content: ""; position: absolute; left: 4px; top: 7px; width: 12px; height: 7px; border-left: 2.5px solid var(--blue); border-bottom: 2.5px solid var(--blue); transform: rotate(-45deg); }
.policy section { padding: 22px 0; border-bottom: 1px solid var(--line); }
.policy section:last-child { border-bottom: 0; }
.policy h2 { font-size: 21px; margin: 0 0 8px; }
.policy p { margin: 0 0 10px; color: var(--ink); }
.policy p:last-child { margin-bottom: 0; }

/* home */
.links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 8px 0 40px; }
@media (max-width: 560px) { .links { grid-template-columns: 1fr; } }
.links a { display: block; text-decoration: none; color: var(--ink); }
.links a:hover { color: var(--ink); border-color: var(--accent); }
.links .card p { margin: 0; color: var(--muted); font-size: 15px; }
.links .card h3 { margin-bottom: 6px; }

/* footer */
.foot { padding: 40px 0 48px; color: var(--muted); font-size: 14px; }
.foot .wrap { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 24px; }
.foot a { color: var(--muted); }
@media (max-width: 420px) {
  .brand span, .brand { font-size: 18px; }
  .nav { gap: 2px; }
  .nav a { padding: 8px 9px; font-size: 14px; }
}
