/* ========================================
   NährWert — Apple-Clean Landing Page
   Outfit 300/500/800 · Emerald Accent
   ======================================== */

/* --- Fonts (self-hosted) --- */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('../fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('../fonts/outfit-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

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

:root {
  --black: #000;
  --white: #fff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-800: #262626;
  --gray-900: #171717;

  --emerald: #2D8B5E;
  --emerald-light: #34D399;
  --emerald-glow: rgba(45, 139, 94, 0.15);

  --bg: var(--white);
  --bg-subtle: var(--gray-50);
  --text: var(--black);
  --text-secondary: var(--gray-500);
  --text-tertiary: var(--gray-400);
  --border: var(--gray-200);
  --card-bg: var(--white);
  --card-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 24px rgba(0,0,0,0.06);
  --nav-bg: rgba(255,255,255,0.72);
  --nav-blur: blur(20px) saturate(180%);

  --font: 'Outfit', -apple-system, sans-serif;
  --max-w: 960px;
  --max-w-wide: 1200px;
  --section-gap: clamp(100px, 12vw, 180px);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 100px;

  color-scheme: light dark;
}

[data-theme="dark"] {
  --bg: #000;
  --bg-subtle: #0a0a0a;
  --text: #fafafa;
  --text-secondary: #a3a3a3;
  --text-tertiary: #525252;
  --border: #262626;
  --card-bg: #111;
  --card-shadow: 0 1px 3px rgba(0,0,0,0.2), 0 4px 24px rgba(0,0,0,0.3);
  --nav-bg: rgba(0,0,0,0.72);
  --emerald-glow: rgba(52, 211, 153, 0.1);
}

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

body {
  font-family: var(--font);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* --- Typography --- */
.headline-xl {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.headline-lg {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.headline-md {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.headline-sm {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.body-lg {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.65;
  letter-spacing: 0.005em;
}

.body-md {
  font-size: 1rem;
  line-height: 1.6;
}

.body-sm {
  font-size: 0.875rem;
  line-height: 1.5;
}

.text-secondary { color: var(--text-secondary); }
.text-emerald { color: var(--emerald); }
[data-theme="dark"] .text-emerald { color: var(--emerald-light); }
.text-center { text-align: center; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  width: 100%;
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--section-gap) 0;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(0, 0, 0.2, 1),
              transform 1s cubic-bezier(0, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0, 0, 0.2, 1);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.45s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.6s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.75s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.9s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   NAV
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.nav.scrolled {
  background: var(--nav-bg);
  -webkit-backdrop-filter: var(--nav-blur);
  backdrop-filter: var(--nav-blur);
  box-shadow: 0 1px 0 var(--border);
  padding: 12px 24px;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.nav-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-logo-svg {
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
  filter: drop-shadow(0 0 0 transparent);
}

.nav-logo:hover .nav-logo-svg {
  transform: scale(1.1) rotate(-3deg);
  filter: drop-shadow(0 2px 8px rgba(45, 139, 94, 0.3));
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}

.lang-switch:hover {
  color: var(--text);
  border-color: var(--emerald);
}

.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: color 0.2s, background 0.2s;
}

.theme-toggle:hover {
  color: var(--text);
  background: var(--emerald-glow);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-primary {
  background: var(--emerald);
  color: var(--white);
}

.btn-primary:hover {
  background: #247a50;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(45, 139, 94, 0.35);
}

[data-theme="dark"] .btn-primary {
  background: var(--emerald-light);
  color: var(--black);
}

[data-theme="dark"] .btn-primary:hover {
  background: #5ee8b5;
  box-shadow: 0 4px 20px rgba(52, 211, 153, 0.3);
}

.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--emerald);
  color: var(--emerald);
}

[data-theme="dark"] .btn-outline:hover {
  border-color: var(--emerald-light);
  color: var(--emerald-light);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
  animation: hero-fade-up 0.8s cubic-bezier(0, 0, 0.2, 1) 1.5s both;
}

.hero h1 {
  animation: hero-fade-up 0.8s cubic-bezier(0, 0, 0.2, 1) 1.65s both;
}

.hero-sub {
  animation: hero-fade-up 0.8s cubic-bezier(0, 0, 0.2, 1) 1.8s both;
}

.hero-cta-group {
  animation: hero-fade-up 0.8s cubic-bezier(0, 0, 0.2, 1) 1.95s both;
}

.hero-phone {
  animation: hero-fade-up 1s cubic-bezier(0, 0, 0.2, 1) 2.1s both;
}

@keyframes hero-fade-up {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse-dot 2s ease-in-out infinite;
}

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

/* --- Hero Logo Animation --- */
.hero-logo {
  margin-bottom: 40px;
}

.hero-logo svg {
  overflow: visible;
}

/* Stroke 1: Left pill grows up (wie Onboarding — "N schreiben") */
.logo-protein {
  transform-origin: 330px 802px;
  animation: pill-grow 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.25) 0.15s both;
}

/* Stroke 2: Diagonal draws top-left → bottom-right */
.logo-carbs {
  stroke-dasharray: 490;
  stroke-dashoffset: 490;
  animation: draw-line 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

/* Stroke 3: Right pill grows up */
.logo-fat {
  transform-origin: 654px 802px;
  animation: pill-grow 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.25) 0.8s both;
}

@keyframes draw-line {
  0% { stroke-dashoffset: 490; opacity: 0.5; }
  20% { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}

/* Stroke 4: Leaf drops in — flourish (wie "Punkt aufs i") */
.logo-leaf {
  transform-origin: 730px 275px;
  animation: leaf-drop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.4) 1.15s both;
}

@keyframes pill-grow {
  0% { transform: scaleY(0); opacity: 0; }
  100% { transform: scaleY(1); opacity: 1; }
}

@keyframes leaf-drop {
  0% { transform: translateY(-60px) scale(0.3) rotate(-20deg); opacity: 0; }
  100% { transform: translateY(0) scale(1) rotate(0deg); opacity: 1; }
}


.hero h1 {
  max-width: 700px;
  margin-bottom: 24px;
}

.hero-sub {
  max-width: 520px;
  margin-bottom: 48px;
}

.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 80px;
}

.hero-phone {
  position: relative;
  width: clamp(220px, 30vw, 300px);
}

.hero-phone .phone-frame {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  background: var(--gray-900);
  border-radius: 40px;
  border: 3px solid var(--gray-800);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2), 0 8px 32px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme="dark"] .hero-phone .phone-frame {
  border-color: var(--gray-600);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}

.hero-phone .phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-phone .phone-placeholder {
  color: var(--gray-600);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0, 0, 0.2, 1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide.active {
  opacity: 1;
}

.hero-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-400);
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.carousel-dot.active {
  background: var(--emerald);
  transform: scale(1.25);
}

[data-theme="dark"] .carousel-dot.active {
  background: var(--emerald-light);
}

/* ========================================
   HIGHLIGHTS (Pill Badges)
   ======================================== */
.highlights {
  padding: 0 24px 0;
}

.highlights-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: border-color 0.3s, color 0.3s;
}

.pill:hover {
  border-color: var(--emerald);
  color: var(--text);
}

.pill svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ========================================
   FEATURES
   ======================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.feature-card {
  padding: 40px 32px;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  border-color: var(--emerald);
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--emerald-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--emerald);
}

