/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --bg: #FFFFFF;
  --surface: #F8FAFC;
  --ink: #0F172A;
  --ink-muted: #64748B;
  --accent: #0EA5E9;
  --accent-dk: #0284C7;
  --border: #E2E8F0;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(15, 23, 42, .08), 0 4px 16px rgba(15, 23, 42, .06);
  --shadow-lg: 0 8px 32px rgba(15, 23, 42, .12);
  --font: 'Inter', system-ui, sans-serif;
  --transition: 180ms ease;
}

[data-theme="dark"] {
  --bg: #0F172A;
  --surface: #1E293B;
  --ink: #F1F5F9;
  --ink-muted: #94A3B8;
  --border: #334155;
  --shadow: 0 1px 3px rgba(0, 0, 0, .3), 0 4px 16px rgba(0, 0, 0, .2);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, .4);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  transition: background var(--transition), color var(--transition);
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dk);
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: .5rem .75rem;
  border-radius: 6px;
  transition: top var(--transition);
}

.skip-link:focus-visible {
  top: .75rem;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section--narrow {
  max-width: 720px;
  margin-inline: auto;
}

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  transition: background var(--transition), border-color var(--transition);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.nav__logo {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: .9rem;
  font-weight: 500;
}

.nav__links a {
  color: var(--ink-muted);
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--ink);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  padding: .75rem 1.5rem;
  font-size: .95rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent), #38bdf8);
  z-index: -1;
  transition: opacity var(--transition);
  opacity: 0;
}

.btn--primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(14, 165, 233, .35);
}

.btn--primary:hover::before {
  opacity: 1;
}

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

.btn--lg {
  padding: .9rem 2rem;
  font-size: 1.05rem;
}

.btn--sm {
  background: transparent;
  color: var(--ink-muted);
  padding: .3rem .55rem;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.btn--sm:hover {
  color: var(--ink);
  border-color: var(--ink-muted);
}

.btn--block {
  display: flex;
  width: 100%;
}

/* ── SECTION BASE ────────────────────────────────────────── */
.section {
  padding-block: 5rem;
}

.section--surface {
  background: var(--surface);
  transition: background var(--transition);
}

.section__title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  text-align: center;
}

/* ── HEADINGS ────────────────────────────────────────────── */
h1,
h2,
h3 {
  letter-spacing: -.02em;
  line-height: 1.2;
  color: var(--ink);
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-block: 6rem 5rem;
  overflow: hidden;
}

.hero__bg-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

[data-theme="dark"] .hero__bg-glow {
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.hero__headline {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
}

.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 500px;
}

.hero__actions {
  margin-top: .5rem;
}

.hero__cta {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(14, 165, 233, .4);
}

.hero__cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shine 1200ms ease-out 1;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  20% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

.hero__micro {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-muted);
  margin-top: .5rem;
  padding: .4rem .8rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.hero__micro svg {
  color: #10B981;
}

/* ── HERO MOCKUP ─────────────────────────────────────────── */
.hero__visual {
  display: flex;
}

.mockup {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  width: min(100%, 560px);
  margin-left: auto;
  animation: email-arrive 700ms ease-out both;
}

.email-preview__topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: .65rem .95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.email-preview__inbox {
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.email-preview__new {
  font-size: .72rem;
  font-weight: 600;
  color: var(--accent-dk);
  background: rgba(14, 165, 233, 0.12);
  padding: .15rem .45rem;
  border-radius: 999px;
}

.email-preview__message {
  margin: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.email-preview__meta {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: .85rem 1rem;
  display: grid;
  gap: .25rem;
}

.email-preview__meta p {
  font-size: .76rem;
  color: var(--ink-muted);
}

.email-preview__body {
  padding: 1rem;
}

.email-preview__body p {
  font-size: .85rem;
  color: var(--ink);
  line-height: 1.55;
}

.email-preview__signals {
  list-style: none;
  display: grid;
  gap: .55rem;
  margin-top: .75rem;
}

.email-preview__signals li {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  font-size: .82rem;
  line-height: 1.5;
  padding: .6rem .65rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  color: var(--ink);
}

.email-preview__signals li strong {
  font-size: .76rem;
  color: var(--ink-muted);
}

.email-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--accent-dk);
  background: rgba(14, 165, 233, 0.12);
  padding: .15rem .4rem;
  border-radius: 4px;
}

