/* ============================================
   Little Scripture Travelers — Brand Stylesheet
   Navy + Gold + Stars
   ============================================ */

:root {
  /* Brand colors */
  --navy-deep:    #07112e;
  --navy-mid:     #0d1b4b;
  --navy-light:   #1a2c6b;
  --navy-surface: #162258;
  --gold:         #F5C518;
  --gold-hover:   #e0b010;
  --gold-dark:    #c99a00;
  --white:        #ffffff;
  --white-90:     rgba(255,255,255,0.9);
  --white-70:     rgba(255,255,255,0.7);
  --white-40:     rgba(255,255,255,0.4);
  --white-15:     rgba(255,255,255,0.12);
  --white-08:     rgba(255,255,255,0.07);

  /* Type — brand guide: Fredoka (display), Nunito (body/UI), Anton (accent caps only) */
  --font-display: 'Fredoka', 'Arial Rounded MT Bold', sans-serif;
  --font-body:    'Nunito', Arial, sans-serif;
  --font-accent:  'Anton', Impact, sans-serif;

  /* Scale */
  --text-xs:   clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-hero: clamp(2.4rem, 1rem + 5vw, 5rem);

  /* Spacing */
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --content-default: 1100px;
  --content-wide:    1300px;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-full: 9999px;
  --transition: 200ms cubic-bezier(0.16,1,0.3,1);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--white);
  background-color: var(--navy-deep);
  min-height: 100dvh;
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
ul[role="list"] { list-style: none; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }
h1,h2,h3,h4,h5,h6 { text-wrap: balance; line-height: 1.2; font-family: var(--font-display); }
p, li { text-wrap: pretty; max-width: 72ch; }
::selection { background: rgba(245,197,24,0.3); color: var(--white); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: var(--radius-sm); }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }

/* ========== LAYOUT ========== */
.container {
  max-width: var(--content-default);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.section-pad { padding-block: clamp(var(--space-12), 8vw, var(--space-24)); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.7em 1.6em;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); box-shadow: 0 4px 20px rgba(245,197,24,0.4); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover { background: rgba(245,197,24,0.1); }
.btn-lg { padding: 0.85em 2em; font-size: var(--text-base); }
.btn-sm { padding: 0.55em 1.2em; font-size: var(--text-xs); }

/* ========== SECTION TYPOGRAPHY ========== */
.section-label {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
h2 {
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--white);
  margin-bottom: var(--space-4);
}
.section-sub {
  font-size: var(--text-base);
  color: var(--white-70);
  max-width: 58ch;
  margin-bottom: var(--space-10);
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7,17,46,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245,197,24,0.15);
  transition: box-shadow 0.3s;
}
.header-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: 72px;
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark svg { flex-shrink: 0; }
.logo-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--gold);
  line-height: 1.2;
}
.logo-sub {
  font-family: var(--font-display);
  font-size: 0.65rem;
  color: var(--white-70);
  letter-spacing: 0.05em;
  display: block;
}
.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex;
  gap: var(--space-6);
  list-style: none;
  flex-wrap: nowrap;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white-90);
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
}
.main-nav a:hover { color: var(--gold); }
.nav-cta { margin-left: var(--space-4); flex-shrink: 0; }
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-nav {
  display: none;
  background: var(--navy-deep);
  border-top: 1px solid rgba(245,197,24,0.15);
  padding: var(--space-6);
}
.mobile-nav ul { flex-direction: column; gap: var(--space-4); list-style: none; display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--white);
}
.mobile-nav.open { display: block; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, #1e3a8a 0%, #0d1b4b 40%, #07112e 100%);
}

/* Animated starfield */
.hero-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 8%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 40% 20%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 5%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 12%, rgba(255,255,255,0.9) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 85% 18%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 92% 6%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 35%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 42%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 48% 38%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 62% 45%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 78% 30%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 5% 55%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 20% 60%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 70%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 65%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 65% 58%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 62%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 95% 50%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(2px 2px at 33% 25%, rgba(245,197,24,0.5) 0%, transparent 100%),
    radial-gradient(2px 2px at 67% 32%, rgba(245,197,24,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 12% 48%, rgba(245,197,24,0.3) 0%, transparent 100%);
  animation: twinkle 4s ease-in-out infinite alternate;
}
@keyframes twinkle {
  0% { opacity: 0.8; }
  100% { opacity: 1; }
}

