/* Hurt Advisory — single stylesheet
   Palette:
   --navy        #12314F  accent + structural ground
   --navy-hover  #0B2038
   --bg          #FFFFFF  page ground
   --tint        #F4F7FA  light navy tint ground
   --ink         #16181D  near-black
   --ink-soft    #566171  secondary
   --line        #E2E7EE  hairlines / borders
*/

@font-face {
  font-family: "Schibsted Grotesk";
  src: url("/fonts/schibsted-grotesk-var.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("/fonts/instrument-sans-var.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #12314F;
  --navy-hover: #0B2038;
  --bg: #FFFFFF;
  --tint: #F4F7FA;
  --ink: #16181D;
  --ink-soft: #566171;
  --line: #E2E7EE;
  --on-navy-soft: #A9BDD3;
  --on-navy-line: rgba(255, 255, 255, 0.18);
  --display: "Schibsted Grotesk", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --sans: "Instrument Sans", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --measure: 68ch;
  --pad-x: 1.25rem;
  --pad-section: 3.5rem;
}

@media (min-width: 768px) {
  :root {
    --pad-x: 2rem;
    --pad-section: 5rem;
  }
}

@media (min-width: 1080px) {
  :root {
    --pad-x: 3rem;
    --pad-section: 7rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---- Type ---- */

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.125rem, 1.1rem + 4.6vw, 4rem);
  line-height: 1.04;
}

h2 {
  font-size: clamp(1.5rem, 1.05rem + 2.2vw, 2.5rem);
}

h3 {
  font-size: 1.0625rem;
  line-height: 1.35;
  letter-spacing: -0.005em;
}

p {
  max-width: var(--measure);
}

a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.15s ease-out, text-underline-offset 0.15s ease-out;
}

a:hover {
  color: var(--navy-hover);
  text-underline-offset: 0.34em;
}

:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
  border-radius: 1px;
}

.section--navy :focus-visible,
.site-footer :focus-visible {
  outline-color: #FFFFFF;
}

::selection {
  background: var(--navy);
  color: #FFFFFF;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.kicker::after {
  content: "";
  height: 1px;
  width: 3.5rem;
  background: var(--navy);
  opacity: 0.4;
}

.section--navy .kicker {
  color: var(--on-navy-soft);
}

.section--navy .kicker::after {
  background: var(--on-navy-soft);
}

.section-sub {
  color: var(--ink-soft);
}

/* ---- Layout ---- */

.wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section {
  padding-top: var(--pad-section);
  padding-bottom: var(--pad-section);
}

.section--tint {
  background: var(--tint);
}

.section--navy {
  background: var(--navy);
  color: #FFFFFF;
}

.section--navy p {
  color: var(--on-navy-soft);
}

.section--navy h2 {
  color: #FFFFFF;
}

.section--navy a:not(.btn) {
  color: #FFFFFF;
}

.section-body > * + * {
  margin-top: 1.25rem;
}

.section-body > h2 + p {
  margin-top: 1.5rem;
}

/* ---- Header / nav ---- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
  border-top: 3px solid var(--navy);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease-out;
}

.site-header.is-stuck {
  box-shadow: 0 2px 8px rgba(22, 24, 29, 0.08);
}

.site-header .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 1rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.wordmark:hover {
  color: var(--navy);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-nav a {
  white-space: nowrap;
}

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem; /* 44px tap target */
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: #FFFFFF;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 4px;
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease-out, border-color 0.15s ease-out, color 0.15s ease-out;
}

.btn:hover {
  background: var(--navy-hover);
  border-color: var(--navy-hover);
  color: #FFFFFF;
}

.btn:active {
  background: var(--navy-hover);
  border-color: var(--navy-hover);
}

.btn:disabled {
  opacity: 0.55;
  cursor: default;
}

.btn-arr {
  display: inline-block;
  margin-left: 0.5em;
  transition: transform 0.15s ease-out;
}

.btn:hover .btn-arr {
  transform: translateX(4px);
}

/* outlined button (nav "What we can build") */
.btn--outline {
  color: var(--navy);
  background: transparent;
  border-color: var(--navy);
}