.email-preview__summary {
  margin-top: .75rem;
  font-size: .76rem !important;
  color: var(--ink-muted);
}

.email-preview__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 1rem;
  border-top: 1px solid var(--border);
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent-dk);
}

.email-preview__caption {
  font-size: .72rem;
  color: var(--ink-muted);
  text-align: center;
  margin: 0 1rem .9rem;
}

@keyframes email-arrive {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-theme="dark"] .email-preview__new {
  color: var(--accent);
}

[data-theme="dark"] .email-tag {
  color: var(--accent);
}

[data-theme="dark"] .email-preview__footer {
  color: var(--ink);
}

/* ── PROBLEM ─────────────────────────────────────────────── */
#problem h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 1.75rem;
}

.prose p {
  font-size: 1.05rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.prose__emphasis {
  font-size: 1.1rem !important;
  font-weight: 600;
  color: var(--ink) !important;
}

.founder-quote {
  position: relative;
  margin-top: 3rem;
  padding: 2rem 2.25rem;
  border-left: none;
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: background var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}

.founder-quote:hover {
  box-shadow: var(--shadow-lg);
}

.quote-icon {
  position: absolute;
  top: -16px;
  left: 32px;
  color: var(--accent);
  background: var(--surface);
  padding: 4px;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.founder-quote p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}

.founder-quote footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.founder-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  position: relative;
  overflow: hidden;
}

.founder-avatar::after {
  content: 'JM';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.founder-info {
  display: flex;
  flex-direction: column;
}

.founder-info strong {
  font-size: .95rem;
  color: var(--ink);
}

.founder-info span {
  font-size: .85rem;
  color: var(--ink-muted);
}

.founder-caption {
  margin-top: 1.25rem;
  font-size: .9rem;
  font-style: italic;
  color: var(--ink-muted);
  text-align: center;
}

/* ── HOW IT WORKS ────────────────────────────────────────── */
.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 680px;
  margin-inline: auto;
  counter-reset: steps;
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step__num {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  color: var(--accent);
  border: 1px solid var(--border);
  font-weight: 700;
  border-radius: 50%;
  margin-top: 0;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
}

[data-theme="dark"] .step__num {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.step__body {
  padding-top: .4rem;
}

.step__body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .4rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.step__body p {
  color: var(--ink-muted);
  font-size: .95rem;
}

.badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  padding: .15rem .45rem;
  border-radius: 4px;
  letter-spacing: .04em;
  vertical-align: middle;
}

/* ── BEFORE / AFTER ──────────────────────────────────────── */
.compare {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}

.compare__table thead th {
  padding: 1rem 1.25rem;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  text-align: left;
}

.compare__col-inner {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.compare__col--before {
  background: #FEF2F2;
  color: #991B1B;
  border-radius: var(--radius) 0 0 0;
  width: 50%;
}

.compare__col--before svg {
  color: #DC2626;
}

[data-theme="dark"] .compare__col--before {
  background: #3B1212;
  color: #FCA5A5;
}

.compare__col--after {
  background: #F0FDF4;
  color: #166534;
  border-radius: 0 var(--radius) 0 0;
  width: 50%;
  text-align: left;
}

.compare__col--after svg {
  color: #16A34A;
}

[data-theme="dark"] .compare__col--after {
  background: #052E16;
  color: #86EFAC;
}

.compare__table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.compare__table tbody tr:last-child {
  border-bottom: none;
}

.compare__table tbody tr:hover {
  background: var(--surface);
}

.compare__table td {
  padding: .9rem 1rem;
  vertical-align: top;
}

.compare__table td:first-child {
  color: var(--ink-muted);
}

.compare__table td:last-child {
  font-weight: 500;
}

/* ── PRICING ─────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin-inline: auto;
}

.plan {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.plan:hover {
  box-shadow: var(--shadow-lg);
}

.plan--featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 20px;
  white-space: nowrap;
}

.plan__name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .25rem;
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: .25rem;
}

.plan__amount {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -.04em;
}

.plan__period {
  font-size: .9rem;
  color: var(--ink-muted);
}

.plan__tagline {
  font-size: .9rem;
  color: var(--ink-muted);
  font-style: italic;
  margin-top: .25rem;
}

.plan__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  flex: 1;
}

.plan__features li {
  font-size: .9rem;
  padding-left: 1.25rem;
  position: relative;
  color: var(--ink-muted);
}

.plan__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-footer {
  text-align: center;
  font-size: .85rem;
  color: var(--ink-muted);
  margin-top: 1.75rem;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq__item.is-open {
  border-color: var(--accent);
}

.faq__question {
  width: 100%;
  border: 0;
  font-size: .95rem;
  font-weight: 600;
  padding: 1rem 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  list-style: none;
  user-select: none;
  background: var(--bg);
  color: var(--ink);
  text-align: left;
  transition: background var(--transition);
}

.faq__question:hover {
  background: var(--surface);
}

.faq__question::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink-muted);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq__item.is-open .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  font-size: .9rem;
  color: var(--ink-muted);
  line-height: 1.7;
  padding: .25rem 1.25rem 1.1rem;
}

.js-enabled .faq__answer[hidden] {
  display: none;
}

/* ── ONBOARDING ──────────────────────────────────────────── */
.onboarding {
  min-height: calc(100vh - 56px);
}

.onboarding__container {
  max-width: 760px;
}

.onboarding__header {
  text-align: center;
  margin-bottom: 2rem;
}

.onboarding__header h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: .65rem;
}

.onboarding__header p {
  color: var(--ink-muted);
}

.onboarding__form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: grid;
  gap: 1.25rem;
}

