@font-face {
  font-family: "Golos Text";
  src: url("assets/fonts/GolosText-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

:root {
  --ivory: oklch(97% 0.014 88);
  --paper: oklch(99% 0.006 88);
  --paper-soft: oklch(94% 0.022 90);
  --ink: oklch(27% 0.035 205);
  --ink-soft: oklch(43% 0.03 202);
  --teal: oklch(43% 0.073 188);
  --teal-deep: oklch(28% 0.055 188);
  --teal-black: oklch(21% 0.04 190);
  --sage: oklch(78% 0.052 157);
  --sage-soft: oklch(91% 0.026 155);
  --coral: oklch(69% 0.125 37);
  --coral-deep: oklch(53% 0.14 33);
  --coral-soft: oklch(91% 0.04 42);
  --danger: oklch(51% 0.16 27);
  --danger-soft: oklch(93% 0.035 28);
  --line: oklch(85% 0.02 180);
  --shadow-low: 0 14px 35px oklch(25% 0.03 190 / 0.08);
  --shadow-high: 0 35px 80px oklch(22% 0.04 190 / 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 44px;
  --shell: min(1180px, calc(100vw - 40px));
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 80px;
  --menu-top: calc(var(--header-height) + 50px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Golos Text", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

::selection {
  color: var(--paper);
  background: var(--teal);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--paper);
  background: var(--teal-deep);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.emergency-bar {
  color: oklch(97% 0.008 30);
  background: var(--danger);
  font-size: 14px;
}

.emergency-bar__inner {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.emergency-bar p {
  margin: 0;
}

.emergency-bar__action {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 750;
  text-decoration: none;
}

.emergency-bar__action svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: var(--ink);
  background: oklch(97% 0.014 88 / 0.96);
  border-bottom: 1px solid transparent;
  transition: border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 24px oklch(25% 0.03 190 / 0.05);
}

.site-header__inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--teal-deep);
  font-size: 20px;
  font-weight: 830;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.brand > span > span {
  color: var(--coral);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.site-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 630;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal-deep);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  place-content: center;
  gap: 6px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 240ms var(--ease);
}

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

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 24px;
  border: 0;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 740;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 240ms var(--ease), background-color 180ms ease, color 180ms ease, box-shadow 240ms var(--ease);
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button--small {
  min-height: 44px;
  padding: 10px 17px;
  border-radius: 13px;
  font-size: 14px;
}

.button--primary {
  color: var(--paper);
  background: var(--teal);
  box-shadow: 0 12px 24px oklch(35% 0.06 188 / 0.16);
}

.button--primary:hover {
  background: var(--teal-deep);
  box-shadow: 0 16px 28px oklch(30% 0.06 188 / 0.22);
}

.button--quiet {
  color: var(--teal-deep);
  background: var(--sage-soft);
}

.button--quiet:hover {
  background: var(--sage);
}

.button--emergency {
  color: var(--paper);
  background: var(--danger);
  box-shadow: none;
}

.button--emergency:hover {
  background: oklch(45% 0.16 27);
}

.button--ink {
  color: var(--paper);
  background: var(--teal-black);
}

.button--ink:hover {
  background: var(--teal-deep);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 112px) 0 0;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  align-items: center;
  gap: clamp(54px, 7vw, 110px);
}

.hero__copy {
  padding-bottom: 40px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 720;
}

.eyebrow span {
  width: 10px;
  height: 10px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 7px var(--coral-soft);
}

.hero h1,
.section-heading h2,
.safety__intro h2,
.support__heading h2,
.faq__intro h2,
.final-cta h2 {
  text-wrap: balance;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--teal-deep);
  font-size: clamp(3.4rem, 6.1vw, 6rem);
  font-weight: 830;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 em {
  color: var(--coral-deep);
  font-style: normal;
  font-weight: 560;
}

.hero__lead {
  max-width: 660px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.65vw, 21px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__note {
  max-width: 650px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  margin-top: 28px;
  padding-top: 22px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.hero__note p {
  margin: 0;
}

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

.status-dot {
  width: 9px;
  height: 9px;
  margin-top: 6px;
  background: var(--coral);
  border-radius: 50%;
  animation: status-pulse 2.8s ease-in-out infinite;
}

@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 0 oklch(69% 0.125 37 / 0); }
  45% { box-shadow: 0 0 0 7px oklch(69% 0.125 37 / 0.15); }
}

.hero__orb {
  position: absolute;
  z-index: 0;
  border-radius: 44% 56% 70% 30% / 53% 32% 68% 47%;
  pointer-events: none;
}

.hero__orb--sage {
  top: -170px;
  right: -140px;
  width: 520px;
  height: 420px;
  background: var(--sage);
  transform: rotate(14deg);
}

.hero__orb--coral {
  bottom: 70px;
  left: -260px;
  width: 420px;
  height: 300px;
  background: var(--coral-soft);
  transform: rotate(-12deg);
}

.demo-wrap {
  position: relative;
  padding: 26px 10px 54px;
}

.path-dots {
  position: absolute;
  right: -28px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: rotate(-18deg);
}

.path-dots i {
  width: 12px;
  height: 12px;
  background: var(--coral);
  border-radius: 50%;
  opacity: calc(1 - var(--i, 0) * 0.18);
}

.path-dots i:nth-child(1) { --i: 3; width: 7px; height: 7px; }
.path-dots i:nth-child(2) { --i: 2; width: 9px; height: 9px; }
.path-dots i:nth-child(3) { --i: 1; }
.path-dots i:nth-child(4) { width: 17px; height: 17px; }

.bot-demo {
  position: relative;
  min-height: 555px;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid oklch(87% 0.02 175);
  border-radius: 38px;
  box-shadow: var(--shadow-high);
  transform: rotate(1.2deg);
}

.bot-demo::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -90px;
  right: -90px;
  width: 220px;
  height: 220px;
  background: var(--sage-soft);
  border-radius: 50%;
}

.bot-demo__top {
  position: relative;
  z-index: 1;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.bot-demo__identity {
  display: flex;
  align-items: center;
  gap: 11px;
}

.bot-demo__identity img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.bot-demo__identity h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.2;
}

.bot-demo__identity p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
}