[data-theme="dark"] .feature-icon {
  color: var(--emerald-light);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}


/* ========================================
   WORKFLOW
   ======================================== */
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
  counter-reset: step;
}

.workflow-step {
  text-align: center;
  counter-increment: step;
}

.workflow-step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--emerald);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 auto 24px;
  letter-spacing: -0.02em;
}

[data-theme="dark"] .workflow-step::before {
  background: var(--emerald-light);
  color: var(--black);
}

.workflow-step h3 {
  margin-bottom: 8px;
}

.workflow-step p {
  color: var(--text-secondary);
  max-width: 280px;
  margin: 0 auto;
}


/* ========================================
   FAQ
   ======================================== */
.faq-list {
  max-width: 640px;
  margin: 64px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--emerald);
}

[data-theme="dark"] .faq-question:hover {
  color: var(--emerald-light);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0, 0, 0.2, 1);
  color: var(--text-tertiary);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.faq-answer-inner {
  padding-bottom: 24px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  text-align: center;
  padding: var(--section-gap) 24px;
}

.cta-banner h2 {
  margin-bottom: 16px;
}

.cta-banner p {
  margin-bottom: 40px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px;
}

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

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* ========================================
   LEGAL PAGES (Datenschutz, Support)
   ======================================== */
.legal-page {
  padding: 120px 24px 80px;
}

.legal-page .container {
  max-width: 680px;
}

.legal-page h1 {
  margin-bottom: 8px;
}

.legal-page .legal-date {
  color: var(--text-tertiary);
  font-size: 0.9rem;
  margin-bottom: 48px;
}

.legal-disclaimer {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--emerald-glow);
  margin-bottom: 32px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.legal-disclaimer a {
  color: var(--emerald);
}

[data-theme="dark"] .legal-disclaimer a {
  color: var(--emerald-light);
}

.legal-page h2 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-page p,
.legal-page li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-page ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-page a {
  color: var(--emerald);
  transition: opacity 0.2s;
}

[data-theme="dark"] .legal-page a {
  color: var(--emerald-light);
}

.legal-page a:hover {
  opacity: 0.7;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
}

.legal-table th,
.legal-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.legal-table th {
  font-weight: 500;
  color: var(--text);
}

/* Support page specifics */
.legal-page .support-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  background: var(--emerald);
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  margin: 8px 0 48px;
  transition: all 0.25s ease;
}

.support-email-btn:hover {
  background: #247a50;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(45, 139, 94, 0.35);
}

[data-theme="dark"] .legal-page .support-email-btn {
  background: var(--emerald-light);
  color: var(--black);
}

[data-theme="dark"] .support-email-btn:hover {
  background: #5ee8b5;
}

.support-info {
  margin-top: 48px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-subtle);
}

.support-info p {
  margin-bottom: 4px;
  font-size: 0.9rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 32px 24px;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    padding: 120px 24px 60px;
    min-height: auto;
  }

  .hero-cta-group {
    margin-bottom: 56px;
  }

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

  .footer-links {
    justify-content: center;
  }

}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .highlights-row {
    gap: 8px;
  }

  .pill {
    padding: 6px 14px;
    font-size: 0.8rem;
  }
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal, .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }

  html { scroll-behavior: auto; }
}