/* Clouds */
.hero-clouds { position: absolute; inset: 0; pointer-events: none; }
.cloud {
  position: absolute;
  bottom: 12%;
  width: 340px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(245,180,80,0.55) 0%, rgba(245,140,40,0.3) 50%, transparent 80%);
  filter: blur(18px);
}
.cloud-left { left: -60px; bottom: 14%; }
.cloud-right { right: -60px; bottom: 14%; }
.cloud-2 {
  width: 200px;
  height: 100px;
  background: radial-gradient(ellipse at center, rgba(245,200,100,0.4) 0%, transparent 70%);
  filter: blur(12px);
}
.cloud-left.cloud-2 { left: 160px; bottom: 8%; }
.cloud-right.cloud-2 { right: 160px; bottom: 8%; }

/* Ground glow */
.hero-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(245,140,20,0.18) 0%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: var(--space-16) var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.star-burst {
  animation: pulse-star 3s ease-in-out infinite;
  margin-bottom: var(--space-2);
}
@keyframes pulse-star {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.12); filter: brightness(1.3); }
}
.hero h1 {
  font-size: var(--text-hero);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-2);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--gold);
  font-weight: 700;
  max-width: 55ch;
  text-align: center;
}
.hero-desc {
  font-size: var(--text-base);
  color: var(--white-70);
  max-width: 54ch;
  text-align: center;
}
.hero-actions { margin-top: var(--space-4); }
.hero-note {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  color: var(--gold);
  font-style: italic;
}

/* ========== WAYS SECTION ========== */
.ways-section { background: var(--navy-mid); }
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-2);
}
.way-card {
  background: var(--white-08);
  border: 1.5px solid rgba(245,197,24,0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.way-card:hover { border-color: var(--gold); background: var(--white-15); transform: translateY(-3px); }
.way-card--featured { border-color: var(--gold); background: rgba(245,197,24,0.07); }
.way-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
}
.way-badge {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}
.way-card h3 {
  font-size: var(--text-lg);
  color: var(--gold);
  font-weight: 900;
}
.way-card p { font-size: var(--text-sm); color: var(--white-70); flex: 1; }

/* ========== TRAVELERS ========== */
.travelers-section { background: var(--navy-deep); }
.travelers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}
.traveler-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.traveler-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.traveler-card h3 { font-size: var(--text-lg); color: var(--gold); font-weight: 900; }
.traveler-title { font-family: var(--font-display); font-size: var(--text-sm); color: var(--gold); font-weight: 700; }
.traveler-phrase { font-size: var(--text-sm); color: var(--white-70); font-style: italic; }
.traveler-card p:last-child { font-size: var(--text-xs); color: var(--white-40); font-family: var(--font-display); letter-spacing: 0.05em; }
.travelers-note {
  text-align: center;
  color: var(--white-70);
  font-style: italic;
  font-size: var(--text-sm);
  max-width: 55ch;
  margin: 0 auto;
}

/* ========== HOW IT WORKS ========== */
.how-section { background: var(--navy-mid); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}
.step-card {
  background: var(--white-08);
  border: 1.5px solid rgba(245,197,24,0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.step-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 0.25em 0.8em;
  border-radius: var(--radius-full);
  width: fit-content;
}
.step-card h3 { font-size: var(--text-base); color: var(--gold); font-weight: 800; }
.step-card p { font-size: var(--text-sm); color: var(--white-70); }

/* ========== INSIDE SECTION ========== */
.inside-section { background: var(--navy-deep); }
.inside-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
.inside-text { display: flex; flex-direction: column; gap: var(--space-4); }
.inside-text h2 { font-size: var(--text-xl); }
.inside-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  list-style: none;
}
.inside-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--white-90);
  border-bottom: 1px solid var(--white-15);
  padding-bottom: var(--space-3);
}
.star-bullet { color: var(--gold); font-size: 0.8em; flex-shrink: 0; margin-top: 0.25em; }
.inside-quote {
  color: var(--gold);
  font-size: var(--text-sm);
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: var(--space-4);
  margin-top: var(--space-2);
}
.video-placeholder {
  background: rgba(26,44,107,0.6);
  border: 2px solid rgba(245,197,24,0.35);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-12);
  text-align: center;
  min-height: 280px;
  cursor: pointer;
  transition: border-color var(--transition);
}
.video-placeholder:hover { border-color: var(--gold); }
.video-placeholder p { color: var(--white-70); font-family: var(--font-display); font-weight: 700; }
.play-btn { cursor: pointer; transition: transform var(--transition); }
.play-btn:hover { transform: scale(1.08); }
.video-placeholder--lg { min-height: 380px; }

