@font-face {
  font-family: 'Geist';
  src: url('https://d2xsxph8kpxj0f.cloudfront.net/310519663370063462/ThMFZacjNcqAVYF3jmcy3R/Geist-Variable_20a6b454.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Geist Mono';
  src: url('https://d2xsxph8kpxj0f.cloudfront.net/310519663370063462/ThMFZacjNcqAVYF3jmcy3R/GeistMono-Variable_ff5577e3.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #fafaf8;
  --ink: #050505;
  --muted: #696965;
  --soft: #f1f1ed;
  --line: #deded8;
  --blue: #0057ff;
  --blue-dark: #0047dd;
  --dark: #060b16;
  --green: #5ee0a8;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 4rem;
}
.static-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(250, 250, 248, 0.92);
  border-bottom: 1px solid rgba(222, 222, 216, 0.72);
  backdrop-filter: blur(18px);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  max-width: 1280px;
  height: 60px;
  margin: 0 auto;
  padding: 0 4rem;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo-s { width: 28px; height: 28px; border-radius: 7px; }
.nav-brand { font-size: 14px; font-weight: 760; letter-spacing: 0.06em; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 28px;
}
.nav-links a,
.nav-signin {
  color: var(--muted);
  font-size: 0.8125rem;
  text-decoration: none;
}
.nav-links a:hover,
.nav-signin:hover { color: var(--ink); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.region-switcher {
  position: relative;
  margin-left: 8px;
}
.region-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.72rem;
  cursor: pointer;
}
.region-btn strong {
  color: var(--ink);
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}
.region-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 120;
  min-width: 220px;
  max-height: 420px;
  overflow-y: auto;
  margin-top: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.region-menu.open { display: grid; gap: 2px; }
.region-menu button {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.78rem;
  text-align: left;
  cursor: pointer;
}
.region-menu button strong {
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}
.region-menu button span {
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.region-menu button:hover,
.region-menu button.active { background: var(--soft); }
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 1rem;
  border: 1px solid var(--blue);
  border-radius: 4px;
  background: var(--blue);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}
.page-hero {
  padding: 150px 0 72px;
  border-bottom: 1px solid var(--line);
}
.label {
  margin: 0 0 18px;
  color: var(--blue);
  font-family: 'Geist Mono', monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
}
h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(3.1rem, 8vw, 6.5rem);
  font-weight: 820;
  line-height: 0.96;
}
.hero-lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.23rem;
  line-height: 1.66;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.section {
  padding: 78px 0;
  border-bottom: 1px solid var(--line);
}
.section h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.02;
}
.section-lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.72;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.card {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.card.dark {
  background: var(--dark);
  color: #fff;
}
.card .kicker {
  color: var(--blue);
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}
.card.dark .kicker { color: var(--green); }
.card h3 {
  margin: 18px 0 12px;
  font-size: 1.55rem;
  line-height: 1.16;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}
.card.dark p { color: rgba(255, 255, 255, 0.7); }
.table-wrap {
  margin-top: 36px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}
th,
td {
  padding: 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
th {
  color: var(--muted);
  font-family: 'Geist Mono', monospace;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}
td { color: var(--muted); line-height: 1.5; }
td strong { color: var(--ink); }
.simy-col {
  background: #f5f7ff;
  color: var(--ink);
  font-weight: 700;
}
.quote-band {
  padding: 76px 0;
  background: var(--dark);
  color: #fff;
}
.quote-band p {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.3rem, 5.2vw, 4.8rem);
  font-weight: 800;
  line-height: 1.02;
}
.article {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 4rem;
}
.article h2 {
  margin: 46px 0 16px;
  font-size: 2rem;
  line-height: 1.14;
}
.article p,
.article li {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.82;
}
.article p { margin: 0 0 18px; }
.article ul { padding-left: 1.2rem; }
.press-meta {
  color: var(--muted);
  font-family: 'Geist Mono', monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.static-footer {
  padding: 56px 0 36px;
  background: #050505;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}
.footer-brand-line {
  font-size: 1.45rem;
  font-weight: 780;
  line-height: 1.08;
}
.footer-brand-copy {
  max-width: 300px;
  margin-top: 14px;
  color: #8d8d88;
  font-size: 0.86rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-title {
  margin-bottom: 4px;
  color: #6a6a66;
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}
.footer-col a {
  color: #aaa;
  font-size: 0.86rem;
  text-decoration: none;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid #1a1a1a;
  color: #555;
  font-size: 0.76rem;
}
@media (max-width: 900px) {
  .container,
  .nav-inner,
  .article { padding-left: 1.25rem; padding-right: 1.25rem; }
  .nav-inner { height: 56px; }
  .nav-links { display: none; }
  .nav-right { display: none; }
  .nav-inner > .lang-switcher { margin-left: auto; }
  .page-hero { padding: 106px 0 52px; }
  h1 { font-size: clamp(2.55rem, 14vw, 4rem); }
  .hero-lead { font-size: 1rem; }
  .grid,
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .card { min-height: auto; }
  .quote-band { padding: 58px 0; }
  .quote-band p { font-size: clamp(2.05rem, 10vw, 3rem); }
}


/* Legal pages */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 130px 4rem 84px;
}
.policy-content, .terms-content {
  padding: 0;
}
.policy-header, .terms-header {
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.policy-header h1, .terms-header h1 {
  margin: 0 0 14px;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 820;
  line-height: 0.98;
  letter-spacing: 0;
}
.policy-meta, .terms-meta {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}
.policy-body h2, .terms-body h2 {
  margin: 46px 0 14px;
  font-size: 1.35rem;
  line-height: 1.25;
}
.policy-body h3, .terms-body h3 {
  margin: 28px 0 10px;
  color: var(--muted);
  font-size: 1rem;
}
.policy-body p, .terms-body p,
.policy-body li, .terms-body li {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.78;
}
.policy-body p, .terms-body p,
.policy-body ul, .terms-body ul,
.policy-body ol, .terms-body ol {
  margin: 0 0 16px;
}
.policy-body ul, .terms-body ul,
.policy-body ol, .terms-body ol {
  padding-left: 1.25rem;
}
.policy-body strong, .terms-body strong {
  color: var(--ink);
}
.policy-body a, .terms-body a {
  color: var(--blue);
  text-decoration: none;
}
.important-note, .disclaimer-block {
  margin: 20px 0;
  padding: 16px 18px;
  border-left: 3px solid var(--blue);
  background: #fff;
}
.disclaimer-block {
  border-left-color: #e5484d;
}
@media (max-width: 900px) {
  .legal-content { padding: 100px 1.25rem 60px; }
}
