/* ============================================================
   Kulwant Nagi — Personal Brand Landing
   Brand system: dark premium • neon yellow-green • electric blue
   ============================================================ */

:root {
  --bg: #090909;
  --bg-2: #0c0c0c;
  --card: #121212;
  --card-2: #171717;
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.14);

  --neon: #E9F709;
  --neon-dim: #c4d000;
  --blue: #00C2FF;
  --glow: rgba(233, 247, 9, 0.35);
  --blue-glow: rgba(0, 194, 255, 0.30);

  --text: #FFFFFF;
  --muted: #B8B8B8;
  --faint: #7c7c7c;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 40px);
  --sect-y: clamp(80px, 11vw, 150px);

  --r-sm: 12px;
  --r: 18px;
  --r-lg: 26px;

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle global texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 12% 8%, rgba(233, 247, 9, 0.06), transparent 38%),
    radial-gradient(circle at 88% 92%, rgba(0, 194, 255, 0.06), transparent 42%);
}

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

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

::selection {
  background: var(--neon);
  color: #000;
}

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 1;
}

.section {
  padding-block: var(--sect-y);
  position: relative;
  z-index: 1;
}

.section--tight {
  padding-block: clamp(56px, 7vw, 96px);
}

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--neon);
  display: inline-block;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.h-display {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.h-sect {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
  text-wrap: balance;
}

.h-card {
  font-size: 1.4rem;
  font-weight: 700;
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--muted);
  max-width: 60ch;
  text-wrap: pretty;
}

.text-neon {
  color: var(--neon);
}

.text-blue {
  color: var(--blue);
}

.muted {
  color: var(--muted);
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-head .h-sect {
  margin-top: 18px;
}

.section-head .lead {
  margin-top: 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  padding: 15px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--neon {
  background: var(--neon);
  color: #0a0a0a;
  box-shadow: 0 0 0 0 var(--glow);
}

.btn--neon:hover {
  box-shadow: 0 14px 40px -8px var(--glow);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: var(--line-2);
}

.btn--ghost:hover {
  border-color: var(--neon);
  color: var(--neon);
}

.btn--blue {
  background: transparent;
  color: var(--blue);
  border-color: rgba(0, 194, 255, 0.45);
}

.btn--blue:hover {
  box-shadow: 0 12px 34px -10px var(--blue-glow);
  border-color: var(--blue);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(9, 9, 9, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}

.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(9, 9, 9, 0.9);
}

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

.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--neon);
  color: #000;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 0 22px -4px var(--glow);
}

.brand__logo {
  height: 24px;
  width: 169px;
}

.footer__brand .brand__logo {
  height: 28px;
  width: 197px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__links a {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 500;
  transition: color .18s ease;
}

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

.nav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav__cta .btn {
  padding: 7px 14px;
  font-size: 0.78rem;
}

.nav__burger {
  display: none;
}

@media (max-width: 940px) {
  .nav__links {
    display: none;
  }

  .nav__cta .btn--ghost {
    display: none;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(48px, 6vw, 80px);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.hero__headline {
  margin: 20px 0 0;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.06;
}

.hero__headline em {
  font-style: normal;
  color: var(--neon);
}

.hero__sub {
  margin-top: 20px;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
}

.hero__sub strong {
  color: var(--text);
  font-weight: 700;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__trust {
  margin-top: 22px;
  font-size: 0.88rem;
  color: var(--faint);
  max-width: 48ch;
}

/* authority strip */
.authority {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  margin-top: 26px;
}

.authority__item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.02);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.authority__item b {
  color: var(--neon);
  font-weight: 700;
}

/* portrait */
.hero__visual {
  position: relative;
}

.portrait-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--card);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.9);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(233, 247, 9, 0.18), inset 0 -120px 90px -60px rgba(9, 9, 9, 0.85);
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.portrait-glow {
  position: absolute;
  inset: -14% -10% -10% -14%;
  z-index: -1;
  background: radial-gradient(closest-side, rgba(233, 247, 9, 0.22), transparent 72%);
  filter: blur(8px);
}

/* floating glass chips around portrait */
.chip-float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border-radius: 100px;
  background: rgba(18, 18, 18, 0.62);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
}

