:root {
  --red: #e1251b;
  --red-dark: #b91f18;
  --carbon: #101417;
  --steel: #384148;
  --mist: #e8ecee;
  --white: #fff;
  --muted: #aab3ba;
}
* { box-sizing: border-box; }
body { margin: 0; min-height: 100svh; display: grid; place-items: center; padding-block: clamp(32px, 6vh, 64px); padding-left: max(clamp(28px, 7vw, 64px), env(safe-area-inset-left)); padding-right: max(clamp(28px, 7vw, 64px), env(safe-area-inset-right)); color: var(--white); background: var(--carbon); font-family: Inter, Arial, sans-serif; -webkit-font-smoothing: antialiased; }
body::before { content: ''; position: fixed; inset: 0; pointer-events: none; background: linear-gradient(135deg, #e1251b0a, transparent 55%), repeating-linear-gradient(90deg, transparent 0, transparent 119px, #ffffff03 120px); }
main { position: relative; width: 100%; max-width: 480px; min-width: 0; overflow-wrap: anywhere; }
.brand-header { display: flex; align-items: center; gap: 22px; background: var(--white); color: var(--steel); padding: 12px 24px; border-top: 3px solid var(--red); margin-bottom: 40px; }
.brand-header a { display: block; flex-shrink: 0; }
.brand-header img { display: block; width: 140px; height: 80px; object-fit: contain; }
.brand-header span { border-left: 1px solid #d9dfe2; padding-left: 20px; font-size: 11px; line-height: 1.6; }
.eyebrow { color: #ff746c; text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 700; margin: 0 0 16px; }
h1, strong, .eyebrow { font-family: Barlow, Arial, sans-serif; }
h1 { font-size: clamp(36px, 8vw, 48px); line-height: 1.06; letter-spacing: -.025em; margin: 0 0 20px; }
h1 span { color: #c5cdd2; }
.intro { color: #c5cdd2; font-size: 15px; line-height: 1.75; margin: 0 0 32px; }
nav { display: grid; gap: 14px; }
.social { display: flex; align-items: center; gap: 18px; width: 100%; padding: 23px; border: 1px solid #ffffff30; border-radius: 2px; color: var(--white); background: #ffffff03; text-decoration: none; transition: background .2s, border-color .2s, transform .2s; }
.social:first-child { background: var(--red); border-color: var(--red); }
.social[href]:hover { background: var(--steel); border-color: #ffffff65; transform: translateY(-2px); }
.social[href]:first-child:hover { background: var(--red-dark); border-color: var(--red-dark); }
a:focus-visible { outline: 3px solid #ff746c; outline-offset: 5px; }
.social:focus-visible { outline-color: var(--white); }
.social svg { width: 26px; height: 26px; flex-shrink: 0; }
.label { flex: 1; min-width: 0; }
strong { display: block; font-size: 22px; line-height: 1.1; }
.description { display: block; margin-top: 7px; font-size: 12px; line-height: 1.5; color: var(--mist); }
.social:first-child .description { color: var(--white); }
.arrow { font-size: 24px; }
footer { margin-top: 36px; border-top: 1px solid #ffffff20; padding-top: 20px; font-size: 11px; color: var(--muted); line-height: 1.6; }
footer span { color: var(--red); margin-inline: 6px; }
@media (max-width: 420px) { .brand-header { gap: 12px; padding-inline: 16px; } .brand-header img { width: 110px; } .brand-header span { padding-left: 12px; min-width: 0; } .social { padding: 22px 18px; gap: 14px; } }
@media (max-width: 320px) { .brand-header { flex-direction: column; align-items: flex-start; } .brand-header span { border-left: 0; padding-left: 0; } h1 { font-size: 32px; } .social { gap: 10px; padding-inline: 14px; } }
@media (prefers-reduced-motion: reduce) { .social { transition: none; } }
