* { box-sizing: border-box; }
    html, body { margin: 0; }
    body { font-family: var(--font-body); color: var(--text-body); background: var(--surface-page); -webkit-font-smoothing: antialiased; }
    a { color: inherit; }
    a:hover { color: inherit; }
    .px { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
    .hp-h1 { font-family: var(--font-headline); text-transform: uppercase; line-height: 1.02; letter-spacing: -0.015em; margin: 0; font-size: clamp(36px, 4.6vw, 60px); }
    .hp-h2 { font-family: var(--font-headline); text-transform: uppercase; font-size: clamp(24px, 2.6vw, 34px); line-height: 1.1; letter-spacing: -0.01em; margin: 0; color: var(--text-strong); }
    .hp-h3 { font-family: var(--font-headline); text-transform: uppercase; font-size: 18px; letter-spacing: -0.005em; margin: 0; color: var(--text-strong); }
    .hp-body { font-size: 16px; line-height: 1.6; color: var(--text-muted); margin: 0; }
    .hp-eyebrow { font-weight: 700; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--stor-red); margin-bottom: 14px; }
    .hp-eyebrow--light { color: var(--stor-yellow); }
    .hp-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.93); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border-subtle); }
    .hp-header__in { display: flex; align-items: center; height: 66px; }
    .hp-logo { height: 28px; display: block; }
    .hp-nav { display: flex; align-items: center; gap: 26px; margin-left: 34px; }
    .hp-nav a { font-size: 15px; font-weight: 500; color: var(--text-body); text-decoration: none; }
    .hp-nav a:hover, .hp-nav a[aria-current="page"] { color: var(--stor-red); }
    .hp-header__right { margin-left: auto; display: flex; align-items: center; gap: 18px; }
    .hp-lane { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; font-size: 13px; font-weight: 600; color: var(--text-muted); text-decoration: none; border: 1px solid var(--border-default); border-radius: var(--radius-pill); padding: 7px 14px; background: transparent; transition: color .15s, border-color .15s, background .15s; }
    .hp-lane:hover { color: var(--stor-red); border-color: var(--stor-red); background: rgba(192,22,22,.05); }
    .hp-burger { display: none; background: none; border: 0; cursor: pointer; color: var(--text-strong); padding: 4px; }
    .hp-hero { background: var(--stor-red); color: #fff; padding: clamp(48px, 6vw, 84px) 0 clamp(80px, 10vw, 150px); }
    .hp-hero .hp-h1 { color: #fff; max-width: 16ch; }
    .hp-hero__sub { font-size: 19px; line-height: 1.6; color: rgba(255,255,255,.92); margin: 22px 0 0; max-width: 50ch; }
    .hp-contact { margin-top: clamp(-64px, -7vw, -120px); }
    .hp-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
    .hp-how { background: var(--neutral-900); color: #fff; border-radius: var(--radius-lg); padding: 44px 40px; box-shadow: var(--shadow-lg); }
    .hp-how .hp-h2 { color: #fff; }
    .hp-how__intro { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.82); margin: 16px 0 26px; }
    .hp-how__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 20px; }
    .hp-how__list li { display: flex; gap: 14px; align-items: flex-start; }
    .hp-how__ic { width: 40px; height: 40px; border-radius: var(--radius-md); background: rgba(255,255,255,.1); color: var(--stor-yellow); display: flex; align-items: center; justify-content: center; flex: none; }
    .hp-how__t { font-weight: 700; color: #fff; font-size: 15px; margin: 0 0 3px; }
    .hp-how__d { margin: 0; font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.78); }
    .hp-how__pilot { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); display: flex; gap: 12px; align-items: flex-start; }
    .hp-how__pilot p { margin: 0; font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.85); }
    .hp-how__pilot b { color: #fff; }
    .hp-form { background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 44px 40px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; }
    .hp-form form { display: flex; flex-direction: column; flex: 1; }
    .hp-form__head { margin-bottom: 24px; }
    .hp-form__head p { margin: 8px 0 0; font-size: 15px; line-height: 1.55; color: var(--text-muted); }
    .hp-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; flex: 1; }
    .hp-form__full { grid-column: 1 / -1; }
    .stor-select, .stor-textarea { font-family: var(--font-body); font-size: 15px; color: var(--text-strong); background: var(--surface-card); border: 1px solid var(--border-default); border-radius: var(--radius-sm); padding: 10px 12px; width: 100%; box-sizing: border-box; transition: border-color .15s, box-shadow .15s; }
    .stor-textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
    .stor-select:focus, .stor-textarea:focus { outline: none; border-color: var(--stor-red); box-shadow: 0 0 0 3px var(--red-100); }
    .hp-form__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 28px; }
    .hp-form__fine { font-size: 13px; color: var(--text-subtle); }
    .hp-form__sent { display: none; align-items: center; gap: 10px; margin-top: 20px; padding: 16px 18px; background: var(--red-50); border: 1px solid var(--red-200); border-radius: var(--radius-md); color: var(--stor-red); font-size: 15px; font-weight: 600; }
    .hp-form__sent.is-shown { display: flex; }
    .hp-alt { padding: clamp(44px, 6vw, 72px) 0; text-align: center; }
    .hp-alt p { margin: 10px auto 0; max-width: 46ch; }
    .hp-alt a.mail { color: var(--stor-red); font-weight: 600; text-decoration: none; }
    .hp-alt a.mail:hover { text-decoration: underline; }
    .hp-footer { background: var(--neutral-900); color: rgba(255,255,255,.72); padding: 44px 0 30px; }
    .hp-fnav { display: flex; flex-wrap: wrap; gap: 14px 28px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.14); }
    .hp-fnav > a { font-size: 14px; text-decoration: none; color: rgba(255,255,255,.72); }
    .hp-fnav > a:hover { color: var(--stor-yellow); }
    .hp-flane-row { display: flex; justify-content: flex-end; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
    .hp-flane { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85) !important; text-decoration: none; border: 1px solid rgba(255,255,255,.28); border-radius: var(--radius-pill); padding: 8px 15px; transition: color .15s, border-color .15s, background .15s; }
    .hp-flane:hover { color: var(--stor-yellow) !important; border-color: var(--stor-yellow); background: rgba(255,255,255,.06); }
    .hp-fbar { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; padding-top: 24px; }
    .hp-fbar__logo { height: 24px; }
    .hp-fbar__tag { font-family: var(--font-headline); text-transform: uppercase; color: #fff; font-size: 13px; }
    .hp-fbar__marks { display: flex; gap: 8px; }
    .hp-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); background: rgba(255,255,255,.08); border-radius: var(--radius-pill); padding: 8px 14px; }
    .hp-copy { color: rgba(255,255,255,.5); font-size: 13px; width: 100%; margin-top: 4px; }
    .req { color: var(--stor-red); }
    @media (max-width: 920px) {
      .hp-nav { display: none; }
      .hp-burger { display: block; }
      .hp-contact__grid { grid-template-columns: 1fr; }
      .hp-contact { margin-top: -56px; }
    }
    @media (max-width: 560px) { .hp-form__grid { grid-template-columns: 1fr; } }