.bot-demo__identity p span {
  width: 7px;
  height: 7px;
  background: var(--coral);
  border-radius: 50%;
}

.bot-demo__quiet {
  padding: 6px 9px;
  color: var(--teal);
  background: var(--sage-soft);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 680;
}

.bot-demo__messages {
  position: relative;
  z-index: 1;
  padding: 28px 22px 92px;
}

.message {
  max-width: 90%;
  padding: 16px 17px;
  border-radius: 10px 20px 20px 20px;
  font-size: 14px;
  line-height: 1.45;
}

.message p {
  margin: 0;
}

.message--bot {
  color: var(--teal-black);
  background: var(--sage-soft);
}

.message--answer {
  margin-top: 14px;
  animation: message-in 320ms var(--ease) both;
}

@keyframes message-in {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.message--answer a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 740;
}

.scenario-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0 30px;
}

.scenario-chips button {
  min-height: 44px;
  padding: 8px 12px;
  color: var(--teal-deep);
  background: transparent;
  border: 1px solid oklch(73% 0.05 170);
  border-radius: 999px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 650;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 220ms var(--ease);
}

.scenario-chips button:hover,
.scenario-chips button.is-selected {
  color: var(--paper);
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-1px);
}

.bot-demo__footer {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
  margin: 0;
  padding-top: 15px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 10px;
  text-align: center;
}

.trust-row {
  position: relative;
  z-index: 3;
  min-height: 94px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 28px;
  padding: 25px 34px;
  background: var(--teal-deep);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.trust-row p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--paper-soft);
  font-size: 13px;
  font-weight: 620;
}

.trust-row svg {
  width: 22px;
  height: 22px;
  flex: none;
  fill: none;
  stroke: var(--coral);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: clamp(90px, 11vw, 150px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 100px minmax(0, 780px);
  gap: 18px;
  margin-bottom: clamp(48px, 6vw, 78px);
}

.section-index {
  margin: 8px 0 0;
  color: var(--coral-deep);
  font-size: 14px;
  font-weight: 760;
  font-variant-numeric: tabular-nums;
}

.section-heading h2,
.safety__intro h2,
.support__heading h2,
.faq__intro h2,
.final-cta h2 {
  margin: 0;
  color: var(--teal-deep);
  font-size: clamp(2.45rem, 4.5vw, 4.25rem);
  font-weight: 790;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-heading > div > p,
.support__heading > p,
.faq__intro > p {
  max-width: 660px;
  margin: 23px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: route;
}

.route::before {
  content: "";
  position: absolute;
  top: 66px;
  right: 14%;
  left: 14%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--sage) 0 8px, transparent 8px 17px);
}

