/* ═══════════════════════════════════════════════════════════════
   EmailGPT Landing Page — styles.css
   Brand: teal #0d9488 · amber #fcd34d
   Typography: DM Serif Display (headings) + DM Sans (body)
   Aesthetic: editorial precision, high-contrast geometry, warm
   ═══════════════════════════════════════════════════════════════ */

/* ── Brand Tokens ── */
:root {
  --teal:        #0d9488;
  --teal-light:  #14b8a6;
  --teal-dark:   #0a7168;
  --teal-muted:  #ccfbf1;
  --amber:       #fcd34d;
  --amber-dark:  #f59e0b;

  --ink:         #0f1923;
  --ink-light:   #334155;
  --ink-muted:   #64748b;
  --surface:     #f8fafc;
  --surface-2:   #f1f5f9;
  --white:       #ffffff;
  --border:      #e2e8f0;
  --border-dark: #cbd5e1;

  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.16), 0 8px 24px rgba(0,0,0,.08);
  --shadow-teal: 0 8px 32px rgba(13,148,136,.28);

  --nav-h: 64px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

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

ul { list-style: none; }

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

/* ── Container ── */
.container {
  width: min(100%, 1180px);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

/* ── Section header ── */
.section-header {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--ink);
  margin-top: 10px;
}

.section-header--light h2 {
  color: var(--white);
}

.section-kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-muted);
  padding: 4px 12px;
  border-radius: 99px;
}

.section-header--light .section-kicker {
  background: rgba(255,255,255,.15);
  color: var(--amber);
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

/* Wordmark */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.wordmark-text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.02em;
}

.wordmark--light .wordmark-text { color: var(--white); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 6px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-light);
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--teal);
  background: var(--teal-muted);
  outline: none;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  padding-top: clamp(60px, 8vw, 100px);
}

/* Background geometry */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13,148,136,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,148,136,.07) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, black 0%, transparent 70%);
  mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, black 0%, transparent 70%);
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 65%;
  height: 100%;
  background: radial-gradient(ellipse at 60% 30%, rgba(13,148,136,.22) 0%, rgba(13,148,136,.08) 40%, transparent 70%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  padding-bottom: 0;
}

/* Hero copy */
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(252,211,77,.1);
  border: 1px solid rgba(252,211,77,.3);
  padding: 5px 14px;
  border-radius: 99px;
}

.badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--teal-light);
}

.hero-tagline {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.65;
  color: rgba(255,255,255,.7);
  max-width: 52ch;
}

.hero-tagline strong {
  color: var(--white);
  font-weight: 500;
}

/* CTA */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.cta-primary {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.version-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,.45);
  padding-left: 4px;
  min-height: 1em;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s, opacity .15s;
  text-decoration: none;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.btn-download {
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}

.btn-download:hover,
.btn-download:focus-visible {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(13,148,136,.36);
}

.btn-download:active { transform: translateY(0); }

/* Task 3 fallback state — script.js adds this when download URL unavailable */
.btn-download.is-disabled {
  pointer-events: none;
  opacity: .6;
}

.btn-secondary {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.18);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255,255,255,.14);
  color: var(--white);
}

.btn-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-ambient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, transparent, rgba(13,148,136,.12));
  pointer-events: none;
}

.app-frame {
  width: 100%;
  max-width: 580px;
  background: #1e293b;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,.06);
  position: relative;
}

.app-frame-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: #111827;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.frame-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
}

.frame-dot:first-child { background: #ff5f57; }
.frame-dot:nth-child(2) { background: #febc2e; }
.frame-dot:nth-child(3) { background: #28c840; }

.app-frame-img {
  width: 100%;
  display: block;
}

/* Hero stat bar */
.hero-stat-bar {
  margin-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

.stat-list {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 160px;
  padding: 12px 24px;
}

.stat-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.stat-item span {
  font-size: 0.8rem;
  color: rgba(255,255,255,.5);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   FEATURES
══════════════════════════════════════ */
.features {
  padding: clamp(64px, 8vw, 110px) 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,148,136,.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .2s;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--teal-muted);
}

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

.feature-card--accent {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.feature-card--accent::before {
  background: linear-gradient(135deg, rgba(13,148,136,.25) 0%, transparent 60%);
}

.feature-card--accent:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
}

/* Two classes (.feature-card.feature-card--accent) so these win over the later,
   equal-specificity base `.feature-card h3/p` rules — otherwise the accent
   card's title renders --ink (dark) on its dark background and disappears. */
.feature-card.feature-card--accent h3 { color: var(--white); }
.feature-card.feature-card--accent p { color: rgba(255,255,255,.7); }

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-muted);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.feature-card--accent .feature-icon {
  background: rgba(13,148,136,.2);
  color: var(--teal-light);
}

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-muted);
  flex: 1;
}

.feature-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: rgba(252,211,77,.15);
  border: 1px solid rgba(252,211,77,.3);
  padding: 3px 10px;
  border-radius: 99px;
  width: fit-content;
}

