@import url("/assets/fonts.css");

:root {
  --ink: #101018;
  --violet: #6657ff;
  --sky: #5ed8ff;
  --blue: #168fbd;
  --sky-soft: #dff7ff;
  --lime: #c9ff5b;
  --coral: #ff6b66;
  --paper: #6657ff;
}

* { box-sizing: border-box; }
html { background: var(--paper); color: white; font-family: "Fredoka", ui-rounded, system-ui, sans-serif; }
body { min-height: 100vh; margin: 0; overflow-x: hidden; background: var(--violet); }
a { color: inherit; }
.ambient { display: none; }
.site-header, main, footer { position: relative; z-index: 1; }
.site-header { width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: 28px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: white; text-decoration: none; font-size: 12px; font-weight: 950; letter-spacing: normal; white-space: nowrap; }
.brand-mark { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: white; color: var(--ink); font-size: 19px; letter-spacing: normal; padding-right: 2px; }
.language-picker { max-width: 600px; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 5px; }
.language-picker a { padding: 8px 9px; border-radius: 999px; color: rgba(255,255,255,.56); text-decoration: none; font-size: 10px; font-weight: 900; }
.language-picker a:hover, .language-picker a[aria-current="true"] { background: white; color: var(--ink); }
main { width: min(920px, calc(100% - 40px)); margin: 58px auto 100px; }
.draft-notice { margin-bottom: 28px; padding: 16px 20px; border-radius: 20px; background: var(--coral); color: var(--ink); font-size: 13px; font-weight: 750; }
.draft-notice strong { margin-right: 9px; text-transform: uppercase; letter-spacing: normal; }
.hero { max-width: 800px; padding: 34px 0 72px; }
.eyebrow { margin: 0 0 20px; color: rgba(255,255,255,.6); font-size: 12px; font-weight: 950; letter-spacing: normal; text-transform: uppercase; }
h1 { max-width: 760px; margin: 0; font-size: clamp(48px, 9vw, 92px); line-height: .95; letter-spacing: normal; }
.lead { max-width: 690px; margin: 30px 0 0; color: rgba(255,255,255,.72); font-size: clamp(18px, 3vw, 25px); line-height: 1.45; font-weight: 650; }
.updated { margin: 24px 0 0; color: rgba(255,255,255,.44); font-size: 11px; font-weight: 850; letter-spacing: normal; text-transform: uppercase; }
.content-grid { border-top: 2px solid rgba(255,255,255,.78); }
.content-section { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 48px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.section-number { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: white; color: var(--ink); font-size: 11px; font-weight: 950; }
.content-section:nth-child(3n+2) .section-number,
.content-section:nth-child(3n) .section-number { background: white; }
h2 { margin: 3px 0 19px; font-size: clamp(22px, 4vw, 32px); letter-spacing: normal; }
.content-section p, .content-section li { color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.72; font-weight: 560; }
.content-section p { margin: 0 0 15px; }
.content-section ul { margin: 14px 0 0; padding-left: 21px; }
.content-section li { margin: 8px 0; padding-left: 5px; }
.contact-panel { position: relative; overflow: hidden; margin-top: 70px; padding: 38px; border-radius: 38px; display: grid; grid-template-columns: 74px 1fr auto; align-items: center; gap: 25px; background: white; color: var(--ink); }
.contact-panel h2 { margin-bottom: 8px; }
.contact-panel p { margin: 0; color: rgba(16,16,24,.62); line-height: 1.5; }
.contact-bubble { display: grid; place-items: center; width: 70px; height: 70px; border-radius: 50%; background: var(--violet); color: white; font-size: 45px; font-weight: 500; }
.contact-button { display: grid; place-items: center; min-height: 50px; padding: 0 22px; border-radius: 25px; background: var(--ink); color: white; text-decoration: none; font-size: 12px; font-weight: 950; letter-spacing: normal; text-transform: uppercase; }
.contact-button.disabled { opacity: .45; cursor: not-allowed; }
footer { width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: 34px 0 48px; border-top: 1px solid rgba(255,255,255,.2); }
footer nav { display: flex; flex-wrap: wrap; gap: 12px 24px; }
footer a { color: white; font-size: 12px; font-weight: 850; text-decoration: none; }
footer p { margin: 25px 0 0; color: rgba(255,255,255,.44); font-size: 11px; line-height: 1.5; }

@media (max-width: 720px) {
  .site-header { align-items: flex-start; }
  .language-picker { max-width: 190px; }
  main { margin-top: 25px; }
  .hero { padding-bottom: 52px; }
  .content-section { grid-template-columns: 40px 1fr; gap: 10px; padding: 36px 0; }
  .contact-panel { grid-template-columns: 58px 1fr; padding: 26px; border-radius: 30px; }
  .contact-bubble { width: 54px; height: 54px; font-size: 36px; }
  .contact-button { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: no-preference) {
  .brand-mark, .section-number { transition: transform .25s cubic-bezier(.2,.9,.25,1.25); }
  .brand:hover .brand-mark, .content-section:hover .section-number { transform: scale(1.09) rotate(-3deg); }
}
