/* ============================================
   WakeOnMAC — Global Styles
   Dark theme, green accents, terminal aesthetics
   ============================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* --- Custom Properties --- */
:root {
  --wom-green: #23f878;
  --wom-green-dark: #05ad48;
  --wom-green-glow: rgba(35, 248, 120, 0.15);
  --wom-green-glow-strong: rgba(35, 248, 120, 0.3);
  --wom-bg: #0a0a0a;
  --wom-bg-card: #1a1a1a;
  --wom-bg-card-hover: #222222;
  --wom-border: #262626;
  --wom-border-light: #333333;
  --wom-text: #fafafa;
  --wom-text-muted: #a1a1aa;
  --wom-text-dim: #71717a;
  --wom-danger: #ef4444;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
  --max-width: 1200px;
  --section-padding: 6rem 1.5rem;
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 200ms ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--wom-bg);
  color: var(--wom-text-muted);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--wom-text);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: var(--wom-green);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--wom-green-dark);
}

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

ul, ol {
  list-style: none;
}

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-padding);
}

.section-narrow {
  max-width: 800px;
  margin: 0 auto;
}

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

.text-green {
  color: var(--wom-green);
}

.font-mono {
  font-family: var(--font-mono);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Section Heading --- */
.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--wom-green);
  background: var(--wom-green-glow);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--wom-text-muted);
  max-width: 600px;
}

.section-subtitle.centered {
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--wom-green);
  color: #000;
}
.btn-primary:hover {
  background: var(--wom-green-dark);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--wom-green-glow-strong);
}
.btn-coming-soon {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-coming-soon:hover {
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  background: transparent;
  color: var(--wom-text);
  border: 1px solid var(--wom-border-light);
}
.btn-secondary:hover {
  border-color: var(--wom-green);
  color: var(--wom-green);
}

.btn-ghost {
  background: transparent;
  color: var(--wom-green);
  padding: 0.5rem 1rem;
}
.btn-ghost:hover {
  background: var(--wom-green-glow);
}

.btn-pill {
  border-radius: 999px;
}

.btn-sm {
  font-size: 0.8125rem;
  padding: 0.5rem 1.25rem;
}

.btn-lg {
  font-size: 1rem;
  padding: 1rem 2.25rem;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 1.5rem;
  transition: all 300ms ease;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--wom-border);
  padding: 0.75rem 1.5rem;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--wom-text);
  text-decoration: none;
}
.nav-logo:hover {
  color: var(--wom-green);
}

.nav-logo-icon {
  width: 28px;
  height: 28px;
  background: var(--wom-green);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-icon svg {
  width: 16px;
  height: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--wom-text-muted);
  transition: color var(--transition);
}
.nav-link:hover {
  color: var(--wom-text);
}

.nav-cta {
  margin-left: 0.5rem;
}

/* Mobile menu button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--wom-text);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: all 200ms ease;
  border-radius: 1px;
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--wom-text);
}
.mobile-menu a:hover {
  color: var(--wom-green);
}

.mobile-menu-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--wom-text);
  font-size: 1.75rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
}

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--wom-border);
  padding: 3rem 1.5rem;
  color: var(--wom-text-dim);
  font-size: 0.875rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--wom-text-dim);
  font-size: 0.8125rem;
}
.footer-links a:hover {
  color: var(--wom-text-muted);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 8rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, var(--wom-green-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

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

.hero-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--wom-green);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero h1 .highlight {
  color: var(--wom-green);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--wom-text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-bullets {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
}

.hero-bullets li::before {
  content: '>';
  font-family: var(--font-mono);
  color: var(--wom-green);
  font-weight: 700;
}

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

/* Hero visual: product image + terminal demo */
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-product-wrapper {
  animation: float 6s ease-in-out infinite;
  position: relative;
}

a.hero-product-img,
.hero-product-img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--wom-border);
  background: radial-gradient(ellipse at center, #1a1a1a 0%, #0d0d0d 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 80px var(--wom-green-glow);
  cursor: pointer;
  transition: box-shadow 300ms ease, border-color 300ms ease;
}
a.hero-product-img:hover {
  border-color: var(--wom-green);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 100px var(--wom-green-glow-strong);
}
.hero-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  pointer-events: none;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.3);
}