.chip-float .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon);
}

.chip-float .dot--blue {
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
}

.chip-1 {
  top: 8%;
  left: -8%;
}

.chip-2 {
  top: 40%;
  right: -10%;
}

.chip-3 {
  bottom: 14%;
  left: -10%;
}

.chip-4 {
  bottom: -3%;
  right: 6%;
}

@media (max-width: 880px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    max-width: 440px;
    margin-inline: auto;
    order: -1;
  }

  .chip-1 {
    left: -4%;
  }

  .chip-2 {
    right: -4%;
  }

  .chip-3 {
    left: -4%;
  }
}

@media (max-width: 480px) {
  .chip-float {
    font-size: 0.74rem;
    padding: 8px 12px;
  }

  .chip-1,
  .chip-3 {
    left: 2%;
  }

  .chip-2 {
    right: 2%;
  }
}

/* ============================================================
   Generic cards / grids
   ============================================================ */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(24px, 2.6vw, 34px);
  position: relative;
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}

.card:hover {
  border-color: var(--line-2);
  transform: translateY(-3px);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

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

@media (max-width: 720px) {

  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.icon-badge {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(233, 247, 9, 0.10);
  border: 1px solid rgba(233, 247, 9, 0.25);
  color: var(--neon);
  margin-bottom: 20px;
}

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

.icon-badge--blue {
  background: rgba(0, 194, 255, 0.10);
  border-color: rgba(0, 194, 255, 0.28);
  color: var(--blue);
}

/* credibility cards */
.cred-card .h-card {
  font-size: 1.22rem;
  margin-bottom: 10px;
}

.cred-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

/* stats row */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 28px;
}

.stat {
  background: var(--bg-2);
  padding: 30px 26px;
  text-align: center;
}

.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  letter-spacing: -0.03em;
}

.stat__num .text-blue {
  color: var(--blue);
}

.stat__label {
  color: var(--faint);
  font-size: 0.82rem;
  margin-top: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

/* ============================================================
   Positioning (big statement)
   ============================================================ */
.statement {
  position: relative;
}

.statement .h-sect {
  max-width: 22ch;
}

.statement__body {
  margin-top: 32px;
  max-width: 64ch;
}

.statement__body p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 1.08rem;
}

.statement__body p.kicker {
  color: var(--text);
  font-weight: 600;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--text);
  font-size: 1.05rem;
}

.checklist li svg {
  width: 22px;
  height: 22px;
  color: var(--neon);
  flex: none;
  margin-top: 3px;
}

/* ============================================================
   About
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}

.about__photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
}

.about__photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
}

.about__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -100px 80px -50px rgba(9, 9, 9, 0.7);
}

.about__body p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 1.06rem;
}

.about__body strong {
  color: var(--text);
}

.about__body .pull {
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.3;
  border-left: 3px solid var(--neon);
  padding-left: 20px;
  margin: 26px 0;
  letter-spacing: -0.01em;
}

@media (max-width: 880px) {
  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__photo {
    max-width: 380px;
  }
}

/* ============================================================
   What I Teach pillars
   ============================================================ */
.pillar {
  display: flex;
  flex-direction: column;
}

.pillar__no {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--faint);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.pillar .h-card {
  margin-bottom: 12px;
}

.pillar>p {
  color: var(--muted);
  font-size: 0.97rem;
  margin-bottom: 20px;
}

.pillar__list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.pillar__list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--muted);
}

.pillar__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--neon);
  flex: none;
  margin-top: 8px;
  transform: rotate(45deg);
}

/* ============================================================
   AIGrowthSkool feature band
   ============================================================ */
.band {
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(0, 194, 255, 0.10), transparent 55%),
    radial-gradient(120% 140% at 0% 100%, rgba(233, 247, 9, 0.10), transparent 55%),
    var(--bg-2);
  border-block: 1px solid var(--line);
}