.btn--outline:hover {
  color: var(--navy-hover);
  background: var(--tint);
  border-color: var(--navy-hover);
}

/* inverted button for navy grounds */
.btn--inverse {
  color: var(--navy);
  background: #FFFFFF;
  border-color: #FFFFFF;
}

.btn--inverse:hover {
  color: var(--navy-hover);
  background: var(--tint);
  border-color: var(--tint);
}

.site-nav .btn {
  padding: 0.5rem 1rem;
}

@media (max-width: 430px) {
  .site-nav {
    gap: 0.5rem;
  }
  .site-nav .btn {
    padding: 0.5rem 0.65rem;
    font-size: 0.875rem;
  }
}

/* ---- Hero (homepage) ---- */

.hero {
  padding-top: calc(var(--pad-section) * 0.75);
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 4rem;
  }
}

.hero h1 {
  max-width: 18ch;
}

.hero h1 .accent {
  color: var(--navy);
}

.hero p {
  margin-top: 1.5rem;
  font-size: 1.0938rem;
  color: var(--ink-soft);
  max-width: 56ch;
}

.hero .btn {
  margin-top: 2rem;
  font-size: 1rem;
  padding: 0.8rem 1.7rem;
}

.hero-checks {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.55rem;
  max-width: 56ch;
}

.hero-checks li {
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  gap: 0.6rem;
  align-items: start;
  font-size: 0.9844rem;
}

.hero-checks svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--navy);
  margin-top: 0.2rem;
}

.hero-figure {
  margin-top: 1rem;
  max-width: 24rem;
}

.hero-figure svg {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 1080px) {
  .hero-figure {
    margin-top: 0;
    max-width: none;
  }
}

/* draw-in for flow connectors: paths carry pathLength="1" */
.hero-figure .draw {
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.8s ease-out;
}

.hero-figure .d1 { transition-delay: 0.15s; }
.hero-figure .d2 { transition-delay: 0.3s; }
.hero-figure .d3 { transition-delay: 0.45s; }
.hero-figure .d4 { transition-delay: 0.8s; }

.js .hero-figure.reveal:not(.is-visible) .draw {
  stroke-dashoffset: 1;
}

/* ---- Cards (shared: problems, builds) ---- */

.card-grid {
  list-style: none;
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
  max-width: none;
  align-items: stretch;
}

@media (min-width: 700px) {
  .card-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (min-width: 1080px) {
  .card-grid--3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.card-grid li {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg);
  padding: 1.75rem;
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out, transform 0.15s ease-out;
}

.card-grid li:hover {
  border-color: var(--navy);
  box-shadow: 0 3px 10px rgba(18, 49, 79, 0.07);
  transform: translateY(-2px);
}

.card-grid svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke: var(--navy);
  margin-bottom: 1rem;
}

.card-grid h3 {
  margin-bottom: 0.4rem;
}

.card-grid .desc {
  color: var(--ink-soft);
  font-size: 0.9844rem;
}

.card-grid .fix {
  margin-top: 1.1rem;
  padding-left: 0.9rem;
  border-left: 2px solid var(--navy);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.card-grid .fix strong {
  color: var(--navy);
  font-weight: 700;
}

/* ---- Deliverables: ordered numbered list (what you get) ---- */

.deliverables {
  list-style: none;
  margin-top: 2.5rem;
  max-width: 56rem;
}

.deliverables li {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.deliverables li:first-child {
  border-top: 1px solid var(--line);
}

.deliverables .num {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--navy);
  padding-top: 0.2rem;
}

.deliverables .d-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.deliverables .d-head svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: var(--navy);
  flex-shrink: 0;
}

.deliverables .desc {
  color: var(--ink-soft);
  max-width: var(--measure);
}

/* ---- Trust panel (what this costs you) ---- */

.trust-panel {
  margin-top: 3rem;
  background: var(--navy);
  color: #FFFFFF;
  border-radius: 8px;
  padding: 2rem 1.75rem;
  display: grid;
  gap: 1.75rem;
  max-width: 56rem;
}

@media (min-width: 768px) {
  .trust-panel {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    padding: 2.5rem 2.25rem;
  }
}

