/* =========================================================
   3DOLLARVPN — retro 90s / Web 1.0 coming-soon page
   Hand-crafted. No framework. Web-safe palette, system fonts.
   ========================================================= */

:root {
  --navy:   #000080;
  --blue:   #1084d0;
  --teal:   #008080;
  --silver: #c0c0c0;
  --gray:   #808080;
  --darkgray:#404040;
  --white:  #ffffff;
  --black:  #000000;
  --lime:   #00ff00;
  --yellow: #ffff00;
}

/* ---------- reset-ish ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
  margin: 0;
  padding: 0 0 24px;
  font-family: "Arial", "Helvetica", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
  background-color: var(--teal);
  /* subtle tiled background drawn in CSS — no binary asset */
  background-image:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px,
      transparent 1px, transparent 7px);
}

img { max-width: 100%; height: auto; }

a { color: var(--navy); }
a:visited { color: #551a8b; }

/* skip-link / screen-reader-only */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* =========================================================
   TOP MARQUEE
   ========================================================= */
.marquee {
  background: var(--navy);
  color: var(--yellow);
  font-family: "Courier New", monospace;
  font-weight: bold;
  font-size: 14px;
  padding: 4px 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 2px solid var(--black);
}
.marquee__track {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 22s linear infinite;
}
@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* =========================================================
   MASTHEAD
   ========================================================= */
.masthead {
  text-align: center;
  padding: 20px 12px 8px;
  color: var(--white);
}
.ascii-logo {
  display: inline-block;
  margin: 0 auto;
  padding: 12px 16px;
  font-family: "Courier New", monospace;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.15;
  color: var(--lime);
  background: var(--black);
  border-top: 2px solid var(--gray);
  border-left: 2px solid var(--gray);
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  text-align: left;
  white-space: pre;
  overflow-x: auto;
  max-width: 100%;
}
.masthead__title {
  font-family: "Times New Roman", Times, serif;
  font-size: 34px;
  letter-spacing: 2px;
  margin: 6px 0 2px;
  color: var(--yellow);
  text-shadow: 2px 2px 0 var(--navy);
}
.masthead__tagline {
  margin: 0;
  font-family: "Courier New", monospace;
  color: var(--white);
  font-size: 15px;
}

/* =========================================================
   FAUX WINDOW
   ========================================================= */
.window {
  background: var(--silver);
  border-top: 2px solid var(--white);
  border-left: 2px solid var(--white);
  border-right: 2px solid var(--darkgray);
  border-bottom: 2px solid var(--darkgray);
  box-shadow: 1px 1px 0 var(--black);
  max-width: 760px;
  margin: 18px auto;
}
.window--highlight {
  outline: 3px ridge var(--yellow);
}

.title-bar {
  background: linear-gradient(90deg, var(--navy), var(--blue));
  color: var(--white);
  font-weight: bold;
  font-size: 14px;
  font-family: "Arial", sans-serif;
  padding: 3px 4px 3px 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.title-bar__text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.title-bar__buttons { display: flex; gap: 2px; flex-shrink: 0; }
.title-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 16px;
  background: var(--silver);
  color: var(--black);
  border-top: 1px solid var(--white);
  border-left: 1px solid var(--white);
  border-right: 1px solid var(--darkgray);
  border-bottom: 1px solid var(--darkgray);
  font-size: 11px;
  line-height: 1;
}

.window__body { padding: 16px 20px 20px; }
.window__body--center { text-align: center; }

/* =========================================================
   HERO + ICON GRID
   ========================================================= */
.hero__headline {
  font-family: "Times New Roman", Times, serif;
  font-size: 24px;
  margin: 4px 0 2px;
  color: var(--navy);
}
.hero__sub {
  margin: 0 0 16px;
  font-family: "Courier New", monospace;
  color: var(--gray);
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.icon-grid__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 6px;
  text-decoration: none;
  color: var(--black);
  background: var(--silver);
  border-top: 2px solid var(--white);
  border-left: 2px solid var(--white);
  border-right: 2px solid var(--gray);
  border-bottom: 2px solid var(--gray);
  text-align: center;
}
.icon-grid__item:hover,
.icon-grid__item:focus {
  background: #d4d0c8;
  outline: 1px dotted var(--navy);
}
.icon-grid__item:active {
  border-top: 2px solid var(--gray);
  border-left: 2px solid var(--gray);
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
}
.icon-grid__glyph { font-size: 30px; line-height: 1; }
.icon-grid__label { font-size: 13px; font-weight: bold; }
.icon-grid__item--cta { background: #dfe8c0; }
.icon-grid__item--cta .icon-grid__label { color: var(--navy); }

/* =========================================================
   PITCH
   ========================================================= */
.pitch__price {
  font-family: "Times New Roman", Times, serif;
  font-size: 40px;
  margin: 0 0 12px;
  color: var(--navy);
  line-height: 1.1;
}
.pitch__per { font-size: 24px; color: var(--black); }
.pitch__body { margin: 0 0 12px; }
.pitch__what {
  border-top: 1px dashed var(--gray);
  padding-top: 12px;
  font-size: 15px;
}

/* "NEW!" blinking badge — the ONE blinking element on the page */
.badge-new {
  display: inline-block;
  vertical-align: middle;
  background: var(--lime);
  color: var(--black);
  font-family: "Arial", sans-serif;
  font-size: 14px;
  font-weight: bold;
  padding: 1px 6px;
  margin-left: 6px;
  border: 1px solid var(--black);
}
.blink { animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* =========================================================
   GENERIC SECTION HEADINGS
   ========================================================= */
.section__h2 {
  font-family: "Times New Roman", Times, serif;
  font-size: 24px;
  color: var(--navy);
  margin: 0 0 14px;
  border-bottom: 2px groove var(--white);
  padding-bottom: 6px;
}

/* steps */
.steps { margin: 0; padding-left: 18px; }
.steps__item { margin-bottom: 10px; }

/* =========================================================
   PRICING
   ========================================================= */
.price-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.price-card {
  background: var(--white);
  border-top: 2px solid var(--gray);
  border-left: 2px solid var(--gray);
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  padding: 14px;
  text-align: center;
}
.price-card--pro { background: #fffbe0; outline: 2px solid var(--navy); }
.price-card__name {
  margin: 0 0 6px;
  font-family: "Courier New", monospace;
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--teal);
}
.price-card__amount {
  font-family: "Times New Roman", Times, serif;
  font-size: 34px;
  margin: 0 0 10px;
  color: var(--navy);
}
.price-card__per { font-size: 15px; color: var(--gray); }
.price-card__list {
  list-style: none;
  margin: 0; padding: 0;
  text-align: left;
  font-size: 14px;
}
.price-card__list li { padding: 3px 0 3px 18px; position: relative; }
.price-card__list li::before {
  content: "\2714"; /* check */
  position: absolute; left: 0; color: var(--teal); font-weight: bold;
}
.price-note {
  margin: 14px 0 0;
  text-align: center;
  font-style: italic;
  font-size: 14px;
  color: var(--darkgray);
}

/* =========================================================
   WAITLIST FORM
   ========================================================= */
.waitlist {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}
.input-95 {
  width: 100%;
  max-width: 340px;
  padding: 7px 8px;
  font-family: "Courier New", monospace;
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  border-top: 2px solid var(--gray);
  border-left: 2px solid var(--gray);
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
}
.input-95:focus { outline: 2px solid var(--navy); }
.input-95.is-error { outline: 2px solid #c00000; background: #ffecec; }

.btn-95 {
  background: var(--silver);
  border-top: 2px solid var(--white);
  border-left: 2px solid var(--white);
  border-right: 2px solid var(--gray);
  border-bottom: 2px solid var(--gray);
  padding: 6px 14px;
  font-family: "Arial", sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: var(--black);
  cursor: pointer;
}
.btn-95:hover { background: #d4d0c8; }
.btn-95:focus { outline: 1px dotted var(--navy); outline-offset: 2px; }
.btn-95:active {
  border-top: 2px solid var(--gray);
  border-left: 2px solid var(--gray);
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
}
.btn-95--big { font-size: 16px; padding: 8px 18px; }

.waitlist__msg {
  min-height: 1.4em;
  margin: 0;
  font-family: "Courier New", monospace;
  font-size: 14px;
  font-weight: bold;
}
.waitlist__msg.is-ok { color: #006000; }
.waitlist__msg.is-bad { color: #c00000; }

/* =========================================================
   RENEWAL PROMISE BOX
   ========================================================= */
.promise-box {
  background: var(--navy);
  color: var(--white);
  border: 3px ridge var(--yellow);
  padding: 16px 18px;
}
.promise-box__title {
  margin: 0 0 10px;
  text-align: center;
  color: var(--yellow);
  font-family: "Times New Roman", Times, serif;
  font-size: 22px;
}
.promise-box__lead { font-size: 18px; margin: 0 0 10px; text-align: center; }
.promise-box__lead em { color: var(--yellow); font-style: normal; }
.promise-box__list { margin: 0; padding-left: 20px; }
.promise-box__list li { margin-bottom: 8px; }
.promise-box a, .promise-box__list strong { color: var(--yellow); }

/* =========================================================
   LINKS, 90s style
   ========================================================= */
.link-90s {
  color: var(--navy);
  text-decoration: underline;
  font-weight: bold;
}
.link-90s[aria-disabled="true"] { color: var(--gray); cursor: not-allowed; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  max-width: 760px;
  margin: 24px auto 0;
  padding: 16px 20px;
  text-align: center;
  color: var(--white);
  font-size: 14px;
}

/* under-construction barber-pole (pure CSS, replaces the classic GIF) */
.under-construction {
  margin: 0 auto 16px;
  max-width: 420px;
  padding: 8px 10px;
  background: repeating-linear-gradient(
    45deg,
    var(--yellow) 0, var(--yellow) 14px,
    var(--black) 14px, var(--black) 28px
  );
  background-size: 40px 40px;
  animation: barber 1.2s linear infinite;
  border: 2px solid var(--black);
}
@keyframes barber { to { background-position: 40px 0; } }
.under-construction__sign {
  display: inline-block;
  background: var(--black);
  color: var(--yellow);
  font-family: "Courier New", monospace;
  font-weight: bold;
  padding: 4px 10px;
}

.footer__counter { margin: 0 0 10px; font-family: "Courier New", monospace; }
.counter {
  display: inline-block;
  background: var(--black);
  color: var(--lime);
  font-family: "Courier New", monospace;
  font-weight: bold;
  letter-spacing: 3px;
  padding: 2px 8px;
  border: 1px inset var(--gray);
}
.footer__line { margin: 6px 0; }
.footer__badge {
  display: inline-block;
  background: var(--silver);
  color: var(--black);
  font-family: "Courier New", monospace;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 6px;
  margin: 2px;
  border-top: 1px solid var(--white);
  border-left: 1px solid var(--white);
  border-right: 1px solid var(--darkgray);
  border-bottom: 1px solid var(--darkgray);
}
.footer__copy { margin: 12px 0 0; font-size: 13px; }
.footer__copy a { color: var(--yellow); }

/* =========================================================
   RESPONSIVE — the modern upgrade: fluid under 768px
   ========================================================= */
@media (max-width: 768px) {
  .window, .footer { margin-left: 10px; margin-right: 10px; }
  .ascii-logo { font-size: 7px; }
  .masthead__title { font-size: 26px; }
  .icon-grid { grid-template-columns: repeat(2, 1fr); }
  .pitch__price { font-size: 32px; }
  .price-table { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .icon-grid { grid-template-columns: 1fr; }
  .ascii-logo { font-size: 6px; }
}

/* =========================================================
   ACCESSIBILITY — respect reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; padding-left: 0; }
  .blink { animation: none; }
  .under-construction { animation: none; }
  html { scroll-behavior: auto; }
}