/* ========== BOOKS ========== */
.books-section { background: var(--navy-mid); }
.books-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}
.book-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-6);
  background: var(--white-08);
  border: 1.5px solid rgba(245,197,24,0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-items: start;
}
.book-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.book-info {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.book-meta {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.book-card h3 { font-size: var(--text-lg); color: var(--white); font-weight: 900; }
.book-card p { font-size: var(--text-sm); color: var(--white-70); }
.book-actions { display: flex; flex-direction: column; gap: var(--space-3); margin-top: auto; }
.book-placeholder-card {
  background: var(--white-08);
  border: 1.5px dashed rgba(245,197,24,0.25);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-placeholder-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-10);
}
.book-placeholder-inner p { color: var(--white-70); font-family: var(--font-display); font-weight: 700; }
.book-placeholder-sub { font-size: var(--text-xs); color: var(--white-40); font-family: var(--font-body); }
.books-cta { text-align: center; }

/* ========== SUBSCRIBE ========== */
.subscribe-section {
  background: radial-gradient(ellipse at 50% 0%, #1a3080 0%, #0d1b4b 60%, #07112e 100%);
  position: relative;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-10);
  align-items: start;
}
.plan-card {
  background: var(--white-08);
  border: 1.5px solid rgba(245,197,24,0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
  overflow: visible;
}
.plan-card:hover { border-color: var(--gold); transform: translateY(-3px); }

/* Hover preview overlay */
.plan-preview {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0d1b4b 0%, #07112e 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  overflow-y: auto;
  border: 1.5px solid var(--gold);
}
.plan-card:hover .plan-preview {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.plan-preview-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.25rem;
}
.plan-preview-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.plan-preview-item .pi-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  line-height: 1.4;
}
.plan-preview-item .pi-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.plan-preview-item .pi-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
}
.plan-preview-item .pi-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.45;
}
.plan-preview-cta {
  margin-top: auto;
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  opacity: 0.8;
}

/* ── Plan card media slot ── */
.plan-preview-media {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}
.plan-preview-media img,
.plan-preview-media video {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
.plan-preview-media-placeholder {
  width: 100%;
  height: 120px;
  border: 2px dashed rgba(244,200,66,0.35);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  color: rgba(255,255,255,0.3);
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  text-align: center;
  padding: 0.5rem;
}
.plan-preview-media-placeholder .pm-icon {
  font-size: 1.6rem;
  opacity: 0.4;
}
.plan-card--featured {
  border-color: var(--gold);
  background: rgba(245,197,24,0.08);
  transform: scale(1.03);
}
.plan-card--featured:hover { transform: scale(1.03) translateY(-3px); }
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 0.25em 0.9em;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.plan-icon { font-size: 2rem; }
.plan-name { font-size: var(--text-lg); color: var(--gold); font-weight: 900; }
.plan-price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.plan-price span { font-size: var(--text-sm); color: var(--white-40); font-weight: 400; }
.plan-family { font-family: var(--font-display); font-size: var(--text-xs); color: var(--gold); font-weight: 700; margin-top: -0.75rem; }
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}
.plan-features li { font-size: var(--text-xs); color: var(--white-70); line-height: 1.5; }
.free-story-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-10);
  border: 1.5px solid rgba(245,197,24,0.2);
  border-radius: var(--radius-lg);
  background: var(--white-08);
}
.free-story-cta p { color: var(--white-70); }
.free-story-cta strong { color: var(--gold); }

/* ========== WATCH ========== */
.watch-section { background: var(--navy-deep); }
.youtube-embed { margin-bottom: var(--space-8); }
.youtube-tagline {
  text-align: center;
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--gold);
  max-width: 60ch;
  margin: 0 auto;
}

