/* ImpulseIPS — mobile-first */
:root {
  --navy: #0A1628;
  --navy-mid: #0F2137;
  --navy-soft: #152A42;
  --ice: #F8FAFC;
  --ice-muted: #E2E8F0;
  --slate: #94A3B8;
  --slate-dark: #64748B;
  --ink: #0F172A;
  --accent: #FF6B35;
  --accent-soft: #FF8F5C;
  --accent-dim: rgba(255, 107, 53, 0.14);
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: 1.25rem;
  --max: 1120px;
  --nav-h: 3.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ice);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--navy);
  font-weight: 600;
}

.skip:focus {
  left: var(--pad);
  top: var(--pad);
}

.accent { color: var(--accent); }
.ips-letter { color: var(--accent); font-weight: 600; }

/* —— Buttons (touch-friendly) —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: 2px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
  text-align: center;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--accent);
  color: var(--navy);
}

.btn--primary:hover { background: var(--accent-soft); }

.btn--ghost {
  background: transparent;
  border-color: rgba(248, 250, 252, 0.28);
  color: var(--ice);
}

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

.btn--nav {
  min-height: 2.25rem;
  padding: 0.45rem 0.9rem;
  background: var(--accent);
  color: var(--navy);
  font-size: 0.8125rem;
}

.btn--nav:hover { background: var(--accent-soft); }
.btn--full { width: 100%; }

/* —— Lang switcher —— */
.lang {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(248, 250, 252, 0.18);
  border-radius: 2px;
  overflow: hidden;
}

.lang__btn {
  min-width: 2.5rem;
  min-height: 2.25rem;
  padding: 0.35rem 0.55rem;
  border: 0;
  background: transparent;
  color: var(--slate);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang__btn[aria-pressed="true"] {
  background: var(--accent);
  color: var(--navy);
}

.lang__btn:hover:not([aria-pressed="true"]) {
  color: var(--ice);
  background: rgba(248, 250, 252, 0.06);
}

.lang--mobile { display: inline-flex; }

/* —— Nav —— */
.nav {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem var(--pad);
  min-height: var(--nav-h);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--ice);
  min-width: 0;
}

.nav__logo {
  color: var(--ice);
  flex-shrink: 0;
}

.nav__ips {
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-left: 0.05em;
}

.nav__links { display: none; }

.nav__end {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--ice);
  margin-left: auto;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.nav__toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.nav__drawer {
  position: absolute;
  top: var(--nav-h);
  left: var(--pad);
  right: var(--pad);
  z-index: 25;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem;
  background: var(--navy-mid);
  border: 1px solid rgba(248, 250, 252, 0.08);
  border-radius: 4px;
}

.nav__drawer[hidden] { display: none; }

.nav__drawer a {
  padding: 0.9rem 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ice);
  border-radius: 2px;
  transition: background 0.2s;
}

.nav__drawer a:hover {
  background: var(--accent-dim);
  color: var(--accent);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 55% at 80% 10%, rgba(255, 107, 53, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 90%, rgba(6, 182, 212, 0.05), transparent 50%),
    linear-gradient(165deg, #06101C 0%, var(--navy) 45%, #0C1C32 100%);
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__glow {
  position: absolute;
  width: min(90vw, 420px);
  height: min(90vw, 420px);
  right: -20%;
  top: 8%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.2), transparent 65%);
  filter: blur(36px);
  animation: glow-breathe 8s ease-in-out infinite;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(248, 250, 252, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 250, 252, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 10%, transparent 70%);
}

.hero__pulse {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.pulse-wave {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: draw-pulse 3.2s var(--ease) 0.4s forwards, pulse-flow 6s ease-in-out 3.6s infinite;
}

.pulse-wave--delay { animation-delay: 0.9s, 4.2s; }

.pulse-nodes circle {
  opacity: 0;
  animation: node-pop 0.5s var(--ease) forwards;
}

.pulse-nodes circle:nth-child(1) { animation-delay: 1.4s; }
.pulse-nodes circle:nth-child(2) { animation-delay: 1.8s; }
.pulse-nodes circle:nth-child(3) { animation-delay: 2.2s; }

.hero__mark {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 1.5rem var(--pad) 3.5rem;
}

.hero__brand { margin: 0 0 0.75rem; }

.hero__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 11vw, 3.5rem);
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--ice);
}

.hero__wordmark .accent { letter-spacing: 0.1em; }

.hero__slogan {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  line-height: 1.4;
}

.hero__title {
  margin: 0 0 0.85rem;
  max-width: 18ch;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 5.5vw, 1.85rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ice);
}

