:root {
  color-scheme: light;
  --ink: #102033;
  --muted: #67747c;
  --blue: #2563eb;
  --paper: #f8faf9;
  --line: #dce3e4;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--blue); outline-offset: 6px; }

.presence {
  min-height: 680px;
  height: 100svh;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 34px 48px;
  background: var(--paper);
}

#field { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; }
.presence-header { display: flex; align-items: center; justify-content: flex-end; min-height: 44px; }
.identity { align-self: center; justify-self: center; text-align: center; padding: 36px 0 58px; }
.identity h1 { margin: 0; white-space: nowrap; font-size: 88px; font-weight: 550; line-height: 1.12; letter-spacing: 0; }
.identity h1 span, .wordmark span { color: #657985; font-weight: 350; }
.signature { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 28px; }
.signature i { display: block; width: 29px; height: 1px; background: #b3c1c8; }
.signature b { display: block; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }
.presence-footer { display: flex; justify-content: space-between; align-items: center; gap: 20px; min-height: 44px; }
.copyright { color: var(--muted); font-size: 12px; }

.utility-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  border-bottom: 1px solid #a5b3bb;
  font-size: 14px;
  font-weight: 500;
}
.utility-link span { color: var(--blue); font-size: 19px; transition: transform .2s; }
.utility-link:hover { border-color: var(--blue); color: #1747b5; }
.utility-link:hover span { transform: translate(2px, -2px); }

.legal-page { min-height: 100svh; }
.legal-header, .legal-footer { width: min(920px, calc(100% - 48px)); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.legal-header { min-height: 92px; border-bottom: 1px solid var(--line); }
.wordmark { font-size: 21px; font-weight: 550; letter-spacing: -.03em; white-space: nowrap; }
.legal-main { width: min(760px, calc(100% - 48px)); margin: 0 auto; padding: 84px 0 110px; }
.legal-title { margin-bottom: 64px; }
.legal-title h1 { margin: 0; font-size: clamp(50px, 8vw, 78px); font-weight: 520; line-height: 1; letter-spacing: -.055em; }
.legal-title p { margin: 18px 0 0; color: var(--muted); font-size: 13px; }
.legal-main section { padding: 31px 0; border-top: 1px solid var(--line); }
.legal-main h2 { margin: 0 0 15px; font-size: 21px; font-weight: 620; letter-spacing: -.02em; }
.legal-main p, .legal-main li { color: #50636d; font-size: 15px; line-height: 1.75; }
.legal-main p { margin: 0 0 14px; }
.legal-main p:last-child { margin-bottom: 0; }
.legal-main ul { margin: 12px 0 0; padding-left: 21px; }
.legal-main li + li { margin-top: 8px; }
.legal-main a { color: #174fca; text-decoration: underline; text-underline-offset: 3px; }
.legal-footer { min-height: 112px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.legal-footer a { font-size: 13px; }
.legal-footer a:hover { color: var(--blue); }

@media (min-width: 1600px) {
  .identity h1 { font-size: 104px; }
}

@media (max-width: 760px) {
  .presence { min-height: 540px; padding: 24px; }
  .identity { padding-bottom: 44px; }
  .identity h1 { font-size: 56px; }
  .copyright { font-size: 11px; }
  .legal-header, .legal-footer, .legal-main { width: calc(100% - 40px); }
  .legal-main { padding: 62px 0 84px; }
  .legal-title { margin-bottom: 48px; }
}

@media (max-width: 420px) {
  .presence { padding: 20px; }
  .identity h1 { font-size: 44px; }
  .utility-link { gap: 12px; }
  .legal-header { min-height: 78px; }
  .legal-header .utility-link { min-height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
