:root {
  --ink: #111820;
  --text: #435566;
  --line: #dce4eb;
  --soft: #f3f6f8;
  --paper: #ffffff;
  --red: #e1121b;
  --red-dark: #b80e15;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.portal-hold {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(17, 24, 32, 0.035) 50%, transparent 50.1%),
    linear-gradient(rgba(17, 24, 32, 0.035) 1px, transparent 1px),
    var(--soft);
  background-size: 100% 100%, 100% 46px, auto;
}

.hold-panel {
  width: min(760px, 100%);
  padding: clamp(34px, 7vw, 72px);
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(17, 24, 32, 0.12);
}

.brand-mark {
  display: block;
  width: 214px;
  height: auto;
}

.logo-name {
  font-size: 31px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0;
}

.logo-name-dark {
  fill: #0b1117;
}

.logo-name-red {
  fill: var(--red);
}

.logo-ring,
.logo-cross,
.logo-tooth {
  fill: none;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-ring.dark,
.logo-tooth {
  stroke: #0b1117;
}

.logo-ring.red,
.logo-cross.red {
  stroke: var(--red);
}

.eyebrow {
  margin: 52px 0 12px;
  color: var(--red-dark);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(38px, 7vw, 64px);
  line-height: 1.06;
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--text);
  font-size: 18px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 750;
}

.button.primary {
  border-color: var(--red);
  color: #fff;
  background: var(--red);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary:hover {
  border-color: #aebbc6;
}

@media (max-width: 540px) {
  .hold-panel {
    padding: 32px 24px;
  }

  .brand-mark {
    width: 176px;
  }

  .eyebrow {
    margin-top: 40px;
  }

  .actions,
  .button {
    width: 100%;
  }
}
