/* ============================================
   AEROPILL — Flying Tablet Website
   Aesthetic: All-black luxury pharma
   Palette: Deep black with emerald + gold accents
   Fonts: Fraunces (display serif) + DM Sans (body)
   ============================================ */

:root {
  /* Colors — all black theme */
  --bg-0: #000000;          /* pure black background */
  --bg-1: #0a0a0a;          /* near-black surface */
  --bg-2: #141414;          /* card surface */
  --bg-3: #1c1c1c;          /* elevated card */
  --bg-4: #242424;          /* hover surface */
  --border: rgba(255, 255, 255, 0.08);
  --border-bright: rgba(255, 255, 255, 0.15);
  --text: #f5f5f5;          /* primary text — off-white */
  --text-soft: #b0b0b0;     /* secondary text */
  --text-faint: #707070;    /* tertiary text */
  --accent: #00e580;        /* emerald green — primary accent */
  --accent-deep: #00b865;   /* deeper emerald for hover */
  --accent-glow: rgba(0, 229, 128, 0.25);
  --gold: #d4af37;          /* gold — secondary accent */
  --gold-glow: rgba(212, 175, 55, 0.2);
  --coral: #e8786a;         /* retained coral for product tags */
  --coral-deep: #d4604e;
  --mint: #7fc8a0;
  --mint-deep: #4ea882;
  --leaf: #5ba87a;
  --blue: #6a9ee8;
  --shadow: rgba(0, 0, 0, 0.4);
  --shadow-lg: rgba(0, 0, 0, 0.6);
  --shadow-accent: rgba(0, 229, 128, 0.15);

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --max-w: 1280px;
  --gutter: clamp(1.5rem, 5vw, 5rem);
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-0);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ============================================
   SKY PARTICLES — floating capsule dots
   ============================================ */
.sky-particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.sky-particles .particle {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.15;
  animation: floatParticle linear infinite;
}
.sky-particles .particle:nth-child(odd) {
  background: var(--gold);
  opacity: 0.10;
}
.sky-particles .particle:nth-child(3n) {
  background: var(--accent);
  opacity: 0.12;
  width: 6px; height: 6px;
}
.sky-particles .particle:nth-child(4n) {
  background: var(--mint);
  opacity: 0.08;
  width: 5px; height: 5px;
}
@keyframes floatParticle {
  from { transform: translateY(110vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.15; }
  to { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 50%, var(--gold) 100%);
  color: var(--bg-0);
  font-size: 18px;
}
.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a {
  color: var(--text-soft);
  transition: color 0.25s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:nth-child(2)::after { background: var(--gold); }
.nav-links a:nth-child(4)::after { background: var(--mint); }
.btn-nav {
  background: var(--accent);
  color: var(--bg-0);
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-nav:hover {
  transform: translateY(-1px);
  background: var(--accent-deep);
  box-shadow: 0 8px 30px var(--accent-glow);
}

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

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}
.container.narrow { max-width: 760px; }

.section-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-header h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.section-lead {
  margin-top: 1.5rem;
  font-size: 1.12rem;
  color: var(--text-soft);
  max-width: 58ch;
  line-height: 1.65;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 7vw, 6rem) 0 2rem;
}
.hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  min-height: 78vh;
}
.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text);
}
.hero-headline br { display: block; }
.hero-sub {
  margin-top: 1.8rem;
  font-size: 1.18rem;
  color: var(--text-soft);
  max-width: 48ch;
  line-height: 1.6;
}
.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 20px 60px var(--shadow-lg));
  border-radius: 20px;
}
.float-1 {
  animation: floatGentle 6s ease-in-out infinite;
}
@keyframes floatGentle {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-18px) rotate(1deg); }
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--bg-0);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--accent-deep);
  box-shadow: 0 8px 30px var(--accent-glow);
}
.btn-primary:active { transform: translateY(0); }
.btn-large { padding: 1.1rem 2.5rem; font-size: 1.1rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border-bright);
  color: var(--text);
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: 1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.btn-ghost:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
}

/* Hero marquee */
.hero-marquee {
  margin-top: 3rem;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
  background: rgba(10, 10, 10, 0.5);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.01em;
}
.marquee-track .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
  }
  .hero-visual { order: -1; }
  .hero-img { max-width: 300px; }
}

/* ============================================
   HOW IT WORKS — Steps
   ============================================ */