/* ══════════════════════════════════════
   SCREENSHOTS / SHOWCASE
══════════════════════════════════════ */
.showcase {
  position: relative;
  padding: clamp(64px, 8vw, 110px) 0;
  background: var(--ink);
  overflow: hidden;
}

.showcase-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13,148,136,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,148,136,.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.showcase .container { position: relative; }

.showcase-layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 24px;
  align-items: start;
}

/* Main image */
.showcase-main { flex: 1; }

.showcase-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,.06);
  background: var(--ink-light);
}

.showcase-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity .25s;
}

/* Thumbnails */
.showcase-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.thumbnail {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background .15s, border-color .15s, transform .15s;
  text-align: left;
  overflow: hidden;
}

.thumbnail:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.2);
  transform: translateX(-2px);
}

.thumbnail:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

.thumbnail.active {
  background: rgba(13,148,136,.2);
  border-color: var(--teal);
}

.thumbnail img {
  width: 56px;
  height: 36px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.thumbnail span {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  line-height: 1.2;
  display: block;
}

.thumbnail.active span { color: var(--white); }

/* ══════════════════════════════════════
   DOWNLOAD
══════════════════════════════════════ */
.download {
  padding: clamp(64px, 8vw, 110px) 0;
  background: var(--surface);
}

.download-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 5vw, 64px);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.download-card::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 55%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(13,148,136,.06) 0%, transparent 65%);
  pointer-events: none;
}

.download-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.download-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  color: var(--ink);
  margin-top: 6px;
}

.download-copy p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 46ch;
}

.download-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-top: 8px;
}

.download-cta .version-label {
  color: var(--ink-muted);
  padding-left: 4px;
}

/* System requirements */
.sysreqs {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}

.sysreqs-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.sysreqs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sysreqs-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ink-light);
}

.sysreqs-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--teal-muted);
  border-radius: 50%;
  color: var(--teal);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: var(--ink);
  padding: clamp(40px, 5vw, 60px) 0 32px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,.45);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,.6);
  transition: color .15s;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--teal-light);
  outline: none;
}

.footer-links a:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
  border-radius: 3px;
}

.footer-bottom {
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,.3);
}

/* ══════════════════════════════════════
   RESPONSIVE — tablet (≤ 1024px)
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-layout {
    grid-template-columns: 1fr;
  }

  .showcase-thumbs {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .thumbnail {
    flex: 1;
    min-width: 100px;
  }

  .thumbnail img {
    width: 44px;
    height: 28px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — mobile (≤ 768px)
══════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px 16px;
    box-shadow: var(--shadow-md);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 10px 14px;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .hero-visual {
    order: -1;
  }

  .app-frame {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  .stat-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  .stat-item:last-child { border-bottom: none; }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Showcase thumbs */
  .showcase-thumbs {
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 8px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.2) transparent;
  }

  .thumbnail {
    flex-shrink: 0;
    min-width: 120px;
  }

  /* Download */
  .download-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — small mobile (≤ 480px)
══════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .cta-primary {
    width: 100%;
  }

  .cta-primary .btn {
    width: 100%;
  }
}

/* ══════════════════════════════════════
   ACCESSIBILITY — focus + reduced motion
══════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .badge::before {
    animation: none;
  }
}

/* ══════════════════════════════════════
   SCROLL ANIMATIONS (progressive enhancement)
══════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
  .feature-card {
    animation: fade-up .5s ease both;
  }

  .feature-card:nth-child(1) { animation-delay: .05s; }
  .feature-card:nth-child(2) { animation-delay: .10s; }
  .feature-card:nth-child(3) { animation-delay: .15s; }
  .feature-card:nth-child(4) { animation-delay: .20s; }
  .feature-card:nth-child(5) { animation-delay: .25s; }
  .feature-card:nth-child(6) { animation-delay: .30s; }

  @keyframes fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @supports (animation-timeline: view()) {
    .feature-card {
      animation: fade-up linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 35%;
    }
  }
}
