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

:root {
  --purple: #321857;
  --purple-light: #4a2578;
  --gold: #D7A96B;
  --gold-soft: rgba(215, 169, 107, 0.15);
  --off-white: #fafaf7;
  --text-dark: #1a1a1a;
  --text-muted: #5a5a5a;
  --lp-green: #45FF00;
  --lp-green-soft: #6ee06e;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--purple);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0 0 6px 6px;
  z-index: 1000;
  font-size: 0.875rem;
}
.skip-link:focus { top: 0; }

/* ===== NAVIGATION ===== */
.nav {
  background: var(--purple);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav__logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
}

.nav__wordmark {
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  line-height: 1.2;
}

.nav__wordmark span {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
}

.nav__links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

.nav__links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  transition: all 0.2s;
}

.nav__links a:hover,
.nav__links a.active {
  color: #fff;
  background: rgba(255,255,255,0.12);
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
}

/* ===== HERO (Home) ===== */
.hero {
  background: var(--purple);
  padding: 4rem 2rem 3rem;
  color: #fff;
}

.hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: var(--gold);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.hero__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn--primary {
  background: var(--gold);
  color: var(--purple);
  position: relative;
  overflow: hidden;
}

.btn--primary:hover {
  background: #e0b878;
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn--outline:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
}

/* StarBorder animated glow on CTA */
.star-border {
  position: relative;
}

.star-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 10px;
  background: conic-gradient(from var(--star-angle, 0deg), transparent 60%, var(--gold) 80%, transparent 100%);
  z-index: -1;
  animation: starRotate 4s linear infinite;
}

@keyframes starRotate {
  to { --star-angle: 360deg; }
}

@property --star-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* Hero launch ticker */
.hero__ticker {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.hero__ticker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lp-green);
  animation: tickerPulse 2s ease-in-out infinite;
}

@keyframes tickerPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Hero product card (SpotlightCard) */
.hero-card {
  background: linear-gradient(135deg, #0d1a0d 0%, #1a2e1a 100%);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(69, 255, 0, 0.15);
  cursor: default;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    400px circle at var(--x, 50%) var(--y, 50%),
    rgba(69, 255, 0, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0;
}

.hero-card:hover::before { opacity: 1; }

.hero-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.hero-card__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero-card__badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--lp-green);
  background: rgba(69, 255, 0, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  white-space: nowrap;
}

.hero-card__icon {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  margin: 1rem auto;
  display: block;
}

.hero-card__tagline {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 1.25rem;
}

.hero-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--lp-green-soft);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  background: rgba(69, 255, 0, 0.08);
  border-radius: 8px;
  transition: background 0.2s;
}

.hero-card__cta:hover {
  background: rgba(69, 255, 0, 0.15);
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 2rem;
}

.section--purple {
  background: var(--purple);
  color: #fff;
}

.section--white {
  background: var(--off-white);
}

.section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section__eyebrow {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section__heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.section__subtext {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.section--purple .section__subtext {
  color: rgba(255,255,255,0.65);
}

/* ===== PRODUCT CARDS (Home) ===== */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.product-card__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.product-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.product-card__badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  white-space: nowrap;
}

.product-card__badge--green {
  color: #2d6a2d;
  background: rgba(69, 255, 0, 0.12);
}

.product-card__badge--gold {
  color: #8a6d3b;
  background: var(--gold-soft);
}

.product-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.product-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.product-card__link {
  color: var(--purple);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-bottom: 2px solid var(--purple);
  padding-bottom: 2px;
  transition: gap 0.2s;
}

.product-card__link:hover { gap: 0.6rem; }

/* LootPick card variant */
.product-card--lp .product-card__link {
  border-color: var(--purple);
}

/* Open Chord card variant */
.product-card--oc .product-card__link {
  color: #8a6d3b;
  border-color: var(--gold);
}

/* ===== VALUE PROP SECTION (Home) ===== */
.value-section {
  text-align: center;
  padding: 5rem 2rem;
}

.value-section .section__subtext {
  margin-left: auto;
  margin-right: auto;
  max-width: 620px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
}

.value-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--purple);
}

.value-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== CTA BANNER (Home) ===== */
.cta-banner {
  background: var(--purple);
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* ===== PRODUCTS PAGE ===== */
.products-hero {
  background: var(--purple);
  padding: 4rem 2rem 3rem;
  color: #fff;
}

.products-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.products-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.75rem;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.products-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 520px;
}

/* Product detail section */
.product-detail {
  padding: 4rem 2rem;
  border-bottom: 3px solid var(--off-white);
}

.product-detail:last-of-type { border-bottom: none; }

.product-detail__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.product-detail__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.product-detail__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
}

.product-detail__title {
  font-size: 1.5rem;
}

