/* ================================================================
   Greenline Trading — styles.css
   Palette: forest green, cream, gold accent
   Type: DM Sans (display) + Inter (body)
   ================================================================ */

:root {
  /* Palette */
  --forest: #1F5133;
  --forest-dark: #163a24;
  --forest-2: #2E7A4E;
  --pale-green: #E8F0E8;
  --cream: #F7F5EE;
  --cream-2: #FBFAF4;
  --ink: #1C1C1C;
  --muted: #6B6B6B;
  --border: #D4D1C6;
  --gold: #B88A2C;
  --error: #8B2F2F;

  /* Fonts */
  --font-display: "DM Sans", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Type scale (fluid) */
  --text-xs: 0.8125rem;     /* 13px */
  --text-sm: 0.9375rem;     /* 15px */
  --text-base: 1.0625rem;   /* 17px */
  --text-lg: 1.25rem;       /* 20px */
  --text-xl: clamp(1.5rem, 2.5vw, 2rem);         /* 24–32 */
  --text-2xl: clamp(2rem, 4vw, 3rem);             /* 32–48 */
  --text-hero: clamp(2.5rem, 6vw, 4.5rem);        /* 40–72 */

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(28, 28, 28, 0.04);
  --shadow-md: 0 6px 18px rgba(28, 28, 28, 0.06), 0 2px 6px rgba(28, 28, 28, 0.04);
  --shadow-lg: 0 18px 48px rgba(28, 28, 28, 0.10);

  /* Timing */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 var(--space-4);
  font-weight: 700;
  color: var(--ink);
}
p {
  margin: 0 0 var(--space-4);
}

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

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-2);
  margin: 0 0 var(--space-4);
}
.section {
  padding: clamp(var(--space-16), 9vw, var(--space-32)) 0;
}
.section-head {
  max-width: 720px;
  margin: 0 0 var(--space-12);
}
.section-title {
  font-size: var(--text-2xl);
  margin: 0 0 var(--space-4);
}
.section-lede {
  font-size: var(--text-lg);
  color: var(--muted);
  max-width: 60ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.875rem 1.375rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  line-height: 1;
  letter-spacing: -0.005em;
  border: 1.5px solid transparent;
  transition:
    background-color 0.2s var(--ease),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
  white-space: nowrap;
}
.btn-sm {
  padding: 0.625rem 1rem;
  font-size: var(--text-xs);
}
.btn-block {
  display: flex;
  width: 100%;
}
.btn-primary {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.btn-primary:hover {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-primary-inverse {
  background: var(--cream);
  color: var(--forest);
  border-color: var(--cream);
}
.btn-primary-inverse:hover {
  background: var(--cream-2);
  border-color: var(--cream-2);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--cream);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
}
.btn-ghost:hover {
  background: rgba(31, 81, 51, 0.08);
  color: var(--forest);
}

/* ---------- Form fields ---------- */
.field {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--cream-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field::placeholder {
  color: #8d8d8d;
}
.field:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(31, 81, 51, 0.15);
}
.field-light {
  background: rgba(247, 245, 238, 0.95);
  border-color: transparent;
}
.field-light:focus {
  border-color: var(--cream);
  box-shadow: 0 0 0 3px rgba(247, 245, 238, 0.3);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 238, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: rgba(212, 209, 198, 0.7);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--forest);
}
.brand-mark {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: var(--forest);
}
.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.site-nav {
  display: none;
  gap: var(--space-8);
}
.site-nav a {
  font-size: var(--text-sm);
  color: var(--ink);
  font-weight: 500;
  transition: color 0.15s;
}
.site-nav a:hover {
  color: var(--forest);
}

@media (min-width: 820px) {
  .site-nav {
    display: flex;
  }
}

/* ================== HERO ================== */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(620px, 85vh, 780px);
  display: flex;
  align-items: center;
  padding: clamp(var(--space-16), 10vw, var(--space-24)) 0;
  color: var(--cream);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(22, 58, 36, 0.55) 0%,
      rgba(22, 58, 36, 0.35) 40%,
      rgba(22, 58, 36, 0.75) 100%
    ),
    linear-gradient(90deg, rgba(22, 58, 36, 0.55) 0%, rgba(22, 58, 36, 0) 60%);
}
.hero-inner {
  max-width: 820px;
}
.hero .eyebrow {
  color: rgba(247, 245, 238, 0.85);
}
.hero-title {
  font-size: var(--text-hero);
  font-weight: 700;
  color: var(--cream);
  margin: 0 0 var(--space-6);
  max-width: 16ch;
  line-height: 1.08;
}
@media (min-width: 720px) {
  .hero-title {
    max-width: 18ch;
  }
}
.accent-underline {
  display: inline;
  background-image: linear-gradient(
    180deg,
    transparent 72%,
    rgba(184, 138, 44, 0.55) 72%,
    rgba(184, 138, 44, 0.55) 94%,
    transparent 94%
  );
  background-repeat: no-repeat;
  padding-bottom: 0.05em;
}
.hero-sub {
  font-size: var(--text-lg);
  color: rgba(247, 245, 238, 0.9);
  max-width: 58ch;
  margin: 0 0 var(--space-8);
  line-height: 1.55;
}
.hero-form {
  display: flex;
  gap: var(--space-3);
  max-width: 480px;
  margin: 0 0 var(--space-4);
  flex-wrap: wrap;
}
.hero-form .field {
  background: rgba(247, 245, 238, 0.95);
  border-color: transparent;
}
.hero-success {
  color: #B2E5C5;
  font-size: var(--text-sm);
  margin: 0 0 var(--space-4);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
  font-size: var(--text-sm);
  color: rgba(247, 245, 238, 0.75);
  margin: 0 0 var(--space-12);
}
.hero-meta .link-arrow {
  color: var(--cream);
  font-weight: 600;
  border-bottom: 1px solid rgba(247, 245, 238, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.hero-meta .link-arrow:hover {
  border-color: var(--cream);
}
.hero-anchors {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  font-size: var(--text-sm);
  color: rgba(247, 245, 238, 0.88);
}
.hero-anchors .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 0.5rem;
  vertical-align: middle;
}
.hero-anchors strong {
  color: var(--cream);
  font-weight: 600;
}

/* ================== DISCLOSURE BAR ================== */
.disclosure-bar {
  background: var(--pale-green);
  border-bottom: 1px solid var(--border);
  padding: var(--space-6) 0;
}
.disclosure-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 820px) {
  .disclosure-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}
.disclosure-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.disclosure-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--forest);
  margin-top: 2px;
}
.disclosure-item p {
  margin: 0;
  font-size: var(--text-xs);
  line-height: 1.55;
  color: var(--ink);
}
.disclosure-item strong {
  color: var(--forest);
  font-weight: 600;
}

/* ================== PROBLEM ================== */
.section-problem {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}
@media (min-width: 820px) {
  .grid-2 {
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-20);
    align-items: start;
  }
}
.prose p {
  color: var(--muted);
  font-size: var(--text-lg);
  line-height: 1.65;
  max-width: 58ch;
}
.prose p:last-child {
  margin-bottom: 0;
}

/* ================== HOW IT WORKS ================== */
.section-solution {
  background: var(--cream-2);
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-8);
  grid-template-columns: 1fr;
}
@media (min-width: 820px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
  }
}
.step {
  padding: var(--space-8);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: var(--space-6);
}
.step h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}
.step p {
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin: 0;
}

/* ================== ANCHORS (3 commitments) ================== */
.section-anchors {
  background: var(--forest);
  color: var(--cream);
}
.section-anchors .eyebrow {
  color: rgba(247, 245, 238, 0.75);
}
.section-anchors .section-title {
  color: var(--cream);
}
.anchors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 820px) {
  .anchors-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
  }
}
.anchor-card {
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  background: rgba(247, 245, 238, 0.05);
  border: 1px solid rgba(247, 245, 238, 0.14);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.anchor-card:hover {
  background: rgba(247, 245, 238, 0.08);
  transform: translateY(-2px);
}
.anchor-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(184, 138, 44, 0.15);
  color: var(--gold);
  margin-bottom: var(--space-4);
}
.anchor-icon svg {
  width: 24px;
  height: 24px;
}
.anchor-card h3 {
  color: var(--cream);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}
.anchor-card p {
  color: rgba(247, 245, 238, 0.8);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin: 0;
}

/* ================== PROOF ================== */
.section-proof {
  background: var(--cream);
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 820px) {
  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.proof-card {
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
}
.proof-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--forest-2), var(--gold));
  opacity: 0.6;
}
.proof-card header {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-3);
}
.chip {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--pale-green);
  color: var(--forest);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.proof-card h3 {
  font-size: var(--text-lg);
  margin: 0;
}
.proof-status {
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 500;
  margin: 0 0 var(--space-3);
}
.proof-desc {
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin: 0;
}

