/* HostGator static bundle styles (no build required) */

:root {
  /* Design tokens (HSL) */
  --background: 0 0% 100%;
  --foreground: 270 50% 10%;

  --card: 0 0% 100%;
  --border: 270 20% 90%;

  --primary: 45 95% 53%;
  --secondary: 270 60% 15%;

  --muted: 270 20% 95%;
  --muted-foreground: 270 10% 40%;

  --mystic-dark: 270 60% 12%;
  --mystic-purple: 270 50% 20%;
  --mystic-gold: 45 95% 53%;
  --mystic-gold-light: 45 90% 65%;
  --mystic-cream: 45 30% 96%;

  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a:hover {
  text-decoration: underline;
}

button {
  font: inherit;
}

.safe-area-top {
  padding-top: env(safe-area-inset-top);
}

.container {
  width: min(100% - 32px, 1100px);
  margin-inline: auto;
}

.center {
  text-align: center;
}

.section {
  padding: 56px 0;
}

@media (min-width: 640px) {
  .section {
    padding: 72px 0;
  }
}

.bg-background {
  background: hsl(var(--background));
}

.bg-cream {
  background: hsl(var(--mystic-cream));
}

.bg-dark {
  background: hsl(var(--mystic-dark));
}

.bg-mystic-gradient {
  background: linear-gradient(180deg, hsl(270 60% 12%) 0%, hsl(270 50% 20%) 100%);
}

.text-gold {
  color: hsl(var(--mystic-gold));
}

.section-title {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  font-size: clamp(22px, 3.5vw, 40px);
}

.section-title.light {
  color: white;
}

.section-subtitle {
  margin: 0 0 32px;
  color: hsl(var(--muted-foreground));
  font-size: 16px;
  line-height: 1.6;
}

.section-subtitle.light {
  color: hsl(0 0% 100% / 0.72);
}

/* Countdown */
.countdown-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #dc2626;
  color: #fff;
  padding: 10px 10px;
}

.countdown-inner {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 13px;
}

.countdown-dash {
  display: none;
}

@media (min-width: 420px) {
  .countdown-dash {
    display: inline;
  }
}

.countdown-timer {
  background: rgba(0, 0, 0, 0.3);
  padding: 6px 10px;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New";
  font-weight: 800;
}

/* Hero */
.hero {
  min-height: 60vh;
  display: grid;
  place-items: center;
  padding: 64px 0;
  text-align: center;
}

@media (min-width: 640px) {
  .hero {
    min-height: 70vh;
    padding: 80px 0;
  }
}

.hero-inner {
  width: min(100%, 880px);
}

.hero-emoji {
  font-size: 56px;
  margin-bottom: 14px;
}

.hero-title {
  margin: 0 0 16px;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(28px, 4.5vw, 56px);
}

.hero-subtitle {
  margin: 0 auto 14px;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  font-size: clamp(15px, 2.2vw, 20px);
}

.hero-subtitle strong {
  color: #fff;
}

.hero-price {
  margin: 12px 0 8px;
  color: hsl(var(--mystic-gold));
  font-weight: 900;
  font-size: clamp(18px, 2.6vw, 28px);
}