.route li {
  position: relative;
  padding: 0 20px;
  text-align: center;
}

.route__number {
  position: absolute;
  z-index: 3;
  top: -9px;
  left: calc(50% + 40px);
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--coral);
  border: 4px solid var(--ivory);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.route__icon {
  position: relative;
  z-index: 2;
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  margin: 0 auto 25px;
  color: var(--teal);
  background: var(--sage-soft);
  border-radius: 45% 55% 50% 50% / 50% 42% 58% 50%;
}

.route li:nth-child(2) .route__icon {
  color: var(--coral-deep);
  background: var(--coral-soft);
  border-radius: 52% 48% 40% 60% / 48% 55% 45% 52%;
}

.route li:nth-child(3) .route__icon {
  border-radius: 60% 40% 58% 42% / 44% 55% 45% 56%;
}

.route__icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route h3 {
  margin: 0;
  color: var(--teal-deep);
  font-size: 21px;
  letter-spacing: -0.02em;
}

.route p {
  max-width: 320px;
  margin: 13px auto 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.situations {
  color: var(--paper-soft);
  background: var(--teal-deep);
}

.section-heading--light h2,
.situations .section-heading > div > p {
  color: var(--paper-soft);
}

.situations .section-heading > div > p {
  opacity: 0.72;
}

.situations .section-index {
  color: var(--coral);
}

.situation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}

.situation-list {
  border-top: 1px solid oklch(87% 0.02 180 / 0.22);
}

.situation-button {
  width: 100%;
  min-height: 79px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 8px;
  color: var(--paper-soft);
  background: transparent;
  border: 0;
  border-bottom: 1px solid oklch(87% 0.02 180 / 0.22);
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, padding 260ms var(--ease), background-color 180ms ease;
}

.situation-button > span {
  color: var(--sage);
  font-size: 12px;
  font-weight: 760;
}

.situation-button strong {
  font-size: clamp(17px, 1.8vw, 23px);
  letter-spacing: -0.025em;
}

.situation-button i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--sage);
  border: 1px solid oklch(87% 0.02 180 / 0.22);
  border-radius: 50%;
  font-style: normal;
  transition: transform 260ms var(--ease), color 180ms ease, background-color 180ms ease;
}

.situation-button:hover,
.situation-button.is-active {
  padding-left: 18px;
  color: var(--paper);
  background: oklch(35% 0.055 188);
}

.situation-button:hover i,
.situation-button.is-active i {
  color: var(--teal-deep);
  background: var(--coral);
  border-color: var(--coral);
  transform: rotate(45deg);
}

.situation-detail {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  min-height: 500px;
  padding: 28px;
  color: var(--teal-black);
  background: var(--sage);
  border-radius: var(--radius-lg);
}

.situation-detail__visual {
  position: relative;
  height: 190px;
  overflow: hidden;
  margin-bottom: 32px;
  background: var(--sage-soft);
  border-radius: 19px;
}

.situation-detail__visual::before {
  content: "";
  position: absolute;
  top: -45px;
  left: 50%;
  width: 150px;
  height: 210px;
  border: 34px solid var(--teal);
  border-bottom: 0;
  border-radius: 80px 80px 0 0;
  transform: translateX(-50%);
}

.situation-detail__visual::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 78px;
  height: 118px;
  background: var(--paper-soft);
  border-radius: 45px 45px 0 0;
  transform: translateX(-50%);
}

.situation-detail__visual span {
  position: absolute;
  z-index: 2;
  bottom: 16px;
  width: 13px;
  height: 13px;
  background: var(--coral);
  border-radius: 50%;
}

.situation-detail__visual span:nth-child(1) { left: 18%; width: 7px; height: 7px; }
.situation-detail__visual span:nth-child(2) { left: 29%; bottom: 24px; width: 9px; height: 9px; }
.situation-detail__visual span:nth-child(3) { left: 41%; bottom: 36px; }
.situation-detail__visual span:nth-child(4) { left: 54%; bottom: 54px; width: 18px; height: 18px; }