.hero-terminal {
  margin-top: 1.5rem;
}

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

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    order: -1;
  }
  .hero-product-img {
    max-width: 300px;
  }
}

/* ============================================
   TERMINAL BLOCK
   ============================================ */
.terminal {
  background: #111111;
  border: 1px solid var(--wom-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  line-height: 1.7;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #1a1a1a;
  border-bottom: 1px solid var(--wom-border);
}

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.terminal-dot.red { background: #ff5f57; }
.terminal-dot.yellow { background: #febc2e; }
.terminal-dot.green { background: #28c840; }

.terminal-title {
  margin-left: 0.5rem;
  color: var(--wom-text-dim);
  font-size: 0.75rem;
}

.terminal-body {
  padding: 1rem 1.25rem;
  color: var(--wom-text-muted);
  overflow-x: auto;
}

.terminal-body .prompt {
  color: var(--wom-green);
}

.terminal-body .comment {
  color: var(--wom-text-dim);
}

.terminal-body .string {
  color: #fbbf24;
}

.terminal-body .key {
  color: #60a5fa;
}

.terminal-body .cursor {
  display: inline-block;
  width: 8px;
  height: 1.1em;
  background: var(--wom-green);
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}

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

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem {
  background: linear-gradient(180deg, var(--wom-bg) 0%, #0f0f0f 100%);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.problem-text {
  font-size: 1.0625rem;
  line-height: 1.8;
}

.problem-strikes {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.problem-strike {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}

.problem-strike .strike-text {
  text-decoration: line-through;
  color: var(--wom-text-dim);
}

.problem-strike .strike-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--wom-danger);
  background: rgba(239, 68, 68, 0.1);
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
}

.problem-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.problem-card {
  background: var(--wom-bg-card);
  border: 1px solid var(--wom-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.problem-card-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.problem-card h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.problem-card p {
  font-size: 0.8125rem;
  color: var(--wom-text-dim);
}

@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution {
  text-align: center;
  padding: 6rem 1.5rem;
}

.solution h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 3rem;
}

.solution-statements {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.solution-statement {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--wom-text);
}

.solution-statement em {
  color: var(--wom-green);
  font-style: normal;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: #0f0f0f;
}

.steps-timeline {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  position: relative;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  right: 2.5rem;
  height: 2px;
  background: var(--wom-border);
}

.step-card {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--wom-bg-card);
  border: 2px solid var(--wom-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--wom-green);
}

.step-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.step-card h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.8125rem;
  color: var(--wom-text-dim);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .steps-timeline {
    flex-direction: column;
    gap: 2rem;
  }
  .steps-timeline::before {
    top: 0;
    bottom: 0;
    left: 1.4rem;
    right: auto;
    width: 2px;
    height: auto;
  }
  .step-card {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    text-align: left;
  }
  .step-number {
    margin: 0;
    grid-row: 1 / 3;
  }
  .step-icon {
    display: none;
  }
}

/* ============================================
   DIFFERENTIATORS (Feature Grid)
   ============================================ */
.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-block {
  background: var(--wom-bg-card);
  border: 1px solid var(--wom-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition);
}

.feature-block:hover {
  border-color: var(--wom-border-light);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.feature-block h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.feature-block p {
  font-size: 0.875rem;
  color: var(--wom-text-dim);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .differentiators-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .differentiators-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.product-card {
  background: var(--wom-bg-card);
  border: 1px solid var(--wom-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
  position: relative;
}
.product-card:hover,
.product-card:active {
  border-color: var(--wom-green);
  transform: translateY(-4px);
  box-shadow: 0 0 30px var(--wom-green-glow), 0 12px 40px rgba(0, 0, 0, 0.3);
}
.product-card:hover .carousel-viewport,
.product-card:active .carousel-viewport {
  border-color: rgba(35, 248, 120, 0.2);
}

.product-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.product-badge.available {
  background: var(--wom-green);
  color: #000;
}

.product-badge.coming-soon {
  background: var(--wom-border-light);
  color: var(--wom-text-muted);
}

.product-image {
  width: 100%;
  aspect-ratio: 16/10;
  background: #111;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wom-text-dim);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  border: 1px solid var(--wom-border);
}

/* Product image carousel */
.product-image-carousel {
  width: 100%;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: visible;
}
.carousel-viewport {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--wom-border);
  background: radial-gradient(ellipse at center, #1a1a1a 0%, #0d0d0d 100%);
  cursor: grab;
  position: relative;
}
.carousel-viewport:active {
  cursor: grabbing;
}
.carousel-viewport::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  pointer-events: none;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.carousel-track {
  display: flex;
  transition: transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
}
.carousel-track img {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--wom-border-light);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  position: relative;
}
.carousel-dot::before {
  content: '';
  position: absolute;
  top: -18px;
  left: -18px;
  right: -18px;
  bottom: -18px;
}
.carousel-dot:hover {
  border-color: var(--wom-green);
  transform: scale(1.3);
}
.carousel-dot.active {
  background: var(--wom-green);
  border-color: var(--wom-green);
  box-shadow: 0 0 6px rgba(35, 248, 120, 0.4);
}

/* Carousel arrows */
.carousel-arrow {
  position: absolute;
  top: calc(50% - 1rem);
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid var(--wom-border);
  color: var(--wom-text-muted);
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  padding: 0;
  transition: border-color 200ms ease, color 200ms ease, opacity 200ms ease;
}
.product-image-carousel:hover .carousel-arrow {
  opacity: 1;
}
.carousel-arrow:hover {
  border-color: var(--wom-green);
  color: var(--wom-green);
}
.carousel-arrow.prev { left: -18px; }
.carousel-arrow.next { right: -18px; }

/* Image counter label */
.carousel-counter {
  position: absolute;
  bottom: 0.5rem;
  right: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--wom-text-dim);
  background: rgba(10, 10, 10, 0.7);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  z-index: 2;
  letter-spacing: 0.05em;
  pointer-events: none;
}

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

.product-card .product-subtitle {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--wom-text-dim);
  margin-bottom: 1rem;
}

.product-features {
  flex: 1;
  margin-bottom: 1.5rem;
}

.product-features li {
  font-size: 0.875rem;
  padding: 0.375rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--wom-text-muted);
}

.product-features li::before {
  content: '>';
  font-family: var(--font-mono);
  color: var(--wom-green);
  font-weight: 700;
  font-size: 0.75rem;
}

.product-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--wom-text);
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  letter-spacing: -0.02em;
}

