:root {
  --bg: #080a0d;
  --bg-elevated: #0d1116;
  --panel: #10151b;
  --panel-soft: #121920;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f3f1ed;
  --muted: #9ca6b2;
  --accent: #6e96bf;
  --accent-bright: #9ab7d4;
  --success: #76c69a;
  --danger: #e48787;
  --max: 1180px;
  --radius: 4px;
  --font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.section-lined {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(8, 10, 13, 0.72);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(8, 10, 13, 0.92);
}

.nav-wrap {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #0a0c0f;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-name strong {
  color: var(--muted);
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav > a:not(.button) {
  position: relative;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--accent-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible {
  color: var(--text);
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  background: var(--accent);
  color: #071018;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--accent-bright);
  transform: translateY(-2px);
}

.button-small {
  min-height: 38px;
  padding: 0 18px;
  font-size: 11px;
}

.hero {
  min-height: 100vh;
  overflow: hidden;
  padding-top: 176px;
  padding-bottom: 48px;
}

.hero::after {
  position: absolute;
  inset: 76px 0 auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.13;
}

.hero-glow-one {
  top: 80px;
  right: -160px;
  background: #608db9;
}

.hero-glow-two {
  bottom: 0;
  left: -350px;
  background: #234e70;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 90px;
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  color: var(--accent-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(52px, 6.4vw, 96px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 em {
  color: var(--muted);
  font-style: normal;
  font-weight: 350;
}

.hero-intro {
  max-width: 640px;
  margin: 34px 0 0;
  color: #b8c0c9;
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}

.text-link {
  color: var(--text);
  font-size: 14px;
  font-weight: 650;
  text-underline-offset: 6px;
}

.text-link span {
  display: inline-block;
  margin-left: 5px;
  color: var(--accent-bright);
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.identity-frame {
  position: relative;
  max-width: 390px;
  margin-left: auto;
  padding: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
}

.identity-frame > img {
  width: 100%;
  aspect-ratio: 1003 / 1568;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  filter: contrast(1.04);
}

.frame-corners::before,
.frame-corners::after {
  position: absolute;
  z-index: 2;
  width: 22px;
  height: 22px;
  content: "";
  border-color: var(--accent-bright);
  border-style: solid;
}

.frame-corners::before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}

.frame-corners::after {
  right: -1px;
  bottom: -1px;
  border-width: 0 1px 1px 0;
}

.identity-meta {
  display: flex;
  justify-content: space-between;
  padding: 14px 2px 0;
  color: #71808e;
  font-family: ui-monospace, "Cascadia Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.13em;
}

.project-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 100px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-strip div {
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}

.project-strip div:first-child {
  border-left: 1px solid var(--line);
}

.project-strip span,
.project-strip strong {
  display: block;
}

.project-strip span {
  margin-bottom: 4px;
  color: #6f7a86;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-strip strong {
  font-size: 13px;
  font-weight: 650;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 120px;
}

.section-index {
  margin: 0 0 22px;
  color: var(--accent-bright);
  font-family: ui-monospace, "Cascadia Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-heading h2,
.center-heading h2,
.apply-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 520;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.section-copy {
  color: var(--muted);
  font-size: 16px;
}

.section-copy p {
  margin: 0 0 20px;
}

.section-copy .lead {
  color: var(--text);
  font-size: 23px;
  letter-spacing: -0.015em;
  line-height: 1.55;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 84px;
  background: var(--line);
  border: 1px solid var(--line);
}

.principle-card {
  min-height: 260px;
  padding: 34px;
  background: var(--bg);
}

.card-number {
  display: block;
  margin-bottom: 64px;
  color: #687582;
  font-family: ui-monospace, "Cascadia Mono", monospace;
  font-size: 11px;
}

.principle-card h3,
.process-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
  font-weight: 600;
}

.principle-card p,
.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.project-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(80, 121, 161, 0.11), transparent 26%),
    var(--bg-elevated);
}

.project-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 52px;
}

.project-header h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 580;
  letter-spacing: -0.045em;
  line-height: 1;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  color: #c3cad2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(118, 198, 154, 0.1);
}

.project-feature {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  border: 1px solid var(--line-strong);
  background: #0a0d11;
}

.project-visual {
  min-height: 570px;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 52% 36%, rgba(105, 144, 183, 0.18), transparent 28%),
    linear-gradient(160deg, #11171e, #090b0e);
}

.window-chrome {
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: #84909c;
  font-family: ui-monospace, "Cascadia Mono", monospace;
  font-size: 10px;
}

.window-chrome div {
  display: flex;
  gap: 6px;
}

.window-chrome i {
  width: 8px;
  height: 8px;
  border: 1px solid #56616d;
}

.newspaper-scene {
  position: relative;
  width: min(78%, 430px);
  min-height: 410px;
  margin: 64px auto 0;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #ddd8ca;
  color: #15191e;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transform: rotate(-1.5deg);
}

.newspaper-brand {
  padding-bottom: 12px;
  border-bottom: 3px double #1d2329;
  font-family: Georgia, serif;
  font-size: clamp(19px, 2.3vw, 31px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
}

.headline-block {
  margin-top: 22px;
}

.headline-block span {
  display: inline-block;
  margin-bottom: 8px;
  padding: 2px 6px;
  background: #557b9f;
  color: white;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.headline-block strong {
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(25px, 3.2vw, 44px);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.news-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 16px;
  margin-top: 28px;
}

.news-columns span {
  height: 5px;
  background: rgba(20, 25, 30, 0.65);
}

.news-columns span:nth-child(3n) {
  width: 74%;
}

.scene-status {
  position: absolute;
  right: -22px;
  bottom: -28px;
  left: 22px;
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #11161c;
  color: #aeb9c5;
  font-family: ui-monospace, "Cascadia Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.project-details {
  padding: 56px;
}

.project-kicker {
  margin: 0 0 18px;
  color: var(--accent-bright);
  font-family: ui-monospace, "Cascadia Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-details h3 {
  margin: 0 0 22px;
  font-size: 34px;
  font-weight: 540;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.project-details > p:not(.project-kicker) {
  color: var(--muted);
  font-size: 15px;
}

.feature-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 30px 0 38px;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  color: #c5ccd3;
  font-size: 13px;
}

.feature-list li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 1px;
  content: "";
  background: var(--accent-bright);
}

.project-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.project-specs div {
  padding: 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-specs span,
.project-specs strong {
  display: block;
}

.project-specs span {
  color: #687581;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-specs strong {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 600;
}

.roles-intro {
  margin-bottom: 72px;
}

.roles-list {
  border-top: 1px solid var(--line-strong);
}

.role-row {
  display: grid;
  grid-template-columns: 65px 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 126px;
  padding: 24px 12px;
  border-bottom: 1px solid var(--line);
  transition: background 160ms ease, padding 160ms ease;
}

.role-row:hover {
  padding-right: 22px;
  padding-left: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.role-index {
  color: #65727f;
  font-family: ui-monospace, "Cascadia Mono", monospace;
  font-size: 11px;
}

.role-row h3 {
  margin: 0 0 5px;
  font-size: 20px;
  font-weight: 620;
}

.role-row p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.role-tag {
  color: #82909d;
  font-family: ui-monospace, "Cascadia Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

.center-heading {
  max-width: 700px;
  margin: 0 auto 70px;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-card {
  position: relative;
  min-height: 270px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008));
}

.process-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transition: width 240ms ease;
}

.process-card:hover::before {
  width: 100%;
}

.process-card > span {
  display: block;
  margin-bottom: 80px;
  color: var(--accent-bright);
  font-family: ui-monospace, "Cascadia Mono", monospace;
  font-size: 11px;
}

.apply-section {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(94, 132, 169, 0.06), transparent 40%),
    #0b0e12;
}

.apply-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
  align-items: start;
}

.apply-copy {
  position: sticky;
  top: 120px;
}

.apply-copy > p:not(.section-index) {
  margin: 26px 0 0;
  color: var(--muted);
}

.commitment-box {
  margin-top: 42px;
  padding: 25px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.commitment-box > span {
  display: block;
  margin-bottom: 14px;
  color: var(--accent-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.commitment-box ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.commitment-box li {
  position: relative;
  padding-left: 16px;
  color: #aab3bc;
  font-size: 13px;
}

.commitment-box li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 5px;
  height: 5px;
  border: 1px solid var(--accent);
  content: "";
}

.application-form {
  border: 1px solid var(--line-strong);
  background: #0e1318;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.form-heading div span,
.form-heading div strong {
  display: block;
}

.form-heading div span {
  color: #6f7c88;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading div strong {
  font-size: 16px;
  font-weight: 600;
}

.secure-label {
  color: var(--success);
  font-family: ui-monospace, "Cascadia Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  padding: 30px;
}

.field {
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.confirmations legend {
  display: block;
  margin-bottom: 8px;
  color: #cbd1d7;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #29323b;
  border-radius: 2px;
  outline: none;
  background: #0a0e12;
  color: var(--text);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input,
.field select {
  height: 48px;
  padding: 0 14px;
}

.field textarea {
  min-height: 96px;
  padding: 13px 14px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #56616b;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(110, 150, 191, 0.1);
}

.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid {
  border-color: rgba(228, 135, 135, 0.65);
}

.field small {
  display: block;
  margin-top: 6px;
  color: #687581;
  font-size: 10px;
}

.confirmations {
  padding: 22px;
  margin: 4px 0 0;
  border: 1px solid var(--line);
}

.confirmations legend {
  padding: 0 8px;
}

.check-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 12px 0;
  color: #aab3bc;
  font-size: 12px;
  line-height: 1.55;
  cursor: pointer;
}

.check-row input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.check-row a {
  color: var(--accent-bright);
  text-underline-offset: 3px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-footer {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 28px;
  border-top: 1px solid var(--line);
  background: #0b0f13;
}

#form-status {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

#form-status.success {
  color: var(--success);
}

#form-status.error {
  color: var(--danger);
}

#form-status a {
  margin-left: 4px;
  color: inherit;
  font-weight: 800;
  text-underline-offset: 3px;
}

.submit-button {
  min-width: 230px;
  border: 0;
  cursor: pointer;
}

.submit-button i {
  margin-left: 22px;
  font-style: normal;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.55;
  transform: none;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 110px;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--accent-bright);
  font-size: 22px;
  font-weight: 300;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  padding: 0 40px 26px 0;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 66px 0 26px;
  background: #050608;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 52px;
}

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

.footer-brand img {
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  font-size: 15px;
}

.footer-brand span {
  color: #697580;
  font-size: 11px;
}

.footer-cta {
  text-align: right;
}

.footer-cta span {
  display: block;
  margin-bottom: 5px;
  color: #67737e;
  font-size: 11px;
}

.footer-cta a {
  font-size: 17px;
  font-weight: 650;
  text-decoration: none;
}

.footer-cta b {
  color: var(--accent-bright);
  font-weight: 400;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #5d6872;
  font-size: 10px;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.footer-bottom a {
  text-underline-offset: 4px;
}

.discord-join {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: #5865f2;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.42), 0 0 0 0 rgba(88, 101, 242, 0.35);
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.discord-join:hover {
  background: #6773f4;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.48), 0 0 0 6px rgba(88, 101, 242, 0.14);
  transform: translateY(-3px);
}

.discord-join:focus-visible {
  outline: 3px solid rgba(154, 183, 212, 0.8);
  outline-offset: 3px;
}

.discord-join svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.legal-page {
  min-height: 100vh;
  padding: 150px 0 100px;
}

.legal-content {
  max-width: 820px;
}

.legal-content h1 {
  margin: 0 0 14px;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.legal-updated {
  color: var(--accent-bright);
  font-family: ui-monospace, monospace;
  font-size: 11px;
  text-transform: uppercase;
}

.legal-content h2 {
  margin: 46px 0 12px;
  font-size: 22px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-back {
  display: inline-block;
  margin-top: 48px;
  color: var(--accent-bright);
  text-underline-offset: 5px;
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 30px;
  text-align: center;
}

.not-found strong {
  display: block;
  color: var(--accent-bright);
  font-family: ui-monospace, monospace;
  font-size: 13px;
}

.not-found h1 {
  margin: 14px 0 12px;
  font-size: clamp(46px, 8vw, 92px);
  letter-spacing: -0.05em;
}

.not-found p {
  margin: 0 0 28px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-short {
  transition-delay: 80ms;
}

.reveal-delay {
  transition-delay: 150ms;
}

.reveal-delay-long {
  transition-delay: 220ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1000px) {
  .hero-grid,
  .project-feature,
  .apply-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-identity {
    display: none;
  }

  .project-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .project-strip div:nth-child(4),
  .project-strip div:nth-child(5) {
    border-top: 1px solid var(--line);
  }

  .split-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .principle-card {
    min-height: 220px;
  }

  .card-number {
    margin-bottom: 48px;
  }

  .project-visual {
    min-height: 520px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .apply-copy {
    position: static;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 30px), var(--max));
  }

  .section {
    padding: 82px 0;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 18px 24px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 10, 13, 0.98);
  }

  .site-nav.open {
    display: grid;
    gap: 0;
  }

  .site-nav > a:not(.button) {
    padding: 14px 2px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .button {
    margin-top: 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 144px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 72px);
  }

  .hero-intro {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-strip {
    grid-template-columns: 1fr 1fr;
    margin-top: 72px;
  }

  .project-strip div {
    border-top: 1px solid var(--line);
  }

  .project-strip div:nth-child(-n + 2) {
    border-top: 0;
  }

  .project-strip div:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .project-strip div:nth-child(even) {
    border-left: 0;
  }

  .project-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-details {
    padding: 34px 24px;
  }

  .project-visual {
    min-height: 440px;
  }

  .newspaper-scene {
    width: 82%;
    min-height: 340px;
    margin-top: 40px;
  }

  .role-row {
    grid-template-columns: 38px 1fr;
  }

  .role-tag {
    grid-column: 2;
    text-align: left;
  }

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

  .process-card {
    min-height: 220px;
  }

  .process-card > span {
    margin-bottom: 48px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }

  .field-full {
    grid-column: auto;
  }

  .form-heading,
  .form-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .submit-button {
    width: 100%;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-cta {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .project-strip {
    grid-template-columns: 1fr;
  }

  .project-strip div,
  .project-strip div:nth-child(-n + 2) {
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .project-strip div:first-child {
    border-top: 0;
  }

  .newspaper-scene {
    min-height: 310px;
    padding: 18px;
  }

  .scene-status {
    right: -10px;
    left: 10px;
  }

  .project-specs {
    grid-template-columns: 1fr;
  }

  .role-row {
    gap: 10px;
    padding-right: 0;
    padding-left: 0;
  }

  .discord-join {
    right: 16px;
    bottom: 16px;
    width: 52px;
    padding: 0;
    justify-content: center;
  }

  .discord-join span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
}