/* ========== TESTIMONIAL ========== */
.testimonial-section {
  background: var(--navy-mid);
  position: relative;
}
.testimonial-inner {
  text-align: center;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.stars-row { color: var(--gold); font-size: 1.3rem; letter-spacing: 0.2em; }
.quote-mark { font-size: 4rem; color: var(--gold); line-height: 0.5; font-family: var(--font-display); }
blockquote {
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  max-width: 70ch;
}
cite {
  font-style: normal;
  color: var(--white-70);
  font-size: var(--text-sm);
}
cite strong { color: var(--gold); display: block; }

/* ========== OUR STORY ========== */
.story-section { background: var(--navy-deep); }
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}
.story-text { display: flex; flex-direction: column; gap: var(--space-4); }
.story-text p { color: var(--white-70); font-size: var(--text-base); }
.story-text strong { color: var(--white); }
.pull-quote {
  background: var(--white-08);
  border: 1.5px solid rgba(245,197,24,0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: sticky;
  top: 100px;
}
.pull-quote cite { color: var(--gold); font-size: var(--text-sm); }

/* ========== BLOG ========== */
.blog-section { background: var(--navy-mid); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.blog-card {
  background: var(--white-08);
  border: 1.5px solid rgba(245,197,24,0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: border-color var(--transition), transform var(--transition);
}
.blog-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.blog-icon { font-size: 2rem; }
.blog-card h3 { font-size: var(--text-base); color: var(--white); font-weight: 800; }
.blog-card p { font-size: var(--text-sm); color: var(--white-70); flex: 1; }
.blog-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--gold);
  transition: color var(--transition);
}
.blog-link:hover { color: var(--white); }

/* ========== FINAL CTA ========== */
.final-cta {
  background: radial-gradient(ellipse at 50% 50%, #1a3080 0%, #07112e 70%);
}
.final-cta-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}
.final-cta h2 { font-size: var(--text-2xl); }
.final-cta p { color: var(--white-70); max-width: 55ch; font-size: var(--text-lg); }
.final-actions { display: flex; gap: var(--space-4); flex-wrap: wrap; justify-content: center; }

/* ========== FOOTER ========== */
.site-footer {
  background: #04091c;
  border-top: 1px solid rgba(245,197,24,0.15);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  padding-block: var(--space-12);
}
.footer-brand { display: flex; flex-direction: column; gap: var(--space-4); }
.footer-brand p { font-size: var(--text-sm); color: var(--white-40); max-width: 30ch; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 900;
  color: var(--gold);
  margin-bottom: var(--space-4);
  letter-spacing: 0.05em;
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-2); list-style: none; }
.footer-col a { font-size: var(--text-sm); color: var(--white-70); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(245,197,24,0.1);
  padding: var(--space-6) var(--space-6);
  max-width: var(--content-default);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer-bottom p { font-size: var(--text-xs); color: var(--white-40); }
.social-links { display: flex; gap: var(--space-4); }
.social-links a {
  color: var(--white-40);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.social-links a:hover { color: var(--gold); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-card--featured { transform: none; }
  .plan-card--featured:hover { transform: translateY(-3px); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .travelers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .ways-grid { grid-template-columns: 1fr; max-width: 500px; margin-inline: auto; }
  .inside-layout { grid-template-columns: 1fr; }
  .story-layout { grid-template-columns: 1fr; }
  .books-grid { grid-template-columns: 1fr; }
  .book-card { grid-template-columns: 1fr; }
  .book-card img { height: 200px; }
  .blog-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .nav-cta { display: none; }
  .mobile-menu-btn { display: flex; }
}

@media (max-width: 640px) {
  .plans-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .travelers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .final-actions { flex-direction: column; align-items: center; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3.5rem); }
}

/* ══════════════════════════════════════════
   Sub-page shared nav & footer styles
   (books, subscribe, watch, our-story, blog)
   ══════════════════════════════════════════ */

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(7,17,46,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,197,24,0.12);
  transition: background 0.3s;
}
.nav.scrolled {
  background: rgba(7,17,46,0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}
.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(245,197,24,0.5);
}
.nav-brand {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 0.88rem;
  color: #fff;
  line-height: 1.2;
}
.nav-brand em {
  font-style: normal;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}
.nav-links a {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links .nav-cta {
  background: var(--gold);
  color: #07112e !important;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-weight: 900;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(245,197,24,0.4);
  color: var(--gold);
  font-size: 1.3rem;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-mobile {
  display: none;
  list-style: none;
  flex-direction: column;
  gap: 0;
  background: rgba(7,17,46,0.98);
  border-top: 1px solid rgba(245,197,24,0.12);
  padding: var(--space-4) 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  padding: var(--space-3) var(--space-6);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, background 0.2s;
}
.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--gold);
  background: rgba(245,197,24,0.06);
}

/* Sub-page body top padding (for fixed nav) */
.subpage-body { padding-top: 68px; }

/* Footer shared */
.footer, .site-footer {
  background: #04091c;
  border-top: 1px solid rgba(245,197,24,0.15);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-16) var(--space-6) var(--space-10);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
}
.footer-brand p {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 28ch;
  margin-top: var(--space-4);
}
.footer-logo-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(245,197,24,0.35);
}
.footer-col h4, .footer-links h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}
.footer-col ul, .footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer-col a, .footer-links a {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover, .footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: var(--space-6) var(--space-6);
  text-align: center;
}
.footer-bottom p {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* Sub-page star-divider */
.star-divider {
  text-align: center;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.5em;
  margin: var(--space-4) 0;
}

/* Responsive sub-page nav */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ===== EMAIL SIGNUP SECTION ===== */
.signup-section {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
  border-top: 1px solid rgba(245,197,24,0.12);
  border-bottom: 1px solid rgba(245,197,24,0.12);
}
.signup-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .signup-inner { grid-template-columns: 1fr; gap: var(--space-8); }
}
.signup-sub {
  color: rgba(248,241,221,0.75);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: var(--space-6);
}
.signup-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.signup-perks li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(244,200,66,0.85);
  font-weight: 600;
}