.product-price .currency {
  font-size: 1.25rem;
  font-weight: 600;
  vertical-align: super;
}

.product-price .coming {
  font-size: 1rem;
  font-weight: 600;
  color: var(--wom-text-dim);
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   USE CASES
   ============================================ */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.use-case-card {
  background: var(--wom-bg-card);
  border: 1px solid var(--wom-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition);
}

.use-case-card:hover {
  border-color: var(--wom-border-light);
}

.use-case-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.use-case-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.use-case-card p {
  font-size: 0.9375rem;
  color: var(--wom-text-muted);
  line-height: 1.6;
}

.use-case-card .use-case-quote {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--wom-text-dim);
  margin-top: 0.75rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   TECH SPECS (Terminal style)
   ============================================ */
.specs-terminal {
  max-width: 700px;
  margin: 3rem auto 0;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-key {
  color: var(--wom-text-dim);
}

.spec-value {
  color: var(--wom-green);
  text-align: right;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 700px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: var(--wom-bg-card);
  border: 1px solid var(--wom-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--wom-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: var(--wom-green);
  transition: transform 200ms ease;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item summary:hover {
  color: var(--wom-green);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--wom-text-muted);
  line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  text-align: center;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--wom-green-glow) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  position: relative;
}

.final-cta p {
  font-size: 1.125rem;
  color: var(--wom-text-muted);
  margin-bottom: 2rem;
  position: relative;
}

.final-cta .btn {
  position: relative;
}

/* ============================================
   SHOP PAGE
   ============================================ */
.shop-hero {
  padding: 8rem 1.5rem 3rem;
  text-align: center;
}

.shop-detail {
  padding: 0 1.5rem 4rem;
}

.in-the-box {
  margin-top: 3rem;
}

.in-the-box-list li {
  font-size: 0.9375rem;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--wom-text-muted);
}

.in-the-box-list li::before {
  content: '>';
  font-family: var(--font-mono);
  color: var(--wom-green);
  font-weight: 700;
}

.shipping-info {
  margin-top: 3rem;
  background: var(--wom-bg-card);
  border: 1px solid var(--wom-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.shipping-info h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.shipping-info p {
  font-size: 0.9375rem;
  color: var(--wom-text-muted);
  line-height: 1.7;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  padding: 8rem 1.5rem 3rem;
  text-align: center;
}

.about-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.about-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* --- Legal Pages --- */
.legal-content h3 {
  font-size: 1.125rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.legal-updated {
  font-size: 0.875rem;
  color: var(--wom-text-dim);
  margin-bottom: 2rem;
}

.principles {
  margin-top: 3rem;
}

.principles h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.principles-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.principle-item {
  background: var(--wom-bg-card);
  border: 1px solid var(--wom-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.principle-icon {
  color: var(--wom-green);
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1.4;
}

.principle-item h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.principle-item p {
  font-size: 0.875rem;
  color: var(--wom-text-dim);
  margin-bottom: 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
  padding: 8rem 1.5rem 3rem;
  text-align: center;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.5rem 6rem;
  text-align: center;
}

.contact-tagline {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--wom-text-dim);
  margin-bottom: 3rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  background: var(--wom-bg-card);
  border: 1px solid var(--wom-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.contact-method h3 {
  font-size: 1rem;
  color: var(--wom-text-dim);
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.contact-method a {
  font-size: 1.25rem;
  font-weight: 600;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* ============================================
   INLINE FORMS & SIGNUP
   ============================================ */
.inline-form {
  display: flex;
  gap: 0.5rem;
  max-width: 440px;
  width: 100%;
}

.inline-form-input {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  background: #111;
  color: var(--wom-text);
  border: 1px solid var(--wom-border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-width: 0;
}

.inline-form-input::placeholder {
  color: var(--wom-text-dim);
}

.inline-form-input:focus {
  border-color: var(--wom-green);
  box-shadow: 0 0 0 3px var(--wom-green-glow);
}

.inline-form-stacked {
  flex-direction: column;
}

.signup-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--wom-text-dim);
  margin-bottom: 0.5rem;
}

.form-success {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--wom-green);
}

.form-success::before {
  content: '> ';
}

.form-error {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--wom-danger);
  margin-top: 0.5rem;
}

/* Hero signup */
.hero-signup {
  margin-top: 1.5rem;
}

.hero-signup .signup-label {
  margin-bottom: 0.75rem;
}


/* Trust line under buy buttons */
.trust-line {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--wom-text-dim);
  margin-top: 0.5rem;
  text-align: center;
}

/* Footer signup */
.footer-signup {
  width: 100%;
  border-top: 1px solid var(--wom-border);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}

.footer-signup .signup-label {
  margin-bottom: 0.5rem;
}

.footer-signup .inline-form {
  max-width: 400px;
}

/* Purchase success banner */
.purchase-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: var(--wom-green);
  color: #000;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  padding: 0.75rem 1.5rem;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

.purchase-banner.visible {
  transform: translateY(0);
}

.purchase-banner-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #000;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
}

/* General signup section (used on shop, about, contact) */
.signup-section {
  max-width: 500px;
  margin: 3rem auto 0;
  text-align: center;
}

.signup-section h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.signup-section p {
  font-size: 0.875rem;
  color: var(--wom-text-muted);
  margin-bottom: 1rem;
}

.signup-section .inline-form {
  margin: 0 auto;
}

/* Final CTA signup */
.final-cta-signup {
  margin-top: 1.5rem;
  position: relative;
}

.final-cta-signup .signup-label {
  margin-bottom: 0.75rem;
}

.final-cta-signup .inline-form {
  margin: 0 auto;
}

/* Responsive: stack forms on small screens */
@media (max-width: 480px) {
  .inline-form {
    flex-direction: column;
  }

  .inline-form .btn {
    width: 100%;
  }

  .inline-form-input {
    min-height: 44px;
  }
}

/* ============================================
   CART
   ============================================ */

/* Nav cart icon */
.nav-cart {
  position: relative;
  background: none;
  border: none;
  color: var(--wom-text-muted);
  cursor: pointer;
  padding: 0.5rem;
  transition: color var(--transition);
  line-height: 1;
}
.nav-cart:hover {
  color: var(--wom-green);
}
.nav-cart svg {
  width: 20px;
  height: 20px;
  display: block;
}
.nav-cart-badge {
  position: absolute;
  top: 0;
  right: -2px;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--wom-green);
  color: #000;
  font-size: 0.625rem;
  font-weight: 700;
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.nav-cart-badge:empty {
  display: none;
}
.nav-cart-badge.bump {
  animation: cart-bump 300ms ease;
}
@keyframes cart-bump {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* Cart backdrop */
.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.cart-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* Cart drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 90vw;
  z-index: 1060;
  background: var(--wom-bg);
  border-left: 1px solid var(--wom-border);
  transform: translateX(100%);
  transition: transform 300ms ease;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open {
  transform: translateX(0);
}

/* Cart header */
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--wom-border);
}
.cart-drawer-header h3 {
  font-size: 1.125rem;
  margin: 0;
}
.cart-drawer-close {
  background: none;
  border: none;
  color: var(--wom-text);
  font-size: 1.75rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

/* Cart body */
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}
.cart-empty {
  text-align: center;
  color: var(--wom-text-dim);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  padding: 3rem 0;
}

/* Cart item */
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--wom-border);
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-name {
  color: var(--wom-text);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}
.cart-item-price {
  color: var(--wom-green);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
}

/* Quantity controls */
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--wom-border);
  border-radius: var(--radius);
  background: var(--wom-bg-card);
  color: var(--wom-text);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
.cart-qty-btn:hover {
  border-color: var(--wom-green);
  background: var(--wom-bg-card-hover);
}
.cart-item-qty {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--wom-text);
  min-width: 1.5rem;
  text-align: center;
}
.cart-item-remove {
  background: none;
  border: none;
  color: var(--wom-text-dim);
  font-size: 1.125rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color var(--transition);
}
.cart-item-remove:hover {
  color: var(--wom-danger);
}

