@font-face {
  font-family: "Jetbrains Mono";
  src: url("https://cdn.prod.website-files.com/68dc970bd6e945ea3fb0f426/68dc9f0578a9a4165ddd5365_JetBrainsMono-Regular.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jetbrains Mono";
  src: url("https://fonts.gstatic.com/s/jetbrainsmono/v24/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8L6tTOlOVk6OThhvA.woff2")
    format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("https://cdn.prod.website-files.com/68dc970bd6e945ea3fb0f426/68dca01244c8d07e51654fb4_HelveticaNeue-Roman.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("https://cdn.prod.website-files.com/68dc970bd6e945ea3fb0f426/68dca0121b8f11f91cc5aee8_HelveticaNeue-Medium.woff2")
    format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("https://cdn.prod.website-files.com/68dc970bd6e945ea3fb0f426/68ff25b2b5af4c5f7f9a9f42_HelveticaNeue-Bold.woff2")
    format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg: #eeeee8;
  --bg-strong: #ffffff;
  --ink: #2b2b26;
  --muted: #666666;
  --line: #24241d1a;
  --accent: #9747ff;
  --accent-strong: #7a36d9;
  --max-width: 980px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background-color: var(--bg);
  letter-spacing: -0.01em;
}

::selection {
  background: rgba(151, 71, 255, 0.2);
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.site-header .container,
.site-footer .container {
  max-width: 1400px;
  padding: 0 clamp(8px, 2.5vw, 40px);
}

.site-header {
  padding: 28px 0 0;
  color: #434343;
  font-weight: 700;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.brand-name {
  font-family: "Jetbrains Mono", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 1;
}

.nav-link {
  font-family: "Jetbrains Mono", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  border-color: currentColor;
}

.site-main {
  padding: 72px 0 90px;
  flex: 1;
}

.home-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content {
  max-width: 820px;
}

.hero-content {
  margin-top: 0;
  text-align: left;
}

.hero-content p:first-of-type {
  margin-bottom: 2.4rem;
}

.header-rule {
  margin: 16px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
}

h1 {
  margin: 0 0 1.5rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 5vw + 1rem, 5rem);
  line-height: 1;
  letter-spacing: -0.01em;
}

.hero-title {
  font-size: 1.35rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #4d4d4d;
  font-weight: 500;
}

h2 {
  margin: 2.2rem 0 0.8rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 3vw + 0.8rem, 4rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

h3 {
  margin: 1.8rem 0 0.6rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 2vw + 0.6rem, 3rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.policy-meta {
  margin: -0.6rem 0 2rem;
  font-size: 1rem;
  color: var(--muted);
}

p {
  margin: 0 0 1.5rem;
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 400;
}

p:last-of-type {
  margin-bottom: 2.4rem;
}

.policy-compact h1 {
  margin-bottom: 0.8rem;
  font-size: 4rem;
  line-height: 1.1;
  color: #4d4d4d;
  font-weight: 400;
}

.policy-compact h2 {
  margin: 2rem 0 0.7rem;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #4d4d4d;
}

.policy-compact h3 {
  margin: 1.6rem 0 0.5rem;
  font-size: 1.1rem;
  line-height: 1.2;
  color: #4d4d4d;
}

.policy-compact p,
.policy-compact ul,
.policy-compact ol,
.policy-compact address {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--muted);
}

.policy-compact p.policy-meta {
  margin: 0 0 2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.policy-compact p:last-of-type {
  margin-bottom: 1.6rem;
}

.policy-compact ul,
.policy-compact ol {
  padding-left: 1.2rem;
}

.policy-compact li {
  margin-bottom: 0.5rem;
}

ul,
ol {
  margin: 0 0 1.5rem;
  padding-left: 1.4rem;
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1.55;
}

li {
  margin-bottom: 0.65rem;
}

li:last-child {
  margin-bottom: 0;
}

address {
  margin: 0 0 1.5rem;
  font-style: normal;
  color: var(--muted);
}

.site-footer {
  padding: 10px 0 14px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: rgba(29, 29, 23, 0.55);
  font-family: "Jetbrains Mono", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 28px;
}

.footer-links {
  display: inline-flex;
  gap: 16px;
}

.footer-links a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  border-color: currentColor;
}

.reveal {
  animation: fadeUp 0.7s var(--ease) both;
}

.reveal.delay-1 {
  animation-delay: 0.08s;
}

.reveal.delay-2 {
  animation-delay: 0.18s;
}

.reveal.delay-3 {
  animation-delay: 0.28s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .site-header .container,
  .site-footer .container {
    padding: 0 16px;
  }

  .site-header {
    padding: 20px 0 0;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .brand-name {
    font-size: 1.5rem;
  }

  .nav-link {
    font-size: 0.8rem;
  }

  .site-main {
    padding: 32px 0 40px;
  }

  .home-main {
    justify-content: flex-start;
  }

  .content {
    max-width: 100%;
  }

  .hero-content {
    margin-top: 1.25rem;
  }

  .hero-content p:first-of-type {
    margin-bottom: 1.6rem;
  }

  .hero-title {
    font-size: 1.15rem;
  }

  p,
  ul,
  ol {
    font-size: 1.15rem;
    line-height: 1.5;
  }

  .policy-compact h1 {
    font-size: 2.6rem;
  }

  .policy-compact h2 {
    font-size: 1.1rem;
    margin-top: 1.6rem;
  }

  .policy-compact h3 {
    font-size: 1rem;
  }

  .policy-compact p,
  .policy-compact ul,
  .policy-compact ol,
  .policy-compact address {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .policy-compact p.policy-meta {
    font-size: 0.7rem;
    margin-bottom: 1.4rem;
  }

  .header-rule {
    margin-top: 12px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    min-height: 0;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 10px;
  }

  .site-footer {
    padding: 6px 0 8px;
    font-size: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
  }
}