.situation-detail__label {
  margin: 0 0 12px;
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 760;
}

.situation-detail h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.situation-detail > p:not(.situation-detail__label) {
  margin: 17px 0 0;
  color: oklch(31% 0.035 190);
  font-size: 15px;
}

.situation-detail > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--teal-deep);
  font-size: 14px;
  font-weight: 760;
}

.unsafe-callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 60px;
  padding: 26px 28px;
  color: var(--ink);
  background: var(--danger-soft);
  border-radius: var(--radius-md);
}

.unsafe-callout__icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--danger);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 850;
}

.unsafe-callout p,
.unsafe-callout h3 {
  margin: 0;
}

.unsafe-callout > div:nth-child(2) > p:first-child {
  color: var(--danger);
  font-size: 12px;
  font-weight: 760;
}

.unsafe-callout h3 {
  margin-top: 3px;
  font-size: 22px;
}

.unsafe-callout h3 + p {
  max-width: 720px;
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 14px;
}

.safety {
  background: var(--paper-soft);
}

.safety__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(60px, 9vw, 130px);
}

.safety__intro h2 {
  max-width: 520px;
}

.safety__intro > p:not(.section-index) {
  max-width: 500px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.safety__stamp {
  max-width: 380px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 42px;
  padding: 18px 20px;
  color: var(--teal-deep);
  background: var(--sage-soft);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
}

.safety__stamp svg {
  width: 42px;
  height: 42px;
  flex: none;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.boundary-list {
  border-top: 1px solid var(--line);
}

.boundary-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.boundary-list article > span {
  color: var(--coral-deep);
  font-size: 12px;
  font-weight: 760;
}

.boundary-list h3,
.boundary-list p {
  margin: 0;
}

.boundary-list h3 {
  color: var(--teal-deep);
  font-size: 20px;
  letter-spacing: -0.025em;
}

.boundary-list p {
  max-width: 620px;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 14px;
}

.data-note {
  margin-top: 76px;
  padding: 28px 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.data-note > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.data-note strong {
  color: var(--ink);
}

.text-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  padding: 8px 0;
  color: var(--teal);
  background: none;
  border: 0;
  font-size: 13px;
  font-weight: 760;
  cursor: pointer;
}

.text-button span {
  display: inline-block;
  font-size: 18px;
  transition: transform 240ms var(--ease);
}

.text-button[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.data-details {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.data-details p {
  max-width: 900px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.support {
  background: var(--ivory);
}

.support__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: clamp(48px, 9vw, 130px);
  margin-bottom: 64px;
}

.support__heading .section-index {
  margin-bottom: 15px;
}

.support__heading > p {
  margin: 0 0 5px;
  font-size: 17px;
}

.support__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 24px;
}

.official-form,
.contact-sheet {
  min-height: 570px;
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--radius-lg);
}

.official-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--paper-soft);
  background: var(--teal);
}

