﻿:root {
  color-scheme: dark;
  --background: #071F13;
  --surface: #0D331F;
  --primary: #4ADE80;
  --secondary: #86EFAC;
  --surface-secondary: #124A2A;
  --text: #F1FFF5;
  --muted: #A6D9B7;
  --border: #256B3B;
  --button-text: #071F13;
  --glow: #4ADE80;
  font-family: Tahoma, "Leelawadee UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--background);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px 15px;
  background: var(--background);
}
.page { width: min(100%, 370px); text-align: center; }
.header { padding: 0 10px 16px; }
.wordmark, .footer-brand {
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  overflow-wrap: anywhere;
  margin: 0;
}
.wordmark {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: -.6px;
  font-style: italic;
  color: var(--primary);
  -webkit-text-stroke: 1.2px var(--secondary);
  paint-order: stroke fill;
  text-shadow: 0 2px 0 var(--surface-secondary), 0 4px 0 var(--background), 0 6px 12px var(--background);
}
.typing {
  position: relative;
  margin: 0 0 18px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  column-gap: .4em;
  row-gap: 2px;
}
.search-prefix { flex: none; white-space: nowrap; }
.typing-keyword { position: relative; display: inline-block; min-width: 0; max-width: 100%; }
.typing-text { display: block; overflow-wrap: anywhere; color: var(--primary); }
.typing-cursor { display: none; position: absolute; color: var(--primary); pointer-events: none; line-height: 1; }
.typing-keyword[data-enhanced] .typing-cursor { display: block; animation: cursor-blink 1s step-end infinite; }
@keyframes cursor-blink { 0%, 45% { opacity: 1; } 50%, 95% { opacity: 0; } }
.master-promo { margin: 0; width: 100%; max-width: 100%; }

@media (prefers-reduced-motion: reduce) {
  .typing-text { clip-path: none !important; }
  .typing-keyword[data-enhanced] .typing-cursor { display: none; animation: none; }
}
.actions { display: grid; gap: 10px; margin-top: 12px; }
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.button-primary { position: relative; isolation: isolate; background: var(--primary); border-color: var(--primary); color: var(--button-text); }
.button-primary::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 12px var(--glow), 0 0 25px var(--glow);
  opacity: .2;
  animation: signup-glow 2.4s ease-in-out infinite;
}
@keyframes signup-glow { 0%, 100% { opacity: .2; } 50% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .button-primary::before { animation: none; opacity: .35; } }
.button-secondary { background: var(--surface); color: var(--primary); border-color: var(--primary); }
.button-primary:hover { background: var(--secondary); border-color: var(--secondary); }
.button-secondary:hover { background: var(--surface-secondary); }
.button:focus-visible { outline: 3px solid var(--text); outline-offset: 4px; }
.button:disabled { opacity: 1; cursor: default; }
.button-primary:disabled:hover { background: var(--primary); border-color: var(--primary); }
.button-secondary:disabled:hover { background: var(--surface); }
.footer { margin-top: 20px; color: var(--muted); }
.footer-brand { color: var(--text); font-size: 14px; line-height: 1.5; letter-spacing: .5px; }
.copyright { margin: 5px 0 0; font-size: 12px; line-height: 1.7; }
@media (max-width: 374px) {
  .wordmark { font-size: 30px; }
}
@media (max-height: 700px) {
  body { padding-block: 20px; }
  .header { padding-bottom: 16px; }
}

.promo-card { min-height: 370px; padding: 25px 22px; border: 1px solid var(--border); border-radius: 16px; background: var(--surface); display: flex; flex-direction: column; justify-content: center; gap: 17px; }
.promo-label { margin: 0; color: var(--primary); font-size: 13px; letter-spacing: .3px; }
.promo-title { margin: 0; font-size: 23px; line-height: 1.5; }
.offers { display: grid; gap: 10px; }
.offer { padding: 15px 9px; background: var(--surface-secondary); border: 1px solid var(--border); border-radius: 10px; font-size: 19px; line-height: 1.5; }
.offer strong { color: var(--primary); font-size: 26px; white-space: nowrap; }
.promo-note, .service-copy, .availability { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.8; overflow-wrap: anywhere; }
.service-copy { margin: 13px 2px 0; }
.availability { margin-top: 10px; }
@media (max-width: 374px) {
  .promo-card { min-height: 340px; padding: 22px 15px; }
  .offer { font-size: 17px; }
  .offer strong { font-size: 23px; }
}
