:root {
  --bg: #ffffff;
  --fg: #000000;
  --muted: #666666;
  --border: #e0e0e0;
  --card: #f9f9f9;
  --hover: #f0f0f0;
  --accent: #132a1f;
  --accent-soft: rgba(19, 42, 31, 0.08);
  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, monospace;
}

* {
  border-radius: 0 !important;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(19, 42, 31, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), transparent 10%),
    var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 85%);
  pointer-events: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font-family: inherit;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--border);
  padding: 0.6rem 0.75rem;
  width: 100%;
  font-size: 0.9rem;
  transition: border-color 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--fg);
}

textarea {
  resize: vertical;
  min-height: 90px;
}

label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--muted);
}

.page-shell {
  position: relative;
}

.wrap {
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
}

.site-header {
  border-bottom: 1px solid var(--border);
}

.brand,
.site-nav a,
.site-footer p {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.site-nav {
  display: inline-flex;
  gap: 1.25rem;
}

.site-nav a,
.site-footer a {
  position: relative;
}

.site-nav a::after,
.site-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 1px;
  background: var(--fg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-footer a:hover::after {
  transform: scaleX(1);
}

.hero {
  display: block;
  min-height: calc(100vh - 110px);
  padding: 7rem 0 4rem;
}

.hero-copy {
  max-width: 620px;
}

.hero-text {
  font-size: 1.05rem;
  max-width: 42rem;
  margin-bottom: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.intro-block {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  max-width: 40rem;
}

.intro-text {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.link-list {
  display: grid;
  gap: 0.5rem;
}

.link-list a {
  width: fit-content;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.2rem;
}

.link-list a:hover {
  border-color: var(--fg);
}

.section-heading {
  margin-bottom: 1.75rem;
}

.privacy {
  padding: 1rem 0 4rem;
}

.policy-grid {
  display: grid;
  gap: 1rem;
}

.policy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-content {
  padding: 3rem 0 4rem;
}

.privacy-intro {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  background: var(--fg);
  color: var(--bg);
  border: 1px solid var(--fg);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn:hover {
  background: var(--bg);
  color: var(--fg);
}

.btn-ghost {
  background: var(--bg);
  color: var(--fg);
}

.btn-ghost:hover {
  background: var(--fg);
  color: var(--bg);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-sm {
  padding: 0.5rem 0.75rem;
  font-size: 0.7rem;
}

.badge {
  display: inline-block;
  border: 1px solid var(--fg);
  padding: 0.2rem 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-paid {
  background: var(--fg);
  color: var(--bg);
}

.card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(249, 249, 249, 0.98));
  padding: 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.card:hover {
  border-color: var(--fg);
  transform: translateY(-3px);
}

h1,
h2,
h3 {
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.7rem, 7vw, 5.2rem);
  line-height: 0.95;
  max-width: 10ch;
  margin: 1rem 0;
}

h2 {
  font-size: 1.6rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

p {
  margin-top: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

th,
td {
  text-align: left;
  padding: 0.85rem 0.75rem;
  border-bottom: 1px solid var(--border);
}

th {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

tbody tr:hover {
  background: var(--hover);
}

.muted {
  color: var(--muted);
}

.mono {
  font-family: var(--font-mono);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.5s ease-out both;
}

[data-reveal] {
  opacity: 0;
}

[data-reveal].is-visible {
  animation: fadeIn 0.6s ease-out both;
}

@media (max-width: 900px) {
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }
}

@media (max-width: 600px) {
  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    gap: 0.75rem;
  }

  .card {
    padding: 1.4rem;
  }

  h1 {
    font-size: clamp(2.2rem, 13vw, 3rem);
  }
}