/* Cart footer */
.cart-drawer-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--wom-border);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.cart-total-label {
  color: var(--wom-text);
  font-weight: 600;
}
.cart-total-amount {
  color: var(--wom-green);
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
}
.cart-shipping-note {
  font-size: 0.75rem;
  color: var(--wom-text-dim);
  margin-bottom: 1rem;
}
.cart-error {
  color: var(--wom-danger);
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
}
.cart-checkout-btn {
  width: 100%;
}
.cart-checkout-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Mobile cart icon in nav bar */
.nav-cart-mobile {
  display: none;
}

@media (max-width: 768px) {
  .cart-drawer {
    max-width: 100vw;
    width: 100%;
  }
  .nav-cart-mobile {
    display: block;
    position: absolute;
    right: 3.5rem;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* ============================================
   MOBILE OPTIMIZATION
   ============================================ */
@media (max-width: 768px) {
  /* Section padding — less vertical space on mobile */
  .section {
    padding: 4rem 1rem;
  }

  /* Footer — stack vertically, center, wrap links */
  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
  }

  /* Hero product image — larger on mobile */
  a.hero-product-img,
  .hero-product-img {
    max-width: min(85vw, 360px);
  }

  /* Product grid — full width, no max-width constraint */
  .products-grid {
    max-width: none;
  }

  /* Product card buttons — full width for easy tapping */
  .product-card .btn {
    width: 100%;
    justify-content: center;
  }

  /* Feature cards — tighter padding */
  .feature-block {
    padding: 1.5rem;
  }

  /* Use case quotes — smaller on mobile */
  .use-case-card .use-case-quote {
    font-size: 0.75rem;
  }

  /* Terminal blocks — prevent overflow, smaller text */
  .terminal-body {
    font-size: 0.75rem;
    overflow-x: auto;
  }

  /* Cart drawer close — larger touch target */
  .cart-drawer-close {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Consent modal — tighter padding on mobile */
  .consent-modal {
    padding: 1.5rem;
  }

  /* Carousel arrows — always visible on mobile */
  .carousel-arrow {
    opacity: 1;
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }

  /* Cart nav icon — better positioning */
  .nav-cart-mobile {
    right: 3.75rem;
  }

  /* Product card h2 — slightly smaller */
  .product-card h2 {
    font-size: 1.125rem;
  }

  /* Section titles — slightly smaller */
  .section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
}

/* Small phones */
@media (max-width: 380px) {
  .hero {
    padding: 6rem 1rem 3rem;
  }
  .hero h1 {
    font-size: 1.75rem;
  }
  .footer-links {
    gap: 0.5rem 1rem;
  }
  .product-price {
    font-size: 1.5rem;
  }
}

/* ============================================
   COOKIE CONSENT MODAL
   ============================================ */
.consent-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: consentIn 300ms ease;
}
.consent-overlay.consent-fadeout {
  animation: consentOut 200ms ease forwards;
}
.consent-modal {
  background: var(--wom-bg-card);
  border: 1px solid var(--wom-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 420px;
  width: calc(100% - 2rem);
  text-align: center;
  animation: consentModalIn 300ms ease;
}
.consent-fadeout .consent-modal {
  animation: none;
}
.consent-title {
  font-family: var(--font-mono);
  color: var(--wom-green);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.consent-text {
  color: var(--wom-text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.consent-accept {
  width: 100%;
  margin-bottom: 1rem;
}
.consent-decline {
  color: var(--wom-text-dim);
  font-size: 0.8125rem;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  display: block;
  margin: 0 auto;
  padding: 0.5rem;
  transition: color var(--transition);
}
.consent-decline:hover {
  color: var(--wom-text-muted);
}
.consent-privacy {
  color: var(--wom-text-dim);
  font-size: 0.75rem;
  margin-top: 1rem;
}
.consent-privacy a {
  color: var(--wom-text-dim);
}
.consent-privacy a:hover {
  color: var(--wom-text-muted);
}
@keyframes consentIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes consentModalIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes consentOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-page {
  background: #f8f8f8;
}

.checkout-nav {
  background: var(--wom-bg);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--wom-border);
}
.checkout-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout-back-link {
  color: var(--wom-text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
}
.checkout-back-link:hover {
  color: var(--wom-text);
}

.checkout-main {
  min-height: calc(100vh - 60px);
  min-height: calc(100dvh - 60px);
  padding: 2rem 1.5rem;
}

.checkout-container {
  max-width: 1200px;
  margin: 0 auto;
}

.checkout-shipping-note {
  font-size: 0.75rem;
  color: #999;
  margin-top: 0.75rem;
}

.checkout-form-area {
  min-height: 400px;
}

.checkout-loading {
  text-align: center;
  padding: 4rem 2rem;
  color: #888;
  font-size: 0.9375rem;
}
.checkout-error {
  text-align: center;
  padding: 3rem 2rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e5e5;
}
.checkout-error p {
  color: #666;
  margin-bottom: 1rem;
}
.checkout-error a {
  color: var(--wom-green-dark);
}

.checkout-success {
  max-width: 560px;
  margin: 4rem auto;
  text-align: center;
  padding: 3rem 2rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e5e5;
}
.checkout-success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.checkout-success h2 {
  color: #0a0a0a;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.checkout-success p {
  color: #666;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.checkout-success .btn {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .checkout-main {
    padding: 1rem;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