.trust-panel svg {
  width: 1.6rem;
  height: 1.6rem;
  stroke: #FFFFFF;
  margin-bottom: 0.8rem;
}

.trust-panel strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 0.35rem;
}

.trust-panel p {
  color: var(--on-navy-soft);
  font-size: 0.9375rem;
  line-height: 1.55;
}

/* ---- Steps timeline (how it works) ---- */

/* Numeral discs sit directly on the connecting line, so nodes and
   numbers can never drift out of alignment. */
.steps {
  list-style: none;
  margin-top: 2.75rem;
  max-width: none;
  display: grid;
  gap: 2.5rem;
}

.steps li {
  position: relative;
  padding-left: 4.25rem;
}

.steps .step-num {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 2px solid var(--navy);
}

/* vertical connecting line (mobile), through the disc centers */
.steps li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: calc(1.5rem - 1px);
  top: 3.25rem;
  bottom: -2.75rem;
  width: 2px;
  background: var(--on-navy-line);
}

.steps strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.005em;
  margin-bottom: 0.35rem;
  padding-top: 0.3rem;
  color: #FFFFFF;
}

.steps span {
  color: var(--on-navy-soft);
}

@media (min-width: 900px) {
  .steps {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
  }
  .steps li {
    padding-left: 0;
    padding-top: 4.25rem;
  }
  .steps .step-num {
    top: 0;
    left: 0;
  }
  /* horizontal connecting line through the disc centers */
  .steps li:not(:last-child)::before {
    left: 3.25rem;
    right: -3rem;
    top: calc(1.5rem - 1px);
    bottom: auto;
    width: auto;
    height: 2px;
  }
}

.steps-note {
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--on-navy-line);
  color: var(--on-navy-soft);
  max-width: var(--measure);
}

/* ---- Audience tiles (who this is for) ---- */

.audience {
  list-style: none;
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
  max-width: none;
  align-items: stretch;
}

@media (min-width: 700px) {
  .audience {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1080px) {
  .audience {
    grid-template-columns: repeat(3, 1fr);
  }
}

.audience li {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg);
  padding: 1.6rem;
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out, transform 0.15s ease-out;
}

.audience li:hover {
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(18, 49, 79, 0.09);
  transform: translateY(-2px);
}

.audience .tile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 6px;
  background: var(--tint);
  margin-bottom: 1rem;
}

.audience svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: var(--navy);
  display: block;
}

.audience strong {
  display: block;
  font-weight: 600;
  font-size: 0.9844rem;
  line-height: 1.4;
  margin-bottom: 0.3rem;
}

.audience span {
  color: var(--ink-soft);
  font-size: 0.9063rem;
  line-height: 1.5;
}

/* ---- Check list (price section, hero-adjacent) ---- */

.check-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  max-width: var(--measure);
}

.check-list li {
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
}

.check-list svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--navy);
  margin-top: 0.22rem;
}

.section--navy .check-list li {
  color: #FFFFFF;
}

.section--navy .check-list svg {
  stroke: var(--on-navy-soft);
}

/* ---- About ---- */

.about-body {
  background: var(--tint);
  border-left: 3px solid var(--navy);
  border-radius: 0 8px 8px 0;
  padding: 1.75rem clamp(1.25rem, 3vw, 2rem);
  max-width: 56rem;
}

.about-body > * + * {
  margin-top: 1.25rem;
}

/* ---- Offer/pricing cards (implementation page, navy ground) ---- */