.hero__lead {
  margin: 0 0 1.75rem;
  max-width: 36ch;
  font-size: 0.98rem;
  color: var(--slate);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero__actions .btn { width: 100%; }

/* —— Sections —— */
.section {
  position: relative;
  padding: 3.5rem var(--pad);
}

.section--light {
  background: linear-gradient(180deg, #F1F5F9 0%, var(--ice) 40%, #EEF2F7 100%);
  color: var(--ink);
}

.section--light .section__label { color: var(--accent); }
.section--light .section__title { color: var(--navy); }
.section--light .section__lead { color: var(--slate-dark); }

.section--dark {
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(255, 107, 53, 0.08), transparent 50%),
    var(--navy);
  color: var(--ice);
}

.section--accent {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 50%, #121F33 100%);
  border-block: 1px solid rgba(255, 107, 53, 0.15);
}

.section--cta {
  background:
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(255, 107, 53, 0.12), transparent 55%),
    var(--navy);
}

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section__inner--narrow { max-width: 640px; }

.section__ips {
  display: flex;
  gap: 0.3rem;
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}

.section__ips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  background: var(--accent);
  color: var(--navy);
  border-radius: 2px;
}

.section__label {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.section__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 6vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section__lead {
  margin: 0 0 2rem;
  max-width: 42ch;
  font-size: 1rem;
  color: var(--slate);
}

/* —— IPS grid —— */
.ips-grid {
  display: grid;
  gap: 0;
}

.ips-item {
  position: relative;
  padding: 1.5rem 0;
  border-top: 1px solid var(--ice-muted);
}

.ips-item:last-child { border-bottom: 1px solid var(--ice-muted); }

.ips-item__letter {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.04em;
}

.ips-item h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
}

.ips-item p {
  margin: 0;
  color: var(--slate-dark);
  font-size: 0.95rem;
}

/* —— Friction —— */
.friction-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.friction-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(248, 250, 252, 0.08);
}

.friction-list li:first-child {
  border-top: 1px solid rgba(248, 250, 252, 0.08);
}

.friction-list__pulse {
  width: 10px;
  height: 10px;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.5);
  animation: ping 2.4s ease-out infinite;
}

.friction-list h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

.friction-list p {
  margin: 0;
  color: var(--slate);
  font-size: 0.95rem;
}

/* —— Results —— */
.results-grid {
  display: grid;
  gap: 1.5rem;
}

.result {
  padding: 1.5rem 0;
  border-top: 1px solid var(--ice-muted);
}

.result:last-child {
  border-bottom: 1px solid var(--ice-muted);
}

.result h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
}

.result__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0 0 0.85rem;
}

.result__metrics div {
  margin: 0;
}

.result__metrics dt {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-dark);
}

.result__metrics dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--slate-dark);
  line-height: 1.2;
}

.result__after {
  color: var(--accent) !important;
}

.result p {
  margin: 0;
  color: var(--slate-dark);
  font-size: 0.95rem;
}

.section--dark .offer {
  border-color: rgba(248, 250, 252, 0.08);
}

.section--dark .offer__body h3 {
  color: var(--ice);
}

.section--dark .offer__body p {
  color: var(--slate);
}

/* —— Offers —— */
.offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.offer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--ice-muted);
  align-items: start;
}

.offer:first-child { border-top: 1px solid var(--ice-muted); }

.offer__step {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  padding-top: 0.15rem;
}

.offer__body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
}

.offer__body p {
  margin: 0;
  color: var(--slate-dark);
  font-size: 0.95rem;
}

/* —— Method —— */
.method-flow {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.method-flow__item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.1rem 1rem;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.22);
  border-radius: 2px;
}

.method-flow__letter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--accent);
  line-height: 1;
}

.method-flow__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ice);
}

.method-flow__arrow { display: none; }

/* —— Form —— */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form__row {
  display: grid;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--slate);
}

.field input,
.field textarea {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(248, 250, 252, 0.14);
  border-radius: 2px;
  background: var(--navy-soft);
  color: var(--ice);
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.field textarea { min-height: 6.5rem; }

.field input::placeholder,
.field textarea::placeholder { color: var(--slate-dark); }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.contact-form__status {
  margin: 0;
  font-size: 0.9rem;
  text-align: center;
}

.contact-form__status.is-pending { color: var(--slate); }
.contact-form__status.is-ok { color: #4ade80; }
.contact-form__status.is-error { color: #fb7185; }

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form__note {
  margin: 0.15rem 0 0;
  font-size: 0.875rem;
  color: var(--slate);
  text-align: center;
}

.contact-form__note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* —— Footer —— */
.footer {
  padding: 2rem var(--pad);
  border-top: 1px solid rgba(248, 250, 252, 0.08);
  background: #06101C;
}

.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.footer__slogan {
  margin: 0.3rem 0 0;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate);
}

.footer__copy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--slate-dark);
}

/* —— Reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

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

/* —— Animations —— */
@keyframes draw-pulse {
  to { stroke-dashoffset: 0; }
}

@keyframes pulse-flow {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 0.4; }
}

@keyframes draw-mark {
  to { stroke-dashoffset: 0; }
}

@keyframes node-pop {
  from { opacity: 0; transform: scale(0.4); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes glow-breathe {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.45); }
  70% { box-shadow: 0 0 0 12px rgba(255, 107, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

/* —— Tablet+ —— */
@media (min-width: 560px) {
  :root { --pad: 1.5rem; }

  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero__actions .btn { width: auto; }

  .hero__slogan { font-size: 0.85rem; letter-spacing: 0.08em; }

  .contact-form__row { grid-template-columns: 1fr 1fr; }

  .method-flow {
    flex-direction: row;
    align-items: stretch;
    gap: 0.4rem;
  }

  .method-flow__item { flex: 1; }

  .method-flow__arrow {
    display: block;
    align-self: center;
    width: 1.25rem;
    height: 2px;
    background: var(--accent);
    flex-shrink: 0;
    position: relative;
  }

  .method-flow__arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--accent);
    border-top: 2px solid var(--accent);
    transform: translateY(-50%) rotate(45deg);
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* —— Desktop —— */
@media (min-width: 860px) {
  :root {
    --pad: 1.5rem;
    --nav-h: 4.5rem;
  }

  body { font-size: 1.0625rem; }

  .lang--mobile { display: none; }

  .nav__links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .nav__link {
    font-size: 0.9rem;
    color: var(--slate);
    transition: color 0.2s;
  }

  .nav__link:hover { color: var(--ice); }

  .nav__toggle,
  .nav__drawer { display: none !important; }

  .nav__end { display: none; }

  .hero__pulse { opacity: 0.9; }

  .hero__mark {
    display: block;
    position: absolute;
    right: max(1.5rem, calc((100vw - var(--max)) / 2));
    top: 50%;
    transform: translateY(-42%);
    width: min(34vw, 340px);
    opacity: 0.32;
    pointer-events: none;
  }

  .hero__mark svg { width: 100%; height: auto; }

  .mark-i,
  .mark-p,
  .mark-s {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: draw-mark 1.6s var(--ease) forwards;
  }

  .mark-i { animation-delay: 0.3s; }
  .mark-p { animation-delay: 0.55s; }
  .mark-s { animation-delay: 0.85s; }

  .mark-node {
    opacity: 0;
    animation: node-pop 0.4s var(--ease) 1.1s forwards;
  }

  .mark-node--end { animation-delay: 1.5s; }

  .hero__content {
    padding: 2rem var(--pad) 4.5rem;
  }

  .hero__title {
    max-width: 22ch;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
  }

  .hero__lead {
    max-width: 42ch;
    font-size: 1.05rem;
  }

  .hero__wordmark {
    font-size: clamp(3.5rem, 7vw, 5.5rem);
  }

  .section {
    padding: clamp(4.5rem, 9vw, 7rem) var(--pad);
  }

  .section__title {
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  }

  .section__lead {
    margin-bottom: 2.75rem;
    font-size: 1.1rem;
  }

  .ips-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .ips-item {
    border-top: 0;
    border-bottom: 0;
    padding: 0.5rem 0 0.5rem 0;
  }

  .ips-item + .ips-item {
    border-left: 1px solid var(--ice-muted);
    padding-left: 2rem;
    margin-left: 0.5rem;
  }

  .ips-item:last-child { border-bottom: 0; }

  .ips-item__letter { font-size: 3rem; }

  .results-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .result {
    border-top: 0;
    border-bottom: 0;
    padding: 0.5rem 0 0.5rem 0;
  }

  .result + .result {
    border-left: 1px solid var(--ice-muted);
    padding-left: 2rem;
    margin-left: 0.5rem;
  }

  .result:last-child { border-bottom: 0; }

  .friction-list li {
    gap: 1.25rem;
    padding: 1.75rem 0;
  }

  .friction-list h3 { font-size: 1.15rem; }

  .offer {
    gap: 1.5rem;
    padding: 2rem 0;
  }

  .offer__body h3 { font-size: 1.3rem; }
}

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

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

  .pulse-wave,
  .mark-i,
  .mark-p,
  .mark-s,
  .pulse-nodes circle,
  .mark-node,
  .hero__glow,
  .friction-list__pulse {
    animation: none !important;
  }

  .pulse-wave,
  .mark-i,
  .mark-p,
  .mark-s { stroke-dashoffset: 0; }

  .pulse-nodes circle,
  .mark-node { opacity: 1; }
}