.product-detail__subtitle {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  margin-left: calc(56px + 1rem);
}

.product-detail__desc {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 1.5rem;
}

/* Social icon links (icon-only) */
.social-icons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0,0,0,0.04);
  transition: background 0.2s, transform 0.15s;
}

.social-icon:hover {
  background: rgba(0,0,0,0.08);
  transform: translateY(-1px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--text-dark);
}

.social-icon--globe svg {
  fill: none;
  stroke: var(--text-dark);
  stroke-width: 1.8;
}

/* Countdown timers */
.countdown-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.countdown-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  flex: 1;
  min-width: 140px;
}

.countdown-card__label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.countdown-card__platform {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.countdown-card__timer {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--purple);
  letter-spacing: 0.02em;
}

.countdown-card__units {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Product detail LootPick accent */
.product-detail--lp .countdown-card {
  border-color: rgba(69, 255, 0, 0.1);
}

.product-detail--lp .countdown-card__timer {
  color: #2d6a2d;
}

/* Product detail Open Chord accent */
.product-detail--oc {
  border-top: 3px solid var(--purple);
}

.product-detail--oc .countdown-card__timer {
  color: var(--purple);
}

.product-detail__platforms {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.product-detail__platforms a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: var(--purple);
  padding: 5rem 2rem 4rem;
  color: #fff;
}

.about-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  max-width: 600px;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.about-section {
  padding: 4rem 2rem;
}

.about-section__inner {
  max-width: 800px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.about-blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
}

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

.about-services {
  padding: 4rem 2rem;
  background: #fff;
}

.about-services__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.service-item {
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
}

.service-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--purple);
}

.service-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  background: var(--purple);
  padding: 4rem 2rem 3rem;
  color: #fff;
}

.contact-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.contact-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
}

.contact-section {
  padding: 3rem 2rem 4rem;
}

.contact-section__inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

/* Contact form */
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fff;
  margin-bottom: 1.25rem;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--purple);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
}

/* Contact sidebar */
.contact-sidebar {}

.contact-email-block {
  margin-bottom: 2.5rem;
}

.contact-email-block__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact-email-block a {
  font-size: 1rem;
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(0,0,0,0.2);
}

.contact-email-block a:hover {
  text-decoration-color: var(--purple);
}

/* Contact app social groups */
.contact-app-group {
  margin-bottom: 2rem;
}

.contact-app-group__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-app-group__icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.contact-app-group .social-icons {
  margin-bottom: 0;
}

/* ===== PRIVACY PAGES ===== */
.privacy-content {
  padding: 3rem 2rem 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h1 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.privacy-content h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.privacy-content p,
.privacy-content li {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.privacy-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--purple);
  color: #fff;
  padding: 3.5rem 2rem 1.5rem;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer__brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.footer__brand-name span {
  display: block;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}

.footer__tagline {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer__heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
}

.footer__links li { margin-bottom: 0.6rem; }

.footer__links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer__links a:hover { color: #fff; }

.footer__email {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.footer__bottom {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__copyright {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

.footer__privacy {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__privacy:hover { color: rgba(255,255,255,0.8); }

/* ===== 404 PAGE ===== */
.page-404 {
  text-align: center;
  padding: 6rem 2rem;
}

.page-404 h1 {
  font-size: 5rem;
  color: var(--purple);
  margin-bottom: 0.5rem;
}

.page-404 p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ===== SCROLLFLOAT ANIMATION ===== */
.scroll-float {
  overflow: hidden;
}

.scroll-float .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.scroll-float.visible .char {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  /* On mobile, headline first, card second */
  .hero__content { order: 1; }
  .hero-card { order: 2; }

  .hero h1 {
    font-size: 2rem;
    text-align: left;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-section__inner {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Nav mobile */
  .nav__links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--purple);
    flex-direction: column;
    padding: 1rem 2rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav__links.open { display: flex; }

  .nav__links a {
    padding: 0.75rem 1rem;
  }

  .nav__toggle { display: block; }

  /* Countdowns stack */
  .countdown-row {
    flex-direction: column;
  }

  .countdown-card {
    min-width: auto;
  }

  /* Fix mid-word breaks on headings */
  .hero h1,
  .about-hero h1,
  .products-hero h1,
  .contact-hero h1,
  .section__heading {
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
  }

  .section { padding: 3.5rem 1.25rem; }

  .about-section,
  .about-services,
  .product-detail,
  .contact-section { padding-left: 1.25rem; padding-right: 1.25rem; }
}

/* Small phones */
@media (max-width: 380px) {
  .hero h1 { font-size: 1.75rem; }
  .section__heading { font-size: 1.5rem; }
  .nav { padding: 0 1rem; }
  .hero { padding: 3rem 1.25rem 2.5rem; }
}
