:root { --red: #9B2423; --ink: #2E3233; --grey: #474A50; --paper: #F6F5F1; }
* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; }
.page { max-width: 1600px; margin: auto; padding: 0 6%; }
header { height: 130px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #dcdcd6; }
.logo { width: 228px; height: 66px; overflow: hidden; position: relative; }
.logo img { position: absolute; width: 238px; height: auto; max-width: none; top: -55px; left: -5px; }
.status { display: flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 1.7px; text-transform: uppercase; }
.dot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; box-shadow: 0 0 0 5px #9b242310; }
main { display: grid; grid-template-columns: 1.1fr 1fr; gap: 5%; align-items: center; min-height: 650px; padding: 65px 0 70px; }
.eyebrow { display: flex; align-items: center; gap: 12px; color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: 2.2px; text-transform: uppercase; margin: 0 0 25px; }
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--red); }
h1 { font-size: clamp(48px, 5.4vw, 84px); line-height: 1.02; letter-spacing: -4px; font-weight: 700; margin: 0 0 25px; }
h1 span { color: var(--red); }
.intro { max-width: 370px; color: #64676a; line-height: 1.8; font-size: 15px; margin: 0 0 34px; }
.launch { font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.launch svg { width: 17px; height: 17px; color: var(--red); }
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 445px; margin-top: 22px; border-top: 1px solid #d8d8d2; border-bottom: 1px solid #d8d8d2; padding: 23px 0; }
.unit { text-align: center; border-right: 1px solid #d8d8d2; }
.unit:first-child { text-align: left; }
.unit:last-child { border: 0; }
.number { display: block; font-size: clamp(32px, 3.6vw, 52px); letter-spacing: -2px; font-weight: 600; font-variant-numeric: tabular-nums; line-height: 1; }
.unit:last-child .number { color: var(--red); }
.label { display: block; font-size: 9px; text-transform: uppercase; letter-spacing: 2px; margin-top: 12px; color: #686b6b; }
.note { font-size: 11px; color: #717474; margin: 16px 0 0; }
.visual { position: relative; min-height: 510px; margin: 0; background: #eae9e3; overflow: hidden; border-radius: 3px; display: flex; flex-direction: column; justify-content: flex-end; box-shadow: 24px 32px 26px -22px #2e323344; }
.facility-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.visual-caption { position: relative; z-index: 1; margin: 0; padding: 24px 27px; display: flex; justify-content: space-between; align-items: center; gap: 15px; color: #fff; background: linear-gradient(180deg, transparent, #000b); text-shadow: 0 1px 8px #0009; }
.visual-caption strong { font-size: 20px; font-weight: 500; letter-spacing: -.5px; }
.visual-caption span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid #ffffffaa; border-radius: 50%; font-size: 18px; }
.strip { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 28px 0; border-top: 1px solid #dcdcd6; border-bottom: 1px solid #dcdcd6; }
.strip-title { font-size: 10px; color: #777a77; text-transform: uppercase; letter-spacing: 1.6px; }
.uses { display: flex; gap: 40px; font-size: 12px; }
.uses span { display: flex; align-items: center; gap: 10px; }
.uses svg { width: 19px; height: 19px; color: var(--red); }
@media (min-width: 1500px) { main { min-height: 730px; } }
@media (max-width: 900px) { .page { padding: 0 5%; } main { gap: 4%; } h1 { letter-spacing: -2.5px; } .visual { min-height: 450px; } .uses { gap: 20px; } }
@media (max-width: 680px) { header { height: 100px; } .logo { width: 185px; height: 55px; } .logo img { width: 195px; top: -45px; } .status { font-size: 9px; letter-spacing: 1px; } main { grid-template-columns: 1fr; padding: 42px 0 32px; gap: 36px; } h1 { font-size: clamp(48px, 11vw, 70px); } .intro { max-width: 400px; } .countdown { max-width: none; } .number { font-size: 43px; } .visual { min-height: 390px; } .strip { align-items: flex-start; flex-direction: column; gap: 22px; } .uses { width: 100%; justify-content: space-between; gap: 8px; font-size: 11px; } }
@media (prefers-reduced-motion: no-preference) { main { animation: enter .7s ease-out both; } @keyframes enter { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } } }
