@font-face {
  font-family: "DIN Pro";
  src: url("assets/fonts/DINPro-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DIN Pro";
  src: url("assets/fonts/DINPro-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DIN Pro";
  src: url("assets/fonts/DINPro-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg: #f5f5f5;
  --ink: #020202;
  --muted: #333333;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "DIN Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.modal-open {
  overflow: hidden;
}

.landing {
  min-height: 100vh;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(48px, 8vw, 96px);
}

.hero-content {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.logo {
  width: 140px;
  height: auto;
  margin-bottom: 10px;
}

h1 {
  font-weight: 500;
  letter-spacing: -0.011rem;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.tagline {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 700;
  color: rgba(2, 2, 2, 0.55);
  line-height: 1.1;
  margin-bottom: 8px;
}

.body-copy {
  font-size: clamp(1rem, 1.7vw, 1.1rem);
  line-height: 1.6;
  color: rgba(2, 2, 2, 0.7);
  font-weight: 400;
  letter-spacing: -0.005em;
  margin-bottom: 11px;
}

.cta {
  margin-top: 10px;
  align-self: flex-start;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  padding: 10px 20px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.cta:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
}

.modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6vh 4vw;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 2, 2, 0.5);
}

.modal-panel {
  position: relative;
  width: min(960px, 92vw);
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.2);
  max-height: 90vh;
  overflow: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  border: none;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.modal-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.modal-form h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.modal-subcopy {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 20px;
}

form {
  display: grid;
  gap: 14px;
}

label span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 6px;
  color: var(--muted);
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(2, 2, 2, 0.15);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  resize: vertical;
}

.submit {
  border: none;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  cursor: pointer;
}

.submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 840px) {
  .modal-panel {
    margin: 4vh auto;
    padding: 28px 24px;
  }

  .modal-grid {
    grid-template-columns: 1fr;
  }
}