/* ================== PRICING ================== */
.section-pricing {
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: stretch;
}
@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
}
.tier {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.tier:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.tier-featured {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.tier-featured:hover {
  transform: translateY(-6px);
}
.tier-featured h3,
.tier-featured .tier-name,
.tier-featured .price-setup,
.tier-featured .dollar {
  color: var(--cream);
}
.tier-featured .tier-for,
.tier-featured .cadence,
.tier-featured .price-mo,
.tier-featured .tier-features li {
  color: rgba(247, 245, 238, 0.8);
}
.tier-featured .tier-features li::before {
  color: var(--gold);
}
.tier-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  padding: 0.3rem 0.9rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.tier-head {
  margin-bottom: var(--space-6);
}
.tier-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin: 0 0 var(--space-1);
}
.tier-for {
  font-size: var(--text-sm);
  color: var(--muted);
  margin: 0;
}
.tier-price {
  margin-bottom: var(--space-6);
}
.price-setup {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.price-setup .dollar {
  font-size: 1.5rem;
  font-weight: 500;
  margin-right: -0.35rem;
}
.price-setup .cadence {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--muted);
}
.price-mo {
  display: block;
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--muted);
}
.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8);
  flex: 1;
}
.tier-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
  color: var(--ink);
  line-height: 1.5;
}
.tier-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--forest-2);
  font-weight: 700;
}
.pricing-footnote {
  text-align: center;
  margin: var(--space-12) auto 0;
  color: var(--muted);
  font-size: var(--text-sm);
}
.pricing-footnote a {
  color: var(--forest);
  font-weight: 600;
  border-bottom: 1px solid var(--forest-2);
}
.pricing-footnote a:hover {
  border-bottom-color: var(--forest);
}

/* ================== FAQ ================== */
.section-faq {
  background: var(--cream);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq {
  border-bottom: 1px solid var(--border);
}
.faq:first-child {
  border-top: 1px solid var(--border);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--ink);
  transition: color 0.15s;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:hover {
  color: var(--forest);
}
.faq .chev {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: var(--pale-green);
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.25s var(--ease);
}
.faq[open] .chev {
  transform: rotate(45deg);
}
.faq-body {
  padding: 0 0 var(--space-6);
  max-width: 65ch;
}
.faq-body p {
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.7;
  margin: 0;
}

/* ================== FINAL CTA ================== */
.section-cta {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
}
.cta-inner {
  max-width: 680px;
}
.cta-title {
  color: var(--cream);
  font-size: var(--text-2xl);
  margin: 0 0 var(--space-4);
}
.cta-sub {
  color: rgba(247, 245, 238, 0.85);
  font-size: var(--text-lg);
  margin: 0 0 var(--space-8);
}
.cta-form {
  display: flex;
  gap: var(--space-3);
  max-width: 480px;
  margin: 0 auto var(--space-4);
  flex-wrap: wrap;
}
.cta-or {
  color: rgba(247, 245, 238, 0.75);
  font-size: var(--text-sm);
  margin: 0;
}
.cta-or a {
  color: var(--cream);
  font-weight: 600;
  border-bottom: 1px solid rgba(247, 245, 238, 0.4);
}
.cta-or a:hover {
  border-bottom-color: var(--cream);
}

/* ================== FOOTER ================== */
.site-footer {
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  padding: var(--space-16) 0 var(--space-8);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
.foot-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--forest);
}
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
}
.foot-links a {
  font-size: var(--text-sm);
  color: var(--muted);
  transition: color 0.15s;
}
.foot-links a:hover {
  color: var(--forest);
}
.disclaimer {
  font-size: var(--text-xs);
  color: var(--muted);
  line-height: 1.6;
  max-width: 75ch;
  margin: 0;
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
}
.disclaimer strong {
  color: var(--ink);
  font-weight: 600;
}
.copyright {
  font-size: var(--text-xs);
  color: var(--muted);
  margin: 0;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 600px) {
  .hero {
    min-height: 560px;
    padding: var(--space-16) 0;
  }
  .hero-title {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }
  .hero-sub {
    font-size: var(--text-base);
  }
  .hero-form {
    flex-direction: column;
  }
  .hero-form .field,
  .hero-form .btn,
  .cta-form .field,
  .cta-form .btn {
    width: 100%;
  }
  .section-title {
    font-size: clamp(1.625rem, 6vw, 2rem);
  }
  .tier-featured {
    transform: none;
  }
}

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