:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --text-muted: #5c5c5c;
  --border: #e8e8e8;
  --accent: #0d47a1;
  --accent-soft: rgba(13, 71, 161, 0.08);
  --right-bg: #fafafa;
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Syne", var(--font-sans);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  overflow-wrap: break-word;
}

.page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  overflow-x: hidden;
}

@media (min-width: 900px) {
  .page {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    min-height: 100vh;
  }
}

.left {
  min-width: 0;
  padding: clamp(1.75rem, 4vw, 3.5rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 42rem;
  overflow-x: hidden;
}

.left header {
  min-width: 0;
  max-width: 100%;
}

@media (min-width: 900px) {
  .left {
    max-width: none;
    border-right: 1px solid var(--border);
  }
}

.right {
  min-width: 0;
  background: var(--right-bg);
  position: relative;
  min-height: 12rem;
  padding: clamp(1.75rem, 4vw, 3.5rem) clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  overflow-x: hidden;
}

@media (min-width: 900px) {
  .right {
    min-height: 0;
  }
}

.right__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--border) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.55;
  pointer-events: none;
}

.right__content {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: 100%;
  max-width: 28rem;
}

@media (min-width: 900px) {
  .right__content {
    max-width: none;
  }
}

.right__intro {
  padding-bottom: 0.25rem;
}

.right__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.15;
  margin: 0;
  max-width: 20ch;
}

.right__sub {
  margin: 0.65rem 0 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 32ch;
  line-height: 1.45;
}

.right .section {
  margin-top: 2rem;
}

.right .section:first-of-type {
  margin-top: 2.25rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
  color: var(--text);
  overflow-wrap: anywhere;
}

.logo .dot {
  color: var(--accent);
}

.tagline {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
  margin: 0.75rem 0 0;
  letter-spacing: -0.02em;
}

.lede {
  margin: 1.25rem 0 0;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 36rem;
}

.section {
  margin-top: 2.25rem;
}

.section__title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.85rem;
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.list li:last-child {
  border-bottom: none;
}

.list a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.list a:hover {
  color: var(--accent);
  border-bottom-color: rgba(13, 71, 161, 0.35);
}

.list a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.lede a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(13, 71, 161, 0.35);
}

.lede a:hover {
  border-bottom-color: var(--accent);
}

.lede a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.card {
  margin-top: 2rem;
  padding: 1.25rem min(1.35rem, 4vw);
  background: var(--accent-soft);
  border-radius: 8px;
  border: 1px solid rgba(13, 71, 161, 0.12);
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
}

.card__title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.card dl {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.35rem 0.75rem;
  font-size: 0.9375rem;
}

.card dt {
  margin: 0;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.8125rem;
  min-width: 0;
  overflow-wrap: anywhere;
}

.card dd {
  margin: 0;
  color: var(--text);
  min-width: 0;
  overflow-wrap: anywhere;
}

.card__contact {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(13, 71, 161, 0.15);
  min-width: 0;
}

.card__contact-label {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.card__contact a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
  display: inline-block;
  max-width: 100%;
}

.card__contact a:hover {
  text-decoration: underline;
}

.footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-muted);
}
