:root {
  color-scheme: light;
  --ink: #0b1622;
  --navy: #192e40;
  --navy-2: #20303d;
  --orange: #ed561b;
  --orange-dark: #c8430f;
  --coral: #f2785c;
  --blue: #2474a8;
  --blue-dark: #175579;
  --muted: #687685;
  --line: #e4e8ed;
  --surface: #fff;
  --bg: #f2f4f7;
  --shadow: 0 16px 42px rgba(11, 22, 34, .10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-height: 100vh; display: flex; flex-direction: column; color: var(--ink); background: var(--bg); font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
.hero { position: relative; overflow: hidden; color: #fff; background: radial-gradient(880px 420px at 88% -30%, rgba(237,86,27,.24), transparent 62%), linear-gradient(180deg, var(--navy-2), var(--navy)); }
.hero-inner, .page, .footer-inner { width: min(1080px, calc(100% - 32px)); margin: 0 auto; }
.hero-inner { position: relative; z-index: 2; padding: 70px 0 84px; }
.back { display: inline-flex; margin-bottom: 34px; color: #d6dee8; font-size: 13px; font-weight: 700; text-decoration: none; }
.back:hover, .back:focus-visible { color: #fff; }
.tab { display: block; width: 52px; height: 8px; margin-bottom: 20px; border-radius: 2px; background: var(--orange); }
.eyebrow { margin: 0 0 14px; color: var(--coral); font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1 { max-width: 15ch; margin: 0 0 18px; font-size: clamp(38px, 6vw, 64px); font-weight: 800; line-height: 1.02; letter-spacing: -.025em; }
.hero-copy { max-width: 690px; margin: 0; color: #d6dee8; font-size: 18px; line-height: 1.6; }
.ghost { position: absolute; right: 1%; bottom: -18%; z-index: 1; margin: 0; color: rgba(255,255,255,.045); font-size: clamp(190px,32vw,390px); font-weight: 800; line-height: 1; letter-spacing: -.05em; pointer-events: none; user-select: none; }
.page { flex: 1; padding: 0 0 64px; }
.card-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; margin-top: -44px; }
.card { position: relative; display: flex; min-height: 315px; flex-direction: column; padding: 30px; text-decoration: none; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); transition: transform 160ms ease,border-color 160ms ease,box-shadow 160ms ease; }
.card:hover, .card:focus-visible { transform: translateY(-4px); border-color: var(--accent,var(--orange)); box-shadow: 0 24px 56px rgba(11,22,34,.16); outline: none; }
.card-icon { display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; margin-bottom: 24px; color: #fff; background: var(--accent,var(--orange)); border-radius: 15px; font-size: 16px; font-weight: 800; letter-spacing: -.02em; }
.card-label { color: var(--accent-dark,var(--orange-dark)); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.card h2 { margin: 8px 0 13px; font-size: clamp(27px,3.5vw,38px); font-weight: 800; line-height: 1.08; letter-spacing: -.015em; }
.card p { max-width: 46ch; margin: 0; color: var(--muted); font-size: 15px; font-weight: 500; line-height: 1.65; }
.arrow { margin-top: auto; padding-top: 26px; align-self: flex-end; color: var(--accent,var(--orange)); font-size: 30px; line-height: 1; transition: transform 160ms ease; }
.card:hover .arrow { transform: translateX(5px); }
.detail { margin-top: -44px; padding: clamp(28px,5vw,56px); background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
.detail-grid { display: grid; grid-template-columns: minmax(0,1.45fr) minmax(230px,.55fr); gap: 48px; align-items: start; }
.detail h2 { margin: 0 0 18px; font-size: clamp(28px,4vw,42px); line-height: 1.1; }
.detail p { margin: 0 0 16px; color: #4f5e6d; font-size: 17px; line-height: 1.7; }
.meta { padding: 24px; background: var(--bg); border-radius: 14px; }
.meta-label { display: block; margin-bottom: 8px; color: var(--orange-dark); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.meta-value { margin: 0; color: var(--ink); font-size: 16px; font-weight: 700; line-height: 1.5; }
.button { display: inline-flex; align-items: center; gap: 12px; margin-top: 14px; padding: 15px 20px; color: #fff; background: var(--orange); border-radius: 10px; font-size: 14px; font-weight: 800; text-decoration: none; transition: transform 160ms ease,background 160ms ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); background: var(--orange-dark); outline: none; }
footer { color: var(--muted); font-size: 13px; font-weight: 600; }
.footer-inner { padding: 22px 0 30px; border-top: 1px solid var(--line); }
@media (max-width:760px) {
  .hero-inner { padding: 48px 0 66px; }
  .back { margin-bottom: 26px; }
  .card-grid { grid-template-columns: 1fr; margin-top: -32px; }
  .card { min-height: 265px; padding: 25px; }
  .detail { margin-top: -32px; padding: 28px 24px; }
  .detail-grid { grid-template-columns: 1fr; gap: 24px; }
  .ghost { display: none; }
}
