html {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: Verdana, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #10104d;
  background-color: #05051b;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.95) 0 1px, transparent 1.2px),
    radial-gradient(circle at 70% 35%, rgba(255, 255, 255, 0.7) 0 1px, transparent 1.2px),
    radial-gradient(circle at 40% 75%, rgba(255, 255, 255, 0.85) 0 1px, transparent 1.4px),
    linear-gradient(180deg, #030312 0%, #11194f 52%, #060616 100%);
  background-size: 150px 150px, 180px 180px, 220px 220px, auto;
}

a {
  color: #0029d6;
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  color: #ff006c;
}

img {
  max-width: 100%;
}

.sale-strip {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 3px solid #0029d6;
  background: linear-gradient(180deg, #fff873 0%, #ffcb2f 100%);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.28);
}

.sale-strip p {
  margin: 0;
  padding: 10px 12px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #10104d;
}

.site-wrap {
  width: min(980px, calc(100% - 24px));
  margin: 16px auto 40px;
  border: 4px solid #10289b;
  background: #d9ddff;
  box-shadow: 0 0 0 4px #ffffff, 0 18px 30px rgba(0, 0, 0, 0.42);
}

.masthead {
  padding: 14px;
  border-bottom: 4px solid #10289b;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #56c8ff 0%, #2f69ff 45%, #191983 100%);
  color: #ffffff;
}

.masthead-grid {
  display: grid;
  grid-template-columns: 150px 1fr 170px;
  gap: 16px;
  align-items: center;
}

.logo-stack {
  text-align: center;
}

.logo-stack img {
  width: 92px;
  height: 92px;
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 0 rgba(0, 0, 0, 0.35));
}

.logo-stack .microcopy {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-copy h1 {
  margin: 0 0 6px;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
  text-shadow: 3px 3px 0 #00186a;
}

.hero-copy p {
  margin: 0;
  max-width: 50ch;
  font-size: 1rem;
}

.hero-copy .hero-badges {
  margin-top: 10px;
}

.hero-badges span,
.micro-badge {
  display: inline-block;
  margin: 4px 6px 0 0;
  padding: 4px 8px;
  border: 2px solid #ffffff;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.masthead-contact {
  text-align: center;
  font-size: 12px;
}

.masthead a {
  color: #eef5ff;
}

.masthead a:hover {
  color: #ffef8c;
}

.masthead-contact strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

.masthead-contact .gif-stack img {
  display: inline-block;
  margin: 5px 2px 0;
}

.marquee-box {
  margin: 12px;
  border: 3px solid #10289b;
  background: #f7fbff;
  color: #10289b;
  font-weight: 700;
  overflow: hidden;
}

.ticker {
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-block;
  padding: 8px 10px;
  min-width: 200%;
  animation: ticker 26s linear infinite;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.main-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 14px;
  padding: 0 12px 14px;
}

.sidebar,
.content-column {
  min-width: 0;
}

.window {
  margin-bottom: 12px;
  border-top: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  border-right: 3px solid #1a2775;
  border-bottom: 3px solid #1a2775;
  background: #f5f6ff;
}

.window-title {
  padding: 6px 10px;
  border-bottom: 2px solid #1a2775;
  background: linear-gradient(180deg, #0d49ff 0%, #001fa6 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.window-body {
  padding: 12px;
}

.nav-list,
.link-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list li + li,
.link-list li + li,
.check-list li + li {
  margin-top: 8px;
}

.nav-list a {
  display: block;
  padding: 6px 8px;
  border: 2px solid #1a2775;
  background: #fffefa;
  font-weight: 700;
}

.nav-list a[aria-current="page"] {
  background: #ffe96f;
  color: #9b0029;
}

.gif-wall {
  text-align: center;
}

.gif-wall img {
  display: inline-block;
  margin: 4px;
}

.counter {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 10px;
  border: 2px solid #141414;
  background: #000000;
  color: #6df96d;
  font-family: "Courier New", monospace;
  font-size: 18px;
  letter-spacing: 0.18em;
}

.spotlight,
.triptych,
.card-grid,
.timeline-list,
.faq-list {
  display: grid;
  gap: 12px;
}

.triptych,
.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.spotlight {
  grid-template-columns: 1.2fr 0.8fr;
}

.retro-card {
  border: 2px dashed #3048cf;
  background: #ffffff;
  padding: 12px;
}

.retro-card h2,
.retro-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: #041368;
}

.retro-card p:last-child,
.retro-card ul:last-child {
  margin-bottom: 0;
}

.price-panel {
  text-align: center;
  background: linear-gradient(180deg, #fff9ba 0%, #ffd95d 100%);
}

.price-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 10px 18px;
  border: 3px solid #10289b;
  background: #fffbff;
  color: #d00051;
  font-family: "Courier New", monospace;
  font-size: 2rem;
  font-weight: 700;
}

.action-stack a,
.action-stack span {
  display: block;
  margin-top: 8px;
}

.big-button {
  display: inline-block;
  padding: 10px 14px;
  border: 3px solid #0f5a00;
  background: linear-gradient(180deg, #91ff62 0%, #45ca24 100%);
  color: #042f00;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.25);
}

.big-button.alt {
  border-color: #7b004e;
  background: linear-gradient(180deg, #ffd6f2 0%, #ff6bcb 100%);
  color: #5c0037;
}

.micro-note,
.tiny {
  font-size: 12px;
}

.blink {
  animation: blink 1s steps(1, end) infinite;
}

.star-divider {
  margin: 12px 0;
  text-align: center;
  color: #ff2c84;
  letter-spacing: 0.35em;
  font-weight: 700;
}

.quote-box {
  padding: 14px;
  border: 2px dotted #cf0f63;
  background: #fff1f7;
  font-family: "Times New Roman", Georgia, serif;
  font-size: 1.15rem;
  color: #65063c;
}

.table-grid {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table-grid td,
.table-grid th {
  padding: 8px 10px;
  border: 2px solid #2237a2;
  background: #ffffff;
}

.table-grid th {
  background: #d7e7ff;
  text-align: left;
}

.timeline-list article,
.faq-list article {
  border: 2px solid #2237a2;
  background: #ffffff;
  padding: 12px;
}

.footer-bar {
  margin: 0 12px 12px;
  border: 3px solid #10289b;
  background: #fdf9c9;
}

.footer-bar .window-body {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: space-between;
  align-items: center;
}

.legal-links a + a,
.footer-links a + a {
  margin-left: 10px;
}

.stamp {
  display: inline-block;
  padding: 5px 8px;
  border: 2px dashed #c50057;
  background: #fff0f7;
  color: #a00047;
  font-weight: 700;
  text-transform: uppercase;
}

.page-intro {
  margin-bottom: 12px;
}

.page-intro h2 {
  margin: 0 0 8px;
  font-family: "Times New Roman", Georgia, serif;
  font-size: 2rem;
  color: #041368;
}

.columns-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.under-construction {
  text-align: center;
  padding: 10px;
}

.link-list a::before,
.check-list li::before {
  content: ">> ";
  color: #d00051;
  font-weight: 700;
}

.check-list li::before {
  content: "* ";
}

.notice {
  padding: 10px 12px;
  border: 2px dotted #10289b;
  background: #ecf4ff;
}

.retro-form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.form-row {
  display: grid;
  gap: 6px;
}

.field-label {
  font-weight: 700;
  color: #041368;
}

.field-input,
.field-textarea {
  width: 100%;
  padding: 10px 12px;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #2237a2;
  border-bottom: 2px solid #2237a2;
  background: #fffefa;
  color: #10104d;
  font: inherit;
}

.field-textarea {
  min-height: 132px;
  resize: vertical;
}

.field-help {
  min-height: 18px;
  font-size: 12px;
  color: #b00053;
}

.form-alert {
  display: none;
  padding: 10px 12px;
  border: 2px dashed #2237a2;
  background: #f7fbff;
  color: #10289b;
  font-weight: 700;
}

.submit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.submit-row button[disabled] {
  opacity: 0.7;
}

.floating-gif {
  float: right;
  margin: 0 0 8px 12px;
}

@keyframes blink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0.2;
  }
}

@media (max-width: 860px) {
  .masthead-grid,
  .main-layout,
  .spotlight,
  .triptych,
  .card-grid,
  .columns-2 {
    grid-template-columns: 1fr;
  }

  .masthead-contact,
  .logo-stack {
    text-align: left;
  }

  .content-column {
    order: 1;
  }

  .sidebar {
    order: 2;
  }

  .footer-bar .window-body {
    display: block;
  }

  .footer-bar .window-body > * + * {
    margin-top: 8px;
  }
}

@media (max-width: 540px) {
  body {
    font-size: 14px;
  }

  .site-wrap {
    width: min(100% - 12px, 980px);
    margin-top: 8px;
  }

  .hero-copy h1 {
    font-size: 2.15rem;
  }

  .sale-strip p {
    font-size: 12px;
  }

  .main-layout {
    padding: 0 8px 10px;
  }

  .marquee-box,
  .footer-bar {
    margin-left: 8px;
    margin-right: 8px;
  }
}
