:root { --soft: #e9e7e2; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 7vw 92px;
  background: var(--ink);
  color: var(--white);
}
.page-hero::after {
  content: attr(data-word);
  position: absolute;
  right: -1vw;
  top: 0;
  color: rgba(255,255,255,.035);
  font-size: clamp(100px, 18vw, 260px);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .8;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { max-width: 950px; font-size: clamp(52px, 7vw, 100px); }
.page-hero .hero-copy { max-width: 760px; margin-bottom: 0; }
.breadcrumb { margin-bottom: 32px; color: #aeb8c1; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumb a { color: white; text-decoration: none; }

.page-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; }
.page-intro .lead-copy p:first-child { margin-top: 0; }
.content-band { padding: 95px 7vw; background: white; }
.content-band.alt { background: var(--soft); }
.content-band.dark { background: var(--navy); color: white; }
.content-heading { max-width: 760px; margin-bottom: 48px; }
.content-heading h2 { margin: 0; font-size: clamp(40px, 5vw, 68px); line-height: 1; letter-spacing: -.055em; }
.content-heading p:last-child { max-width: 660px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.dark .content-heading p:last-child { color: #bdc6ce; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.info-card { min-height: 245px; padding: 32px; background: white; }
.info-card .number { display: block; margin-bottom: 42px; color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.info-card h3 { margin: 0 0 14px; font-size: 23px; }
.info-card h3 a { text-decoration-color: var(--red); text-decoration-thickness: 2px; text-underline-offset: 5px; }
.info-card p { margin: 0; color: var(--muted); line-height: 1.65; }

.requirement-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin: 0; padding: 0; background: var(--line); border: 1px solid var(--line); list-style: none; }
.requirement-list li { position: relative; min-height: 112px; padding: 28px 30px 28px 65px; background: white; line-height: 1.55; }
.requirement-list li::before { content: "✓"; position: absolute; left: 30px; top: 29px; color: var(--red); font-size: 20px; font-weight: 900; }
.requirement-list strong { display: block; margin-bottom: 5px; }
.requirement-list span { color: var(--muted); font-size: 14px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { padding-top: 20px; border-top: 3px solid var(--red); }
.step b { color: var(--red); font-size: 12px; letter-spacing: .15em; }
.step h3 { margin: 34px 0 12px; font-size: 23px; }
.step p { color: var(--muted); line-height: 1.65; }
.dark .step p { color: #bdc6ce; }

.notice { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start; max-width: 1000px; margin-top: 48px; padding: 28px; border-left: 4px solid var(--red); background: #f3f1ed; }
.notice strong { font-size: 18px; }
.notice p { margin: 5px 0 0; color: var(--muted); line-height: 1.6; }
.dark .notice { background: rgba(255,255,255,.06); }
.dark .notice p { color: #bdc6ce; }

.application-panel { display: grid; grid-template-columns: 1.1fr .9fr; gap: 8vw; align-items: center; }
.application-panel h2 { margin: 0 0 22px; font-size: clamp(42px, 5vw, 72px); line-height: 1; letter-spacing: -.055em; }
.application-panel p { color: #bdc6ce; font-size: 17px; line-height: 1.7; }
.application-action { padding: 38px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.05); }
.application-action .button { width: 100%; }
.application-action small { display: block; margin-top: 16px; color: #98a4af; line-height: 1.5; text-align: center; }

.resource-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.resource-link { display: block; padding: 28px; border: 1px solid var(--line); background: white; text-decoration: none; }
.resource-link:hover { border-color: var(--red); }
.resource-link strong { display: block; margin-bottom: 9px; font-size: 19px; }
.resource-link span { color: var(--muted); font-size: 14px; line-height: 1.5; }

nav .current { color: #ff666b; }

@media (max-width: 900px) {
  .page-intro, .application-panel { grid-template-columns: 1fr; gap: 50px; }
  .card-grid, .steps, .resource-links { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .page-hero { padding: 82px 22px 64px; }
  .content-band { padding: 70px 22px; }
  .card-grid, .requirement-list, .steps, .resource-links { grid-template-columns: 1fr; }
  .info-card { min-height: 210px; }
  .notice { grid-template-columns: 1fr; }
  .application-action { padding: 25px; }
}