/* Signup card */
.signup-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,197,24,0.25);
  border-radius: 20px;
  padding: var(--space-8);
  backdrop-filter: blur(8px);
}
.signup-card-label {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-6);
  display: block;
}
.lst-mc-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
}
.lst-mc-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.lst-mc-field label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(248,241,221,0.75);
  letter-spacing: 0.04em;
}
.lst-mc-field .req { color: var(--gold); }
.lst-mc-field input {
  background: rgba(10,26,74,0.6);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.lst-mc-field input::placeholder { color: rgba(248,241,221,0.35); }
.lst-mc-field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.15);
}
.signup-btn {
  margin-top: var(--space-2);
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
}
.signup-privacy {
  margin-top: var(--space-3);
  font-size: 0.78rem;
  color: rgba(248,241,221,0.4);
  text-align: center;
}
.signup-privacy a {
  color: rgba(245,197,24,0.6);
  text-decoration: none;
}
.signup-privacy a:hover { color: var(--gold); }

/* ── PATRIOT RIBBON (America 250th — active July 2026) ─────────────────── */
.patriot-ribbon {
  background: linear-gradient(90deg, #b22234 0%, #8b1a27 20%, #07112e 50%, #8b1a27 80%, #b22234 100%);
  border-bottom: 2px solid #f4c842;
  text-align: center;
  padding: 8px 16px;
  position: relative;
  z-index: 50;
}
.patriot-ribbon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.patriot-ribbon-stars {
  color: #f4c842;
  font-size: 0.75rem;
  letter-spacing: 4px;
}
.patriot-ribbon-text {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(0.78rem, 2vw, 0.95rem);
  color: #fff;
  letter-spacing: 0.04em;
}
.patriot-ribbon-text span {
  color: #f4c842;
  font-weight: 700;
}

/* ── NAV DROPDOWNS — Church-style full-width panel ──────────────────── */

.main-nav li.has-dropdown { position: static; }
.main-nav li.has-dropdown > a { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-arrow { font-size: 0.55rem; opacity: 0.8; transition: transform 0.2s; display: inline-block; }
.main-nav li.has-dropdown.open .nav-arrow { transform: rotate(180deg); }

/* Full-width dropdown panel — fixed, spans full viewport width */
.nav-dropdown-panel {
  display: block;
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 72px; /* overridden by JS */
  background: #0d1b4b;
  border-top: 2px solid #f4c842;
  border-bottom: 1px solid rgba(244,200,66,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  z-index: 10000;
  padding: 1.75rem 0;
}
.main-nav li.has-dropdown.open .nav-dropdown-panel {
  visibility: visible;
  pointer-events: auto;
}

/* Inner grid: centered, max-width container */
.nav-dropdown-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 320px));
  justify-content: start;
  gap: 0.5rem 3rem;
}