.skool__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.skool__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
  margin-top: 4px;
}

.skool__list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: var(--text);
  font-size: 0.98rem;
}

.skool__list li svg {
  width: 19px;
  height: 19px;
  color: var(--blue);
  flex: none;
  margin-top: 3px;
}

@media (max-width: 880px) {
  .skool__grid {
    grid-template-columns: 1fr;
  }

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

/* ============================================================
   Testimonials / proof
   ============================================================ */
.quote {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 30px;
  position: relative;
}

.quote__mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.4rem;
  line-height: 0.6;
  color: var(--neon);
  opacity: 0.85;
}

.quote p {
  color: var(--text);
  font-size: 1.06rem;
  margin-top: 14px;
  line-height: 1.55;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border-radius: 100px;
  background: var(--card);
  border: 1px solid var(--line);
  margin-top: 34px;
}

.trust-badge .stars {
  color: #00b67a;
  letter-spacing: 2px;
  font-size: 1.1rem;
}

.trust-badge b {
  font-family: var(--font-display);
}

.trust-badge span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ============================================================
   Topic chips
   ============================================================ */
.topics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.topic-chip {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  transition: border-color .2s ease, color .2s ease, background .2s ease, transform .2s ease;
}

.topic-chip:hover {
  border-color: var(--neon);
  color: var(--text);
  transform: translateY(-2px);
}

/* ============================================================
   Speaking
   ============================================================ */
.speak__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

.speak__topics {
  list-style: none;
  display: grid;
  gap: 12px;
}

.speak__topics li {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--card);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  transition: border-color .2s ease, transform .2s ease;
}

.speak__topics li:hover {
  border-color: var(--blue);
  transform: translateX(4px);
}

.speak__topics li span {
  color: var(--blue);
  font-weight: 800;
  font-size: 0.85rem;
  flex: none;
}

@media (max-width: 880px) {
  .speak__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Offers
   ============================================================ */
.offer {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  transition: border-color .25s ease, transform .25s ease;
}

.offer:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
}

.offer--featured {
  border-color: rgba(233, 247, 9, 0.4);
  background: linear-gradient(180deg, rgba(233, 247, 9, 0.05), var(--card) 40%);
  box-shadow: 0 30px 70px -40px var(--glow);
}

.offer__tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 16px;
  display: inline-block;
}

.offer .h-card {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.offer>p {
  color: var(--muted);
  font-size: 0.97rem;
  margin-bottom: 22px;
}

.offer__best {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--faint);
  margin-bottom: 22px;
}

.offer__best b {
  color: var(--text);
  font-weight: 600;
}

/* ============================================================
   Closing CTA
   ============================================================ */
.cta-block {
  text-align: center;
  border-radius: var(--r-lg);
  padding: clamp(48px, 7vw, 90px) clamp(24px, 5vw, 70px);
  background:
    radial-gradient(100% 130% at 50% 0%, rgba(233, 247, 9, 0.13), transparent 60%),
    var(--card);
  border: 1px solid var(--line-2);
  position: relative;
  overflow: hidden;
}

.cta-block .h-sect {
  max-width: 18ch;
  margin-inline: auto;
}

.cta-block .lead {
  margin: 22px auto 0;
  text-align: center;
}

.cta-block__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 38px;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding-block: clamp(56px, 7vw, 88px) 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.footer__brand .brand {
  margin-bottom: 18px;
}

.footer__brand p {
  color: var(--muted);
  font-size: 0.96rem;
  max-width: 38ch;
}

.footer__col h5 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 18px;
}

.footer__col ul {
  list-style: none;
  display: grid;
  gap: 11px;
}

.footer__col a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color .18s ease;
}

.footer__col a:hover {
  color: var(--neon);
}

.footer__tagline {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.footer__tagline .text-neon {}

.footer__legal {
  margin-top: 26px;
  color: var(--faint);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 820px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.22, .61, .36, 1), transform .7s cubic-bezier(.22, .61, .36, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}