@font-face {
  font-family: "Major Mono Display";
  src: url("./assets/MajorMonoDisplay-Regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  color-scheme: dark;
  --paper: #07060d;
  --paper-2: #0c0a16;
  --ink: #f4f2ff;
  --muted: rgba(244, 242, 255, 0.68);
  --line: rgba(244, 242, 255, 0.14);
  --panel: rgba(255, 255, 255, 0.04);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  --display: "Major Mono Display", "Courier New", monospace;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(1200px 900px at 20% 18%, rgba(124, 92, 255, 0.18), transparent 58%),
    radial-gradient(900px 700px at 82% 12%, rgba(0, 220, 255, 0.12), transparent 55%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: rgba(7, 6, 13, 0.72);
  border-bottom: 1px solid rgba(244, 242, 255, 0.1);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-family: var(--display);
  font-weight: 400;
}

.brand-mark {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(124, 92, 255, 0.22));
}

.nav-links {
  gap: clamp(14px, 3vw, 32px);
  font-size: 0.95rem;
  font-weight: 800;
  color: rgba(244, 242, 255, 0.86);
}

.hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: hidden;
  padding: 104px clamp(20px, 7vw, 92px) 64px;
  color: var(--ink);
  background: radial-gradient(1100px 800px at 50% 22%, rgba(255, 255, 255, 0.06), transparent 55%);
}

.hero-copy {
  position: relative;
  max-width: 960px;
  text-align: center;
}

.hero-logo {
  display: block;
  width: clamp(188px, 28vw, 320px);
  height: auto;
  margin: 0 auto 28px;
  filter: drop-shadow(0 22px 50px rgba(0, 0, 0, 0.55));
}

.eyebrow {
  margin: 0 0 12px;
  color: rgba(244, 242, 255, 0.8);
  font-size: 0.78rem;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 7vw, 5.9rem);
  font-weight: 400;
  white-space: nowrap;
}

h2 {
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  font-weight: 900;
}

.hero-lede {
  max-width: 690px;
  margin: 18px auto 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 850;
}

.button.primary {
  background: var(--ink);
  color: var(--paper);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
}

.button.dark {
  background: var(--ink);
  color: var(--paper);
}

.section,
.identity-band {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 7vw, 92px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  color: rgba(244, 242, 255, 0.74);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.brand-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 22px;
  box-shadow: var(--shadow);
}

.brand-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 400;
}

.brand-card p {
  margin: 18px 0 0;
}

.brand-card p,
.contact p,
.site-footer {
  color: var(--muted);
}

.identity-band {
  background: var(--ink);
  color: #fff;
}

.identity-lockup {
  display: grid;
  grid-template-columns: minmax(160px, 260px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.identity-lockup img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.identity-band .eyebrow,
.identity-band h2 {
  color: #fff;
}

.identity-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: clamp(36px, 6vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.identity-notes p {
  min-height: 112px;
  display: flex;
  align-items: end;
  margin: 0;
  padding: 18px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
}

.contact p {
  max-width: 720px;
  font-size: 1.14rem;
}

.ethos-lines {
  max-width: 780px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ethos-lines li {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 12px;
  padding: 18px 18px;
  box-shadow: var(--shadow);
  color: rgba(244, 242, 255, 0.88);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 12px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.project-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 400;
}

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

.project-meta {
  color: rgba(244, 242, 255, 0.86);
}

.landing {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
}

.landing-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.landing-logo {
  display: block;
  width: clamp(220px, 32vw, 360px);
  height: auto;
  margin: 0;
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.62));
}

.landing-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 7vw, 5.9rem);
  font-weight: 400;
  line-height: 1.05;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 7vw, 92px);
  border-top: 1px solid rgba(244, 242, 255, 0.1);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 76vh;
    padding-top: 116px;
  }

  .brand-grid,
  .identity-lockup,
  .identity-notes,
  .ethos-lines,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .site-header {
    flex-direction: column;
    gap: 12px;
  }

  h1 {
    white-space: normal;
  }

  .button {
    width: 100%;
  }
}
