@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap");

:root {
  color-scheme: dark;
  --bg: #0b0b0b;
  --bg-soft: #121212;
  --ink: #f5f5f5;
  --muted: #b6b6b6;
  --accent: #ffffff;
  --accent-strong: #ffffff;
  --border: rgba(255, 255, 255, 0.16);
}

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

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 28px 72px;
  display: flex;
  flex-direction: column;
  gap: 128px;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  width: 52px;
  height: 52px;
  padding: 8px;
  border-radius: 0;
  background: #ffffff;
  border: 1px solid #ffffff;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-tag {
  font-size: 0.85rem;
  color: var(--muted);
}

.cta {
  padding: 10px 18px;
  border-radius: 0;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.cta:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.cta.solid {
  background: var(--accent);
  color: #0b0b0b;
  border-color: transparent;
  font-weight: 600;
}

.cta.ghost {
  background: transparent;
  color: var(--ink);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 44px;
  margin-top: -48px;
}

.hero h1 {
  font-size: clamp(2.3rem, 3vw, 3.2rem);
  line-height: 1.15;
  margin: 0;
}

.eyebrow {
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin: 0;
}

.subhead {
  color: var(--muted);
  max-width: 680px;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  margin-top: 24px;
}

.card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 0;
  min-height: 240px;
}

.card h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 68px;
  align-items: start;
  padding: 52px 60px;
  border-radius: 0;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  margin-top: 28px;
}

.contact h2 {
  margin-top: 0;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.contact p {
  color: var(--muted);
  margin: 0;
}

.contact-form {
  display: grid;
  gap: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

input,
textarea {
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 14px 16px;
  color: var(--ink);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.55);
}

button {
  border: none;
  background: var(--accent-strong);
  color: #0b0b0b;
  padding: 12px 18px;
  border-radius: 0;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

button:hover {
  transform: translateY(-1px);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  flex-wrap: wrap;
}

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

  .cta {
    width: 100%;
  }

  .footer {
    flex-direction: column;
  }
}