.onboarding__block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}

.onboarding__block-title {
  font-size: 1.05rem;
  margin-bottom: .9rem;
}

.plan-select {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.plan-select__option {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .85rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.plan-select__option:has(input:checked) {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(14, 165, 233, .15);
}

.plan-select__option span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.plan-select__option small {
  color: var(--ink-muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}

.form-field {
  display: grid;
  gap: .4rem;
}

.form-field span,
.form-fieldset legend {
  font-size: .9rem;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .6rem .7rem;
}

.form-field textarea {
  resize: vertical;
}

.form-fieldset {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .8rem;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--ink-muted);
}

.field-error {
  margin-top: .5rem;
  color: #DC2626;
  font-size: .85rem;
}

.onboarding__actions {
  display: grid;
  gap: .75rem;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: #94A3B8;
  padding-block: 2.5rem;
  text-align: center;
}

[data-theme="dark"] .footer {
  background: #020617;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}

.footer__logo {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -.02em;
}

.footer__tagline {
  font-size: .85rem;
}

.footer__legal {
  font-size: .78rem;
  opacity: .6;
}

/* ── SCROLL FADE IN ──────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .hero__content {
    align-items: center;
  }

  .hero__sub {
    margin-inline: auto;
  }

  .mockup {
    transform: none;
    max-width: 600px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .nav__inner {
    height: auto;
    min-height: 56px;
    padding-block: .5rem;
    gap: .75rem;
    align-items: center;
  }

  .nav__logo {
    flex-shrink: 0;
  }

  .nav__links {
    flex: 1;
    justify-content: flex-end;
    gap: .75rem;
    font-size: .82rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav__links::-webkit-scrollbar {
    display: none;
  }

  .nav__links a {
    white-space: nowrap;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .form-grid,
  .plan-select,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 3.5rem;
  }

  .hero {
    padding-block: 4rem 3rem;
  }

  .compare__table thead th,
  .compare__table td {
    padding: .65rem .75rem;
    font-size: .85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero__cta::after {
    animation: none;
  }

  .fade-in,
  .fade-in.visible {
    opacity: 1;
    transform: none;
  }
}