* { box-sizing: border-box; }
body { margin: 0; min-height: 100svh; display: flex; flex-direction: column; font-family: var(--brand-body-font); color: var(--brand-ink); background: var(--brand-white); }
h1, h2 { font-family: var(--brand-display-font); margin: 0; }
p { color: var(--brand-text); line-height: 1.65; }
a { color: var(--brand-blue-deep); text-underline-offset: 4px; }
a:focus-visible { outline: 3px solid var(--brand-blue-deep); outline-offset: 4px; }
.skip-link { position: absolute; top: -100px; left: 16px; padding: 12px; background: white; }
.skip-link:focus { top: 12px; }
header { border-bottom: 1px solid var(--brand-line); }
.header-inner, .footer-inner { max-width: 1248px; margin: auto; padding: 18px 32px; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.header-inner img { display: block; max-width: 100%; height: auto; }
nav { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 16px; }
nav a { display: inline-flex; align-items: center; min-height: 44px; font-size: 14px; }
[data-language] { justify-content: center; min-width: 44px; border-radius: 6px; text-decoration: none; }
[data-language][aria-current] { background: var(--brand-blue-tint); font-weight: 700; }
main { flex: 1; display: grid; align-items: center; background: var(--brand-canvas); }
.entry-layout { width: min(100%, 1152px); margin: auto; padding: 88px 32px; display: grid; grid-template-columns: minmax(0, 1fr) 420px; align-items: center; gap: 72px; }
h1 { font-size: clamp(36px, 4.4vw, 56px); letter-spacing: -.045em; line-height: 1.12; }
.intro { font-size: 19px; max-width: 46ch; margin-top: 24px; }
.product-link { display: inline-block; padding-block: 12px; }
.entry-card { min-width: 0; padding: 36px; border: 1px solid var(--brand-line); border-radius: 16px; background: var(--brand-white); box-shadow: 0 16px 48px #15375b12; }
h2 { font-size: 28px; letter-spacing: -.03em; }
.primary { display: flex; justify-content: center; align-items: center; min-height: 50px; padding: 12px 16px; margin-top: 28px; background: var(--brand-action); color: white; border-radius: 8px; font-weight: 650; text-decoration: none; }
.primary:hover { background: var(--brand-blue-deep); }
.invited { font-size: 13px; margin-bottom: 0; }
footer { border-top: 1px solid var(--brand-line); }
.footer-inner { flex-wrap: wrap; font-size: 13px; color: var(--brand-text); }
@media (max-width: 800px) {
  .entry-layout { grid-template-columns: minmax(0, 1fr); max-width: 560px; padding: 40px 24px; gap: 32px; }
  .header-inner, .footer-inner { padding-inline: 24px; }
  .header-inner img { width: 158px; }
  .header-inner nav { gap: 0; }
  .header-inner [data-login] { display: none; }
  .entry-card { padding: 28px; }
}
@media (max-width: 380px) {
  .entry-layout, .header-inner, .footer-inner { padding-inline: 16px; }
  .entry-card { padding: 24px; }
}