.how {
  padding: clamp(4rem, 9vw, 8rem) 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.step {
  position: relative;
  padding: 2.5rem 1.8rem;
  background: var(--bg-2);
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-lg);
  border-color: var(--border-bright);
}
.step-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.step:nth-child(2) .step-num { color: var(--gold); }
.step:nth-child(3) .step-num { color: var(--blue); }
.step:nth-child(4) .step-num { color: var(--mint); }
.step:nth-child(2) { border-top: 3px solid var(--gold); }
.step:nth-child(4) { border-top: 3px solid var(--mint); }
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}
.step:nth-child(1) .step-icon { color: var(--accent); }
.step:nth-child(2) .step-icon { color: var(--gold); }
.step:nth-child(3) .step-icon { color: var(--blue); }
.step:nth-child(4) .step-icon { color: var(--mint); }
.step-icon i { font-size: 2.5rem; }
.step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--text);
}
.step p {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ============================================
   VARIANTS — Product cards
   ============================================ */
.variants {
  padding: clamp(4rem, 9vw, 8rem) 0;
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
}
.variants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.variant-card {
  position: relative;
  background: var(--bg-2);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.variant-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px var(--shadow-lg);
  border-color: var(--border-bright);
}
.variant-card.featured {
  box-shadow: 0 8px 40px var(--shadow-accent);
  border-color: var(--accent);
}
.variant-badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: var(--accent);
  color: var(--bg-0);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  z-index: 2;
}
.variant-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-3);
}
.variant-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.variant-card:hover .variant-image img {
  transform: scale(1.05);
}
.variant-body { padding: 2rem 1.8rem 2.2rem; }
.variant-tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.8rem;
}
.variant-card.mint .variant-tag { color: var(--mint); }
.variant-card.mint { border-top: 3px solid var(--mint); }
.variant-card.mint:hover { box-shadow: 0 16px 50px var(--shadow-accent); }
.variant-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: var(--text);
}
.variant-desc {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.variant-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.2rem;
}
.variant-specs dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  margin-bottom: 0.3rem;
}
.variant-specs dd {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text);
}
.variant-price {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--text);
}
.variant-price span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-faint);
}

@media (max-width: 900px) {
  .variants-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

/* ============================================
   SCIENCE — Split section
   ============================================ */
.science {
  padding: clamp(4rem, 9vw, 8rem) 0;
}
.science-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.science-visual {
  position: relative;
}
.science-visual img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px var(--shadow-lg);
}
.science-copy h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.science-copy p {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.science-stats {
  display: flex;
  gap: 2.5rem;
  margin: 2.5rem 0;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-top: 0.4rem;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--accent);
  transition: gap 0.25s ease;
}
.link-arrow:hover { gap: 0.9rem; }
.link-arrow i { font-size: 1.1rem; }

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

/* ============================================
   STORIES — Testimonials
   ============================================ */
.stories {
  padding: clamp(4rem, 9vw, 8rem) 0;
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.story {
  background: var(--bg-2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid var(--border);
}
.story blockquote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--text);
  font-style: italic;
}
.story blockquote::before { content: "\201C"; color: var(--accent); font-size: 1.4em; }
.story blockquote::after { content: "\201D"; color: var(--accent); font-size: 1.4em; }
.story figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.story-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}
.story-role {
  font-size: 0.85rem;
  color: var(--text-faint);
}

@media (max-width: 900px) {
  .stories-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: clamp(4rem, 9vw, 8rem) 0;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: var(--bg-2);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item[open] {
  border-color: var(--accent);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  cursor: pointer;
  list-style: none;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i {
  color: var(--accent);
  font-size: 1.3rem;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item[open] summary i { transform: rotate(180deg); }
.faq-item p {
  padding: 0 1.6rem 1.4rem;
  font-size: 0.98rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ============================================
   ORDER — CTA section
   ============================================ */
.order {
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.order-card {
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border-bright);
  border-radius: 32px;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
  color: var(--text);
  box-shadow: 0 20px 60px var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.order-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--accent-glow);
}
.order-card::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--gold-glow);
}
.order-copy { position: relative; z-index: 1; }
.order-copy h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  color: var(--text);
}
.order-copy p {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.order-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.order-features span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-soft);
}
.order-features i { font-size: 1.15rem; color: var(--accent); }
.order-action {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.order-action .btn-primary {
  background: var(--accent);
  color: var(--bg-0);
  box-shadow: 0 8px 30px var(--accent-glow);
}
.order-action .btn-primary:hover {
  background: var(--accent-deep);
}
.order-note {
  font-size: 0.85rem;
  color: var(--text-faint);
}

@media (max-width: 768px) {
  .order-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 4rem 0 2rem;
  background: var(--bg-0);
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .brand { color: var(--text); margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 40ch;
  color: var(--text-soft);
}
.footer-col h4 {
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  color: var(--text-faint);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-faint);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal:nth-child(2) { transition-delay: 0.08s; }
  .reveal:nth-child(3) { transition-delay: 0.16s; }
  .reveal:nth-child(4) { transition-delay: 0.24s; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .float-1 { animation: none; }
  .marquee-track { animation: none; }
  .sky-particles { display: none; }
}