/* Each dropdown item — title + description */
.nav-dropdown-item {
  display: block;
  padding: 0.85rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
  min-width: 0;
}
.nav-dropdown-item:hover {
  background: rgba(244,200,66,0.1);
}
.nav-dropdown-item-title {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #f4c842;
  margin-bottom: 0.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-dropdown-item-desc {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
  word-break: break-word;
}

/* Keep old .nav-dropdown hidden on desktop — replaced by .nav-dropdown-panel */
/* Mobile overrides this inside the @media block below */
@media (min-width: 901px) {
  .nav-dropdown { display: none !important; }
}

/* ── Mobile dropdown behavior (inside hamburger menu) ───────────────── */
@media (max-width: 900px) {
  /* Dropdowns in the desktop bar stay hidden on mobile — mobile uses .mobile-nav */
  .nav-dropdown-panel { display: none !important; }
  .main-nav .nav-arrow { display: none; }

  /* Mobile nav dropdown items — inline accordion style */
  .mobile-nav li.has-dropdown { position: relative; }
  .mobile-nav li.has-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .mobile-nav .nav-arrow {
    display: inline-block;
    font-size: 0.75rem;
    opacity: 0.7;
    transition: transform 0.25s;
    margin-left: 6px;
    flex-shrink: 0;
  }
  .mobile-nav li.has-dropdown.open .nav-arrow { transform: rotate(180deg); }

  /* Dropdown panel inside mobile menu */
  .mobile-nav .nav-dropdown {
    display: none;
    position: static;
    transform: none;
    background: rgba(255,255,255,0.06);
    border: none;
    border-left: 3px solid rgba(244,200,66,0.4);
    border-radius: 0 0 8px 8px;
    box-shadow: none;
    padding: 0.25rem 0 0.5rem 0.75rem;
    margin-top: 0.25rem;
    min-width: unset;
    flex-direction: column;
    gap: 0;
    list-style: none;
    z-index: auto;
  }
  .mobile-nav li.has-dropdown.open .nav-dropdown {
    display: flex;
  }
  .mobile-nav .nav-dropdown li a {
    font-family: 'Nunito', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    padding: 0.45rem 0.5rem;
    display: block;
    text-decoration: none;
    border-radius: 4px;
    white-space: normal;
    transition: color 0.15s;
  }
  .mobile-nav .nav-dropdown li a:hover,
  .mobile-nav .nav-dropdown li a:active { color: #f4c842; }
}

/* ── Cancel Subscription Button ─────────────────────────────────────── */
.btn-cancel-sub {
  display: block;
  width: 100%;
  margin-top: 0.65rem;
  padding: 0.6rem 1rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: rgba(255,255,255,0.45);
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-align: center;
}
.btn-cancel-sub:hover,
.btn-cancel-sub:focus {
  border-color: rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.75);
  outline: none;
}

/* ── Cancel Subscription Modal ───────────────────────────────────────── */
.cancel-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7,17,46,0.88);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.cancel-modal-overlay.open {
  display: flex;
}
.cancel-modal-box {
  position: relative;
  background: #0d1b4b;
  border: 2px solid #f4c842;
  border-radius: 16px;
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.25rem 2rem 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.cancel-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}
.cancel-modal-close:hover { color: #f4c842; }
.cancel-modal-icon {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 0.75rem;
}
.cancel-modal-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: #f4c842;
  text-align: center;
  margin: 0 0 0.6rem;
}
.cancel-modal-intro {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  text-align: center;
  margin-bottom: 1.25rem;
}
.cancel-modal-steps {
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  padding-left: 1.4rem;
  margin: 0 0 1.25rem;
}
.cancel-modal-steps li {
  margin-bottom: 0.75rem;
}
.cancel-modal-steps li strong {
  color: #fff;
}
.cancel-modal-note {
  background: rgba(244,200,66,0.08);
  border-left: 3px solid #f4c842;
  border-radius: 6px;
  padding: 0.85rem 1rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.cancel-modal-note strong { color: #f4c842; }
.cancel-modal-store-btn {
  display: block;
  text-align: center;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid rgba(244,200,66,0.4);
  border-radius: 50px;
  color: rgba(255,255,255,0.55);
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.cancel-modal-store-btn:hover {
  border-color: #f4c842;
  color: #f4c842;
}
