/* ===== CSS Variables ===== */
:root {
  --bg-dark: #0a0a0f;
  --bg-card: #12121a;
  --bg-card-hover: #1a1a26;
  --red: #b22234;
  --red-bright: #dc143c;
  --blue: #002868;
  --blue-bright: #1e3a8a;
  --white: #f5f5f5;
  --gold: #c9a227;
  --text-muted: #9ca3af;
  --border: rgba(255, 255, 255, 0.08);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* American flag peeking behind the dark background */
.flag-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.1;
  pointer-events: none;
  overflow: hidden;
}

.flag-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.flag-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: var(--bg-dark);
  opacity: 0.82;
  pointer-events: none;
}

body > *:not(.flag-bg):not(.flag-overlay) {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

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

img {
  max-width: 100%;
  display: block;
}

/* ===== Urgency Bar ===== */
.urgency-bar {
  background: linear-gradient(90deg, var(--red) 0%, var(--blue) 50%, var(--red) 100%);
  color: var(--white);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.urgency-flag {
  font-size: 1rem;
}

/* ===== Header ===== */
.header {
  background: rgba(10, 10, 15, 0.88);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.logo-star {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-bright) 0%, var(--red) 100%);
  color: var(--white);
  border: 2px solid var(--gold);
  box-shadow: 0 4px 20px rgba(178, 34, 52, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(178, 34, 52, 0.6);
  background: linear-gradient(135deg, var(--red) 0%, var(--red-bright) 100%);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  border-radius: 4px;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  border-radius: 6px;
}

.btn-xl {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
  border-radius: 6px;
}

.btn-full {
  width: 100%;
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
  border-radius: 6px;
}

.btn-arrow {
  font-size: 1.2em;
  transition: transform 0.2s;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 4rem 0 5rem;
  text-align: center;
  overflow: hidden;
  background: rgba(10, 10, 15, 0.55);
}

.hero-bg-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 10%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 40%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 70%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 80%, rgba(255,255,255,0.15) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 15%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(2px 2px at 45% 50%, rgba(201,162,39,0.4) 0%, transparent 100%),
    radial-gradient(2px 2px at 65% 85%, rgba(201,162,39,0.3) 0%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-title-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

@media (max-width: 640px) {
  .hero-title-block {
    flex-direction: column-reverse;
  }

  .hero-title {
    text-align: center;
  }
}

.hero-box-image {
  flex-shrink: 0;
  animation: float 4s ease-in-out infinite;
}

.hero-box-image svg {
  width: clamp(180px, 28vw, 320px);
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 30px rgba(201, 162, 39, 0.15));
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-badge {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: left;
}

.hero-title-line {
  display: block;
}

.hero-title-accent {
  color: var(--red-bright);
  text-shadow: 0 0 40px rgba(220, 20, 60, 0.4);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-offer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.offer-free {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.offer-divider {
  font-size: 1.5rem;
  color: var(--text-muted);
}

.offer-shipping {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(0, 40, 104, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: 1px solid var(--blue-bright);
}

.hero-trust {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-stripes {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0px,
    var(--red) 40px,
    var(--white) 40px,
    var(--white) 80px,
    var(--blue) 80px,
    var(--blue) 120px
  );
}

/* ===== Sections ===== */
.section {
  padding: 5rem 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  text-align: center;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.text-red {
  color: var(--red-bright);
}

/* ===== Cards Grid ===== */
.whats-inside {
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.92) 0%, rgba(18, 18, 26, 0.94) 50%, rgba(10, 10, 15, 0.92) 100%);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.3);
  background: var(--bg-card-hover);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== Steps ===== */
.how-it-works {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 15, 0.88);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.step {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  padding: 1rem;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  margin-top: 2.5rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .step-connector {
    display: none;
  }
}

/* ===== Value Prop ===== */
.value-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.value-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.value-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.value-list {
  list-style: none;
}

.value-list li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-weight: 600;
}

.value-list li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.value-visual {
  display: flex;
  justify-content: center;
}

.box-preview {
  width: 280px;
  background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1a 100%);
  border: 3px solid var(--gold);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 162, 39, 0.1);
  transform: perspective(800px) rotateY(-5deg);
}

.box-preview-top,
.box-preview-bottom {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
}

.box-preview-bottom {
  background: var(--blue);
  font-size: 0.75rem;
}

.box-preview-body {
  padding: 3rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 20px,
      rgba(255,255,255,0.02) 20px,
      rgba(255,255,255,0.02) 21px
    );
}

.box-star {
  color: var(--gold);
  font-size: 1.5rem;
}

.box-label {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: var(--white);
}

@media (max-width: 768px) {
  .value-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .value-list li {
    text-align: left;
  }
}

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.88) 0%, rgba(0, 40, 104, 0.35) 50%, rgba(10, 10, 15, 0.88) 100%);
  text-align: center;
}

.cta-inner {
  max-width: 600px;
}

.cta-flag {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.cta-note {
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
  font-size: 0.85rem;
  font-style: italic;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  text-align: center;
  background: rgba(10, 10, 15, 0.9);
}

.value-prop {
  background: rgba(10, 10, 15, 0.85);
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-disclaimer {
  color: var(--text-muted);
  font-size: 0.8rem;
  max-width: 600px;
  margin: 0 auto 1rem;
  line-height: 1.5;
}

.footer-copy {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
}

/* ===== Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-card);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--white);
}

.modal-flag {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.modal h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
  color: var(--red-bright);
}

.modal-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.email-form input {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.email-form input::placeholder {
  color: rgba(255,255,255,0.3);
}

.email-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.modal-privacy {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--blue);
  border: 1px solid var(--gold);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s, opacity 0.4s, visibility 0.4s;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  max-width: 90%;
}

.toast.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.toast-icon {
  background: var(--gold);
  color: var(--bg-dark);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