.price-cards {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 56rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .price-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.price-cards > div {
  border: 1px solid var(--on-navy-line);
  border-radius: 6px;
  padding: 1.75rem;
}

.price-cards svg {
  width: 1.6rem;
  height: 1.6rem;
  stroke: #FFFFFF;
  margin-bottom: 0.9rem;
}

.price-cards strong {
  display: block;
  color: #FFFFFF;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 0.4rem;
}

.price-cards span {
  color: var(--on-navy-soft);
  font-size: 0.9375rem;
  line-height: 1.55;
}

/* ---- Icon row (implementation hero) ---- */

.hero-sub {
  margin-top: 1.25rem;
  max-width: 56ch;
}

/* implementation-page hero figure: flow under a magnifier */
.impl-figure {
  margin-top: 2rem;
  max-width: 22rem;
}

.impl-figure svg {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 900px) {
  .impl-figure {
    margin-top: 0;
    max-width: none;
  }
}

/* ---- Forms (/start) ---- */

.page-band {
  background: var(--tint);
  padding-top: calc(var(--pad-section) * 0.6);
  padding-bottom: calc(var(--pad-section) * 0.6);
}

/* form section sits close under its band */
.section--band-follow {
  padding-top: calc(var(--pad-section) * 0.6);
}

.page-band p {
  margin-top: 1rem;
  color: var(--ink-soft);
}

.page-band .band-icon {
  width: 2.5rem;
  height: 2.5rem;
  stroke: var(--navy);
  margin-bottom: 1.25rem;
  display: block;
}

.start-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .start-grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 4rem;
  }
}

.intake-form {
  max-width: 40rem;
}

.field {
  margin-bottom: 1.5rem;
}

.field label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.field .optional {
  font-weight: 400;
  color: var(--ink-soft);
}

.field input,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.7rem 0.85rem;
  min-height: 2.75rem;
  transition: border-color 0.15s ease-out;
}

.field input:hover,
.field textarea:hover {
  border-color: var(--ink-soft);
}

.field input:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 0;
  border-color: var(--navy);
}

.field textarea {
  min-height: 7.5rem;
  resize: vertical;
}

/* honeypot — hidden from people, present for bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--navy);
  border-left-width: 3px;
  border-radius: 4px;
  font-size: 0.9375rem;
  max-width: 40rem;
}

.form-error.is-visible {
  display: block;
}

.form-alt {
  margin-top: 2rem;
  color: var(--ink-soft);
}

/* ---- Supporting panel (/start, /thanks) ---- */

.aside-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--tint);
  padding: 1.75rem;
}

.aside-panel h2 {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.4rem;
}

.next-list strong {
  display: block;
  font-weight: 600;
}

.next-list .next-sub {
  color: var(--ink-soft);
  font-size: 0.9063rem;
}

.next-list {
  list-style: none;
  display: grid;
  gap: 1.1rem;
  max-width: var(--measure);
}

.next-list li {
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  font-size: 0.9844rem;
}

.next-list svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: var(--navy);
  margin-top: 0.05rem;
}

.aside-points {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.8rem;
}

.aside-points p {
  font-size: 0.9063rem;
  color: var(--ink-soft);
}

.aside-points strong {
  color: var(--ink);
}

/* ---- Closing CTA ---- */

.closing h2 {
  font-size: clamp(1.9rem, 1.2rem + 3.4vw, 3.25rem);
}

.closing p {
  margin-top: 1.25rem;
  color: var(--ink-soft);
}

.closing .btn {
  margin-top: 2rem;
  font-size: 1rem;
  padding: 0.8rem 1.7rem;
}

/* ---- Footer (navy, three columns) ---- */

.site-footer {
  background: var(--navy);
  color: var(--on-navy-soft);
  padding: 4rem 0 2rem;
  font-size: 0.9375rem;
}

.site-footer .footer-grid {
  border-top: 1px solid var(--on-navy-line);
  padding-top: 3rem;
  padding-bottom: 1rem;
  display: grid;
  gap: 2.25rem;
}

@media (min-width: 768px) {
  .site-footer .footer-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 3.5fr) minmax(0, 3.5fr);
    gap: 3rem;
  }
}

.site-footer p {
  max-width: none;
}

.site-footer .footer-brand strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
}

.site-footer .footer-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-navy-soft);
  margin-bottom: 0.9rem;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.site-footer a {
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
}

.site-footer a:hover {
  color: #FFFFFF;
}

.site-footer .footer-bottom {
  border-top: 1px solid var(--on-navy-line);
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(169, 189, 211, 0.75);
}

/* ---- Scroll reveal ---- */

/* hidden state only applies once site.js has tagged <html class="js">,
   so content is never lost if scripts fail to load */
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .card-grid li:hover,
  .audience li:hover {
    transform: none;
  }
  .btn:hover .btn-arr {
    transform: none;
  }
}