.hero-note {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.hero-dots {
  display: inline-flex;
  gap: 8px;
  margin-top: 22px;
}

.hero-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-dots span.active {
  background: #fff;
}

/* Buttons */
.btn-gold {
  appearance: none;
  border: none;
  cursor: pointer;
  background: hsl(var(--primary));
  color: hsl(var(--foreground));
  font-weight: 900;
  border-radius: 999px;
  padding: 16px 24px;
  min-height: 44px;
  min-width: 44px;
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
  box-shadow: 0 10px 30px -14px hsl(45 95% 53% / 0.55);
  animation: pulse-glow 2s ease-in-out infinite;
}

.btn-gold:hover {
  transform: scale(1.03);
  filter: brightness(1.02);
}

.btn-gold:active {
  transform: scale(0.98);
}

.btn-outline {
  appearance: none;
  cursor: pointer;
  width: 100%;
  border-radius: 14px;
  border: 2px solid hsl(var(--primary));
  background: transparent;
  color: hsl(var(--primary));
  font-weight: 800;
  padding: 16px 16px;
  min-height: 44px;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.btn-outline:hover {
  background: hsl(var(--primary));
  color: hsl(var(--foreground));
}

.btn-outline:active {
  transform: scale(0.98);
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 5px hsl(45 95% 53% / 0.4), 0 0 20px hsl(45 95% 53% / 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 15px hsl(45 95% 53% / 0.6), 0 0 40px hsl(45 95% 53% / 0.3);
    transform: scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn-gold {
    animation: none;
  }
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 860px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

/* Pain */
.pain-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 14px;
  background: hsl(var(--muted) / 0.5);
}

.pain-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: hsl(var(--primary) / 0.12);
  font-size: 22px;
}

.pain-card p {
  margin: 4px 0 0;
  color: hsl(var(--foreground) / 0.82);
  font-size: 17px;
  line-height: 1.4;
}

.callout-dark {
  margin-top: 24px;
  background: hsl(var(--mystic-dark));
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.callout-dark p {
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.5;
}

/* Gold cards */
.revelations-grid {
  margin-top: 18px;
}

.gold-card {
  background: hsl(var(--primary));
  color: hsl(var(--foreground));
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 800;
}

.gold-card .emoji {
  font-size: 26px;
}

.gold-card p {
  margin: 0;
  line-height: 1.25;
}

/* VSL */
.vsl {
  width: min(100%, 900px);
}

.vsl-lead {
  margin: 0 auto 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.55;
}

.video-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 30px 70px -35px rgba(0, 0, 0, 0.65);
}

.video-aspect {
  position: relative;
  padding-top: 56.25%;
}

.video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Portal */
.portal-grid {
  margin-top: 24px;
}

.portal-item {
  text-align: center;
}

.portal-badge {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: hsl(var(--primary) / 0.18);
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  font-size: 26px;
}

.portal-item h3 {
  margin: 0 0 6px;
  color: #fff;
  font-weight: 900;
}

.portal-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

/* Choice */
.kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: hsl(var(--primary));
  font-weight: 800;
}

.hint {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: hsl(var(--muted-foreground));
  font-weight: 600;
}

/* Cards / Pricing / Testimonials */
.card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) + 4px);
  padding: 18px;
  box-shadow: 0 12px 30px -22px rgba(0, 0, 0, 0.22);
}

@media (min-width: 640px) {
  .card {
    padding: 22px;
  }
}

.card h3 {
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.muted {
  margin: 0 0 16px;
  color: hsl(var(--muted-foreground));
  font-size: 14px;
  line-height: 1.5;
}

.features {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: hsl(var(--foreground) / 0.82);
  font-size: 14px;
}

.price {
  margin-top: 18px;
  text-align: center;
}

.price-main {
  font-weight: 950;
  font-size: 30px;
  margin-bottom: 12px;
}

.price-old {
  color: hsl(var(--muted-foreground));
  text-decoration: line-through;
  margin-bottom: 8px;
  font-size: 13px;
}

.price-main .accent {
  color: hsl(var(--primary));
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 22px;
}

@media (min-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
}

.card-featured {
  border: 2px solid hsl(var(--primary));
  position: relative;
  padding-top: 30px;
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: hsl(var(--primary));
  color: hsl(var(--foreground));
  font-weight: 950;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
}

.testimonials-grid {
  margin-top: 22px;
}

.stars {
  color: hsl(var(--primary));
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-size: 16px;
}

.quote {
  margin: 0 0 12px;
  font-style: italic;
  color: hsl(var(--foreground) / 0.82);
  line-height: 1.55;
}

.name {
  margin: 0;
  font-weight: 800;
}

/* Guarantee */
.social-proof {
  margin: 0 0 18px;
  color: hsl(var(--mystic-purple));
  font-weight: 800;
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.seal {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: hsl(var(--secondary));
  color: #fff;
  margin: 0 auto 16px;
  font-size: 32px;
}

.guarantee-items {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  color: hsl(var(--muted-foreground));
  font-size: 13px;
}

.guarantee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Footer */
.footer {
  padding: 32px 0;
}

.footer-copy {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.footer-nav {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
}

.footer-nav a:hover {
  color: rgba(255, 255, 255, 1);
}