.official-form__mark {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.official-form__mark span {
  padding: 7px 10px;
  color: var(--teal-deep);
  background: var(--sage);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 760;
}

.official-form__mark svg {
  width: 88px;
  height: 88px;
  fill: none;
  stroke: var(--sage);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.official-form h3 {
  max-width: 390px;
  margin: auto 0 0;
  color: var(--paper);
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.official-form > p:not(.official-form__fine) {
  max-width: 440px;
  margin: 21px 0 0;
  color: oklch(94% 0.02 168);
  font-size: 15px;
}

.official-form .button {
  margin-top: 31px;
  color: var(--teal-deep);
  background: var(--paper);
  box-shadow: none;
}

.official-form .button:hover {
  background: var(--sage-soft);
}

.official-form__fine {
  margin: 18px 0 0;
  color: oklch(97% 0.01 170 / 0.9);
  font-size: 11px;
}

.contact-sheet {
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
}

.contact-sheet__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.contact-sheet__top p,
.contact-sheet__top h3 {
  margin: 0;
}

.contact-sheet__top p {
  color: var(--teal);
  font-size: 12px;
  font-weight: 760;
}

.contact-sheet__top h3 {
  margin-top: 6px;
  color: var(--teal-deep);
  font-size: 27px;
  letter-spacing: -0.035em;
}

.contact-sheet__top > span {
  padding: 8px 10px;
  color: var(--teal);
  background: var(--sage-soft);
  border-radius: 10px;
  font-size: 9px;
  font-weight: 750;
  line-height: 1.4;
  text-align: right;
}

.contact-sheet dl {
  margin: 0;
}

.contact-sheet dl > div {
  display: grid;
  grid-template-columns: minmax(130px, 0.7fr) minmax(0, 1.3fr);
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-sheet dt {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 650;
}

.contact-sheet dd {
  margin: 0;
  color: var(--teal-deep);
  font-size: 14px;
  font-weight: 680;
}

.contact-sheet dd a {
  text-decoration-color: var(--sage);
}

.contact-sheet dd small {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 500;
}

.contact-sheet__source {
  min-height: 44px;
  align-items: center;
  display: inline-flex;
  gap: 8px;
  margin-top: 24px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 740;
}

.faq {
  background: var(--paper-soft);
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(56px, 10vw, 150px);
}

.faq__intro {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.faq__intro > p {
  margin-top: 21px;
  font-size: 16px;
}

.faq__intro > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 740;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 21px 0;
  color: var(--teal-deep);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 710;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.accordion summary span::before,
.accordion summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--teal);
  transform: translate(-50%, -50%);
  transition: transform 240ms var(--ease);
}

.accordion summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion details p {
  max-width: 680px;
  margin: -5px 54px 25px 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(85px, 10vw, 130px) 0;
  color: var(--teal-black);
  background: var(--coral);
}

.final-cta__shape {
  position: absolute;
  top: -180px;
  right: -70px;
  width: 520px;
  height: 520px;
  border: 110px solid var(--coral-soft);
  border-radius: 50%;
  opacity: 0.45;
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: clamp(50px, 10vw, 160px);
}

.final-cta__inner > div:first-child > p {
  margin: 0 0 16px;
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 760;
}

.final-cta h2 {
  max-width: 730px;
  color: var(--teal-black);
}

.final-cta__actions > p {
  margin: 0 0 24px;
  color: oklch(29% 0.045 190);
  font-size: 16px;
}

.final-cta__actions .button {
  width: 100%;
}

.final-cta__actions > a:last-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 730;
}

.site-footer {
  padding: 62px 0 26px;
  color: var(--paper-soft);
  background: var(--teal-black);
}

.site-footer__top {
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  align-items: start;
  gap: clamp(40px, 8vw, 110px);
  padding-bottom: 44px;
}

.brand--footer {
  color: var(--paper);
}

.site-footer__top > p {
  max-width: 520px;
  margin: 5px 0 0;
  color: oklch(88% 0.02 180 / 0.7);
  font-size: 13px;
}

.site-footer nav {
  display: grid;
  gap: 9px;
}

.site-footer nav a {
  color: oklch(93% 0.02 180 / 0.82);
  font-size: 13px;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: oklch(86% 0.02 180 / 0.76);
  border-top: 1px solid oklch(90% 0.02 180 / 0.13);
  font-size: 10px;
}

.site-footer__bottom p {
  margin: 0;
}

.evidence {
  color: var(--ink);
  background: var(--ivory);
}

.evidence__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 24px;
  align-items: stretch;
}

.journey-card,
.metrics-panel {
  min-height: 590px;
  padding: clamp(27px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.journey-card {
  display: flex;
  flex-direction: column;
  color: var(--teal-black);
  background: var(--paper);
}

.journey-card__top,
.metrics-panel__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.journey-card__tag,
.metrics-panel__label {
  color: var(--teal);
  font-size: 12px;
  font-weight: 760;
}

.journey-card__tag {
  padding: 7px 10px;
  background: var(--sage-soft);
  border-radius: 999px;
}

.journey-card__index {
  color: var(--coral-deep);
  font-size: 13px;
  font-weight: 780;
  font-variant-numeric: tabular-nums;
}

.journey-card__lead {
  max-width: 520px;
  margin: 45px 0 0;
  color: var(--teal-deep);
  font-size: clamp(1.5rem, 2.7vw, 2.25rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.journey-steps {
  display: grid;
  gap: 0;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.journey-steps li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 13px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.journey-steps li > span {
  color: var(--coral-deep);
  font-size: 11px;
  font-weight: 780;
  font-variant-numeric: tabular-nums;
}

.journey-steps strong,
.journey-steps p {
  display: block;
  margin: 0;
}

.journey-steps strong {
  color: var(--teal-deep);
  font-size: 16px;
  letter-spacing: -0.015em;
}

.journey-steps p {
  max-width: 450px;
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.46;
}

.journey-card__result {
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding: 18px 20px;
  color: var(--teal-deep);
  background: var(--coral-soft);
  border-radius: var(--radius-md);
}

.journey-card__result span {
  color: var(--coral-deep);
  font-size: 11px;
  font-weight: 760;
}

.journey-card__result strong {
  max-width: 480px;
  font-size: 15px;
  line-height: 1.35;
}

.metrics-panel {
  color: var(--paper-soft);
  background: var(--teal-deep);
  border-color: var(--teal-deep);
}

.metrics-panel__label {
  color: var(--sage);
}

.metrics-panel h3 {
  max-width: 440px;
  margin: 13px 0 0;
  color: var(--paper);
  font-size: clamp(1.85rem, 3.3vw, 2.85rem);
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.metrics-panel__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: none;
  padding: 7px 10px;
  color: var(--teal-deep);
  background: var(--sage);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 760;
  white-space: nowrap;
}

.metrics-panel__status i {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
}

.metric-list {
  margin-top: 48px;
  border-top: 1px solid oklch(90% 0.02 180 / 0.22);
}

.metric-row {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 57px;
  border-bottom: 1px solid oklch(90% 0.02 180 / 0.22);
  font-size: 12px;
}

.metric-row__code {
  color: var(--sage);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
}

.metric-row > span:nth-child(2) {
  color: oklch(94% 0.02 180 / 0.84);
}

.metric-row b {
  color: var(--coral);
  font-size: 10px;
  font-weight: 730;
  white-space: nowrap;
}

.metrics-panel__note {
  margin-top: 29px;
  padding-top: 20px;
  border-top: 1px solid oklch(90% 0.02 180 / 0.22);
}

.metrics-panel__note strong {
  color: var(--paper);
  font-size: 12px;
}

.metrics-panel__note p {
  max-width: 500px;
  margin: 7px 0 0;
  color: oklch(90% 0.02 180 / 0.72);
  font-size: 12px;
  line-height: 1.5;
}

.metrics-panel code {
  padding: 1px 4px;
  color: var(--sage);
  background: oklch(18% 0.04 190 / 0.35);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.92em;
}

.evidence__footnote {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  margin-top: 24px;
  padding: 20px 24px;
  color: var(--ink-soft);
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 13px;
}

.evidence__footnote p {
  max-width: 900px;
  margin: 0;
}

.evidence__footnote strong {
  color: var(--teal-deep);
}

.evidence__footnote-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--paper);
  background: var(--coral);
  border-radius: 50%;
  font-size: 17px;
  font-weight: 760;
}

.mobile-cta {
  display: none;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  animation: reveal-in 720ms var(--ease) both;
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr;
  }

  .site-nav {
    justify-content: flex-end;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 6vw, 4.8rem);
  }

  .support__heading {
    gap: 55px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 70px;
  }

  .emergency-bar__inner {
    min-height: 50px;
  }

  .emergency-bar p {
    max-width: 540px;
    line-height: 1.3;
  }

  .menu-button {
    display: grid;
    justify-self: end;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    position: fixed;
    z-index: 49;
    top: var(--menu-top);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 32px 20px 120px;
    background: var(--ivory);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 240ms ease, transform 300ms var(--ease);
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 22px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    padding-top: 58px;
  }

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

  .hero__copy {
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 730px;
    font-size: clamp(3.25rem, 11vw, 5.6rem);
  }

  .hero__lead {
    max-width: 700px;
  }

  .demo-wrap {
    width: min(580px, 100%);
    margin-inline: auto;
  }

  .trust-row {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-top: 12px;
  }

  .section-heading {
    grid-template-columns: 65px 1fr;
  }

  .route {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .route::before {
    top: 90px;
    right: auto;
    bottom: 90px;
    left: 50%;
    width: 2px;
    height: auto;
    background: repeating-linear-gradient(180deg, var(--sage) 0 8px, transparent 8px 17px);
  }

  .route li {
    z-index: 2;
  }

  .route p {
    padding-inline: 18px;
    background: var(--ivory);
  }

  .situation-layout,
  .safety__grid,
  .support__layout,
  .support__heading,
  .faq__layout,
  .final-cta__inner {
    grid-template-columns: 1fr;
  }

  .situation-detail,
  .faq__intro {
    position: static;
  }

  .situation-detail {
    min-height: auto;
  }

  .safety__grid,
  .faq__layout {
    gap: 60px;
  }

  .support__heading {
    align-items: start;
    gap: 30px;
  }

  .support__heading > p {
    max-width: 680px;
  }

  .official-form,
  .contact-sheet {
    min-height: 520px;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__top > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: min(100% - 28px, 1180px);
    --radius-lg: 24px;
  }

  body {
    font-size: 16px;
  }

  .emergency-bar__inner {
    align-items: flex-start;
    gap: 10px;
    padding-block: 10px;
  }

  .emergency-bar p {
    font-size: 11px;
  }

  .emergency-bar p strong {
    display: block;
  }

  .emergency-bar__action {
    min-height: 44px;
    padding: 10px 11px;
    color: var(--danger);
    background: var(--paper);
    border-radius: 9px;
    font-size: 10px;
  }

  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 37px;
    height: 37px;
  }

  .site-nav {
    top: var(--menu-top);
  }

  .hero {
    padding-top: 45px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
    line-height: 1;
  }

  .hero__lead {
    margin-top: 23px;
    font-size: 17px;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__orb--sage {
    top: -80px;
    right: -190px;
    width: 350px;
    height: 270px;
  }

  .demo-wrap {
    padding-inline: 0;
  }

  .bot-demo {
    min-height: 565px;
    border-radius: 29px;
    transform: none;
  }

  .bot-demo__top {
    padding: 16px;
  }

  .bot-demo__quiet {
    display: none;
  }

  .bot-demo__messages {
    padding-inline: 16px;
  }

  .scenario-chips {
    margin-left: 12px;
  }

  .trust-row {
    padding-inline: 22px;
    border-radius: 23px 23px 0 0;
  }

  .section {
    padding-block: 86px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-index {
    margin-top: 0;
  }

  .section-heading h2,
  .safety__intro h2,
  .support__heading h2,
  .faq__intro h2,
  .final-cta h2 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .section-heading > div > p,
  .support__heading > p,
  .faq__intro > p,
  .safety__intro > p:not(.section-index) {
    font-size: 16px;
  }

  .route li {
    padding-inline: 0;
  }

  .situation-button {
    grid-template-columns: 34px 1fr auto;
    min-height: 72px;
  }

  .situation-button i {
    width: 31px;
    height: 31px;
  }

  .situation-detail {
    padding: 20px;
  }

  .situation-detail__visual {
    height: 160px;
  }

  .unsafe-callout {
    grid-template-columns: auto 1fr;
    padding: 21px;
  }

  .unsafe-callout .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .data-note {
    padding: 23px 20px;
  }

  .official-form,
  .contact-sheet {
    min-height: auto;
    padding: 25px 21px;
  }

  .official-form h3 {
    margin-top: 110px;
  }

  .official-form .button {
    width: 100%;
  }

  .contact-sheet dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .contact-sheet__top h3 {
    font-size: 23px;
  }

  .accordion summary {
    min-height: 78px;
    font-size: 17px;
  }

  .accordion details p {
    margin-right: 0;
  }

  .final-cta__inner {
    gap: 42px;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__top > p {
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-cta {
    position: fixed;
    z-index: 45;
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--paper);
    background: var(--teal-deep);
    border-radius: 15px;
    box-shadow: var(--shadow-high);
    font-size: 14px;
    font-weight: 760;
    text-decoration: none;
  }
}

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

  .journey-card,
  .metrics-panel {
    min-height: auto;
  }

  .journey-card__result {
    margin-top: 34px;
  }
}

@media (max-width: 620px) {
  .journey-card,
  .metrics-panel {
    padding: 23px 20px;
  }

  .journey-card__lead {
    margin-top: 34px;
    font-size: 1.55rem;
  }

  .metric-list {
    margin-top: 34px;
  }

  .metric-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 12px;
    min-height: 66px;
    padding: 10px 0;
  }

  .metric-row__code {
    grid-column: 1 / -1;
  }

  .metric-row > span:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .metric-row b {
    grid-column: 2;
    grid-row: 2;
  }

  .evidence__footnote {
    padding: 18px 19px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}
