@font-face {
  font-family: 'Telegraf';
  src: url('fonts/PPTelegraf-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Telegraf';
  src: url('fonts/PPTelegraf-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #f7f5ff;
  --ink: #090a11;
  --muted: #51577d;
  --signal: #4a32c9;
  --line: #cdcde6;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Telegraf', Arial, sans-serif;
}

.page-shell {
  min-height: 100vh;
  padding: 34px 42px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(90deg, transparent 49.94%, rgba(9,10,17,.045) 50%, transparent 50.06%),
    var(--paper);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Telegraf', Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .13em;
}

.brand-mark img { width: 28px; height: 28px; display: block; }

.redirect-card {
  width: min(680px, 100%);
  align-self: center;
  margin: 7vh auto 8vh;
}

.eyebrow, .countdown, footer {
  color: var(--muted);
  font-family: 'Telegraf', Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 43px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 4px rgba(74,50,201,.14); }

.product-name {
  margin: 0;
  display: grid;
  grid-template-columns: max-content max-content;
  row-gap: 9px;
  align-items: start;
  font-size: clamp(56px, 9.5vw, 124px);
  line-height: .9;
  letter-spacing: -.045em;
  font-weight: 600;
  white-space: nowrap;
}

.wordline {
  grid-column: 1 / -1;
  display: contents;
}
.product-name > .wordline > span:first-child { grid-column: 1; grid-row: 1; }
.product-name > .wordline > .nat { grid-column: 2; grid-row: 1; }
.nat { color: var(--signal); }
.otf {
  grid-column: 2;
  grid-row: 2;
  width: max-content;
  margin: 0;
  padding: 0 0 13px;
  font-family: 'Telegraf', Arial, sans-serif;
  font-size: 1em;
  line-height: .9;
  letter-spacing: -.045em;
  font-weight: 600;
  border-bottom: 2px dotted var(--signal);
}

.rule { width: 100%; height: 1px; margin: 54px 0 26px; background: var(--line); }
.message { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.6; }
.message strong { color: var(--ink); font-weight: 500; }

.continue-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 37px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease;
}
.continue-link span { font-size: 20px; line-height: 12px; }
.continue-link:hover, .continue-link:focus-visible { color: var(--signal); border-color: var(--signal); }

.countdown { margin: 54px 0 0; font-size: 10px; letter-spacing: .1em; }
.countdown span { color: var(--signal); }
footer { display: flex; justify-content: space-between; font-size: 9px; letter-spacing: .12em; }
footer span { color: var(--signal); }

@media (max-width: 640px) {
  .page-shell { padding: 24px 22px 22px; }
  .redirect-card { margin: 12vh auto 10vh; }
  .eyebrow { margin-bottom: 34px; }
  .product-name { font-size: clamp(43px, 13vw, 78px); row-gap: 7px; }
  .rule { margin-top: 42px; }
  footer { gap: 8px; flex-direction: column; }
}
