@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-latin-500-normal.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-latin-600-normal.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-latin-700-normal.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  color-scheme: light;
  --ink: #17151f;
  --ink-soft: #292334;
  --muted: #71687f;
  --soft: #fff8f1;
  --paper: #ffffff;
  --line: #eadfd8;
  --line-dark: rgba(255, 255, 255, 0.12);
  --coral: #ff5a5f;
  --coral-dark: #d83f49;
  --teal: #16b8a6;
  --teal-dark: #08746c;
  --violet: #8a63ff;
  --violet-dark: #6140c9;
  --violet-soft: #f1edff;
  --yellow: #ffc542;
  --mint: #e8fbf8;
  --pink: #fff0ef;
  --glass: rgba(255, 255, 255, 0.76);
  --shadow-soft: 0 8px 20px rgba(23, 21, 31, 0.07);
  --shadow-strong: 0 12px 30px rgba(23, 21, 31, 0.1);
  --display: "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  position: relative;
  margin: 0;
  overflow-x: hidden;
  background: var(--soft);
  color: var(--ink);
  font-family: var(--body);
  text-rendering: optimizeLegibility;
}

body:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 980px;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 21, 31, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 21, 31, 0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), transparent 72%);
}

a {
  color: inherit;
}

main a {
  color: var(--teal-dark);
  font-weight: 900;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.shell {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: 18px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(234, 223, 216, 0.72);
  background: rgba(255, 248, 241, 0.96);
}

.topbar-inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  text-decoration: none;
}

.brand-with-logo {
  gap: 0;
  flex: 0 0 auto;
}

.brand-logo {
  width: clamp(150px, 15vw, 188px);
  height: auto;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: 0 12px 34px rgba(23, 21, 31, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 900;
}

.nav-links a {
  position: relative;
  text-decoration: none;
}

.nav-links a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), var(--teal));
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.nav-links a:hover:after {
  opacity: 1;
  transform: scaleX(1);
}

.button,
.store-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 1000;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-secondary {
  border: 1px solid rgba(234, 223, 216, 0.95);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 0 22px;
  box-shadow: 0 12px 30px rgba(23, 21, 31, 0.06);
}

.button-secondary:hover {
  border-color: rgba(255, 90, 95, 0.28);
  box-shadow: 0 14px 34px rgba(23, 21, 31, 0.11);
}

.store-button {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 18px 42px rgba(23, 21, 31, 0.18);
}

.store-button:before {
  content: "";
  position: absolute;
  inset: 0;
  translate: -120% 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: translate 520ms ease;
}

.store-button:hover:before {
  translate: 120% 0;
}

.store-button span {
  position: relative;
  z-index: 1;
}

.store-button span:not(.play-icon) {
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

.store-button strong {
  display: block;
  color: inherit;
  font-weight: 1000;
}

.store-button small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.64rem;
  font-weight: 850;
  line-height: 1;
}

.store-button-small {
  min-height: 44px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.store-button-hero {
  min-height: 60px;
  padding: 0 22px;
  font-size: 1.04rem;
}

.play-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #34a853 0 33%, transparent 33%),
    linear-gradient(45deg, #4285f4 0 50%, #fbbc04 50% 75%, #ea4335 75%);
  clip-path: polygon(18% 8%, 88% 50%, 18% 92%);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-2026 {
  background:
    linear-gradient(125deg, rgba(255, 240, 239, 0.88) 0%, transparent 34%),
    linear-gradient(218deg, rgba(232, 251, 248, 0.9) 0%, transparent 36%),
    linear-gradient(180deg, #fffaf6 0%, #fff8f1 100%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(23, 21, 31, 0.035) 0 1px, transparent 1px 13px),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.62));
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.45), transparent 58%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1fr);
  gap: 54px;
  min-height: calc(100svh - 68px);
  align-items: center;
  padding-block: 78px 84px;
}

.hero-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.eyebrow,
.section-kicker,
.tiny-label {
  color: var(--coral-dark);
  font-size: 0.76rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(255, 90, 95, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 8px 12px;
}

.hero h1,
h2,
.legal-hero h1 {
  font-family: var(--display);
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 7.1rem;
  line-height: 0.86;
}

.hero-subtitle {
  max-width: 670px;
}

.hero p,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.mobile-flow-snapshot {
  display: none;
}

.microproof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.microproof span {
  border: 1px solid rgba(234, 223, 216, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  padding: 8px 11px;
}

.hero-stage {
  position: relative;
  min-height: 690px;
}

.phone-gallery {
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.phone-gallery:before {
  content: "";
  position: absolute;
  inset: 8% 4% 7%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 90, 95, 0.16), transparent 34%),
    radial-gradient(circle at 34% 68%, rgba(22, 184, 166, 0.15), transparent 34%),
    radial-gradient(circle at 70% 58%, rgba(138, 99, 255, 0.13), transparent 30%);
  filter: blur(8px);
  pointer-events: none;
}

.phone-shot {
  position: absolute;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 390 / 844;
  border: 8px solid #17151f;
  border-radius: 34px;
  background: #17151f;
  box-shadow:
    0 30px 72px rgba(23, 21, 31, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.24) inset;
}

.phone-shot img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  object-position: top center;
}

.phone-shot-main {
  z-index: 3;
  width: min(330px, 58%);
  transform: translate3d(0, 4px, 70px);
}

.phone-shot-left,
.phone-shot-right {
  width: min(245px, 42%);
  opacity: 0.96;
}

.phone-shot-left {
  left: 18px;
  bottom: 34px;
  transform: rotateZ(-6deg) translate3d(0, 0, 0);
}

.phone-shot-right {
  right: 18px;
  top: 52px;
  transform: rotateZ(6deg) translate3d(0, 0, 0);
}

.hero-lottie,
.final-lottie {
  position: absolute;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.hero-lottie {
  right: -26px;
  top: 2px;
  width: 138px;
  height: 138px;
  opacity: 0.9;
}

.final-lottie {
  right: 22px;
  top: 18px;
  width: 86px;
  height: 86px;
  opacity: 0.86;
}

.hero-lottie:empty,
.final-lottie:empty {
  border: 1px solid rgba(22, 184, 166, 0.22);
  border-radius: 50%;
  background: var(--mint);
}

.hero-lottie:empty:before,
.final-lottie:empty:before {
  content: "";
  width: 30%;
  height: 48%;
  border-right: 8px solid var(--teal);
  border-bottom: 8px solid var(--teal);
  rotate: 45deg;
  translate: 0 -8%;
}

.device-shell,
.feature-phone {
  width: min(390px, 100%);
  margin-inline: auto;
  border: 9px solid var(--ink);
  border-radius: 38px;
  background: var(--ink);
  box-shadow: var(--shadow-strong);
}

.device-shell {
  rotate: 3deg;
}

.device-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 1000;
  padding: 11px 18px 8px;
}

.device-screen {
  display: grid;
  gap: 12px;
  min-height: 600px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 240, 239, 0.74), transparent 44%),
    #fffaf6;
  padding: 18px;
}

.app-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.app-title-row h2 {
  margin: 5px 0 0;
  font-size: 2rem;
  line-height: 0.96;
}

.avatar-pair,
.avatar-row {
  display: inline-flex;
  align-items: center;
}

.avatar-pair b,
.avatar-row b {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 1000;
}

.avatar-pair b + b,
.avatar-row b + b {
  margin-left: -9px;
  background: var(--violet);
}

.glass-card,
.alignment-card {
  background: rgba(255, 255, 255, 0.88);
}

.alignment-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.alignment-card strong,
.alignment-card span {
  display: block;
}

.alignment-card strong {
  font-size: 1.1rem;
}

.alignment-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.ring {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 9px solid #ffd9d8;
  border-top-color: var(--coral);
  border-right-color: var(--teal);
  border-radius: 50%;
  color: var(--ink);
  font-weight: 1000;
}

.clause-line {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px;
}

.clause-line > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 1000;
}

.clause-line.danger > span {
  background: var(--coral);
}

.clause-line.safe > span {
  background: var(--teal);
}

.clause-line.warm > span {
  background: var(--yellow);
  color: var(--ink);
}

.clause-line strong,
.clause-line p {
  display: block;
  margin: 0;
}

.clause-line p {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.clause-line em {
  border-radius: 999px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 1000;
  padding: 6px 8px;
}

.clause-line.danger em {
  background: var(--pink);
  color: var(--coral-dark);
}

.mock-button {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral), #ff7c68);
  color: #fff;
  cursor: default;
  font-weight: 1000;
  box-shadow: 0 16px 32px rgba(255, 90, 95, 0.25);
}

.ambient-label {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(234, 223, 216, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(23, 21, 31, 0.1);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 1000;
  padding: 11px 14px;
}

.ambient-label.live {
  left: -12px;
  top: 74px;
}

.ambient-label.score {
  right: -2px;
  bottom: 92px;
  color: var(--coral-dark);
}

.pulse-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.pulse-dot:after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: rgba(22, 184, 166, 0.18);
}

.moment-strip {
  overflow: hidden;
  border-block: 1px solid rgba(234, 223, 216, 0.9);
  background: #fff;
}

.ticker {
  display: flex;
  width: max-content;
  min-width: 100%;
  will-change: transform;
  animation: ticker-marquee 28s linear infinite;
}

.ticker:hover {
  animation-play-state: paused;
}

.ticker-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  min-width: 100%;
  justify-content: center;
  padding: 13px 5px;
}

.ticker span {
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--pink);
  color: var(--coral-dark);
  font-size: 0.88rem;
  font-weight: 1000;
  padding: 9px 13px;
  white-space: nowrap;
}

.ticker span:nth-child(2n) {
  background: var(--mint);
  color: var(--teal-dark);
}

.ticker span:nth-child(3n) {
  background: var(--violet-soft);
  color: var(--violet);
}

@keyframes ticker-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.section {
  padding: 96px 0;
}

.section-paper {
  border-block: 1px solid var(--line);
  background: #fff;
}

.section-showcase {
  background:
    linear-gradient(180deg, #fff8f1, #fffaf6 46%, #fff8f1),
    #fff8f1;
}

.pain-section {
  background:
    linear-gradient(180deg, #fff8f1 0%, #fff 100%);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.pain-grid article {
  display: grid;
  min-height: 255px;
  align-content: start;
  gap: 12px;
  border: 1px solid rgba(234, 223, 216, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 240, 239, 0.5)),
    #fff;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(23, 21, 31, 0.045);
}

.pain-grid article:nth-child(2n) {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(232, 251, 248, 0.58)),
    #fff;
}

.pain-grid span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 1000;
}

.pain-grid h3 {
  font-size: 1.24rem;
}

.pain-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.pain-grid strong {
  margin-top: auto;
  color: var(--teal-dark);
  font-size: 0.94rem;
  line-height: 1.35;
}

.section-dark {
  background:
    linear-gradient(135deg, #17151f, #261f34),
    var(--ink);
  color: #fff;
}

.section-dark .lead,
.section-dark .section-kicker {
  color: rgba(255, 255, 255, 0.74);
}

.section-header {
  display: grid;
  gap: 12px;
  width: min(720px, 100%);
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

h2 {
  margin: 0;
  font-size: 4.55rem;
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.18;
}

.flow-layout,
.drama-layout,
.share-layout,
.date-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 68px;
  align-items: start;
}

.flow-board {
  display: grid;
  gap: 12px;
}

.guided-flow {
  position: relative;
}

.guided-flow:before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 24px;
  width: 2px;
  background: linear-gradient(var(--coral), var(--teal), var(--violet));
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(232, 251, 248, 0.56)),
    #fff;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(23, 21, 31, 0.05);
}

.step-number,
.icon-chip,
.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 1000;
}

.feature-icon {
  margin-bottom: 14px;
  background: var(--coral);
}

.feature-icon.teal {
  background: var(--teal);
}

.feature-icon.violet {
  background: var(--violet);
}

.feature-icon.yellow {
  background: var(--yellow);
  color: var(--ink);
}

.flow-step p,
.feature-tile p,
.trust-grid p,
.faq p,
.footer p,
.legal-card p,
.legal-card li,
.signal-card p,
.date-timeline p {
  color: var(--muted);
  line-height: 1.62;
}

.flow-step p,
.feature-tile p,
.trust-grid p,
.faq p,
.signal-card p,
.date-timeline p {
  margin: 7px 0 0;
}

.feature-orbit {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.72fr) 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 42px;
}

.feature-tile,
.trust-grid article,
.faq,
.legal-card,
.support-card,
.signal-card,
.date-timeline article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(23, 21, 31, 0.04);
}

.feature-tile {
  min-height: 210px;
  padding: 18px;
}

.feature-tile:nth-child(1),
.feature-tile:nth-child(4) {
  align-self: end;
}

.feature-phone {
  max-width: 360px;
  rotate: -2deg;
  grid-row: span 2;
}

.feature-app-shot {
  position: relative;
  width: min(330px, 100%);
  max-height: 620px;
  grid-row: span 2;
  rotate: -2deg;
}

.feature-app-shot img {
  aspect-ratio: 390 / 844;
}

.receipt-preview {
  display: grid;
  gap: 14px;
  min-height: 540px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 240, 239, 0.66), transparent 42%),
    #fffaf6;
  padding: 18px;
}

.receipt-preview h3 {
  font-size: 2rem;
}

.avatar-row {
  margin: 2px 0;
}

.avatar-row i {
  display: grid;
  width: 31px;
  height: 31px;
  margin-left: -7px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--coral);
}

.avatar-row i:before {
  content: "";
  width: 11px;
  height: 11px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  rotate: 45deg;
  translate: 0 -2px;
}

.receipt-preview dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.receipt-preview dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.receipt-preview dt,
.receipt-preview dd {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 900;
}

.receipt-preview dd {
  color: var(--muted);
  text-align: right;
}

.receipt-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(22, 184, 166, 0.22);
  border-radius: 8px;
  background: var(--mint);
  color: var(--teal-dark);
  padding: 12px;
  font-size: 0.9rem;
  font-weight: 1000;
}

.drama-lab {
  overflow: hidden;
}

.signal-stack {
  display: grid;
  gap: 14px;
}

.signal-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 22px;
}

.signal-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 90, 95, 0.2), transparent 36%, rgba(22, 184, 166, 0.18));
  opacity: 0.8;
  pointer-events: none;
}

.signal-card > * {
  position: relative;
}

.signal-card span {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 1000;
  padding: 7px 10px;
  text-transform: uppercase;
}

.signal-card strong {
  display: block;
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.04;
}

.signal-card p {
  color: rgba(255, 255, 255, 0.7);
}

.share-studio {
  background:
    linear-gradient(135deg, rgba(255, 240, 239, 0.9), rgba(255, 250, 246, 0.62) 45%, rgba(232, 251, 248, 0.78)),
    #fff8f1;
}

.share-cards {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(260px, 1fr);
  gap: 22px;
  align-items: center;
  justify-items: center;
}

.share-png-grid {
  align-items: end;
}

.share-png {
  position: relative;
  display: grid;
  width: 100%;
  margin: 0;
  gap: 10px;
}

.share-png img {
  width: 100%;
  height: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 90, 95, 0.16);
  border-radius: 8px;
  background: #fffaf8;
  box-shadow: 0 24px 58px rgba(23, 21, 31, 0.12);
  object-fit: contain;
  object-position: center;
}

.story-png {
  max-width: 290px;
}

.square-png {
  max-width: 380px;
}

.share-png-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--coral-dark);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  padding: 8px 10px;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(23, 21, 31, 0.08);
}

.share-png figcaption {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.4;
  text-align: center;
}

.date-section {
  background: #fff;
  border-block: 1px solid var(--line);
}

.date-timeline {
  display: grid;
  gap: 12px;
}

.date-timeline article {
  position: relative;
  padding: 20px;
}

.date-timeline article:before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(var(--coral), var(--teal));
}

.date-timeline span {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--coral-dark);
  font-size: 0.76rem;
  font-weight: 1000;
  padding: 7px 10px;
  text-transform: uppercase;
}

.trust-panel {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 58px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 240, 239, 0.78), rgba(232, 251, 248, 0.72)),
    #fff;
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.trust-grid article,
.faq,
.legal-card,
.support-card {
  padding: 18px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.cta-section {
  padding-top: 0;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 90, 95, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 240, 239, 0.88), rgba(241, 237, 255, 0.68)),
    #fff;
  padding: 38px;
  box-shadow: var(--shadow-soft);
}

.final-cta > div:not(.final-lottie),
.cta-actions {
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.footer {
  background:
    linear-gradient(135deg, #17151f, #231d2f),
    var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.footer a {
  color: inherit;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line-dark);
  padding-block: 34px;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
}

.footer-brand-logo {
  width: min(210px, 72vw);
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.18));
}

.footer-brand-icon {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 15px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.footer-brand-wordmark {
  width: min(158px, 46vw);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.footer-brand-link .brand-mark {
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.footer p {
  max-width: 460px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer-store {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  min-height: 58px;
  padding: 0 20px;
}

.footer-store small {
  color: rgba(23, 21, 31, 0.62);
}

.footer-store strong {
  color: var(--ink);
  font-size: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  padding-block: 30px;
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-column strong {
  color: #fff;
  font-size: 0.88rem;
}

.footer-column a {
  width: max-content;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line-dark);
  padding: 18px 18px 26px;
  font-size: 0.86rem;
}

.legal-page {
  background: #fff;
}

.legal-hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 90, 95, 0.08), transparent 34%),
    linear-gradient(220deg, rgba(22, 184, 166, 0.1), transparent 34%),
    var(--soft);
  padding: 86px 0;
}

.legal-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: 5rem;
  line-height: 0.96;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 36px;
  padding: 70px 18px;
}

.legal-toc {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 14px;
}

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

.legal-toc a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

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

.legal-content {
  display: grid;
  gap: 16px;
}

.legal-card h2,
.support-card h2 {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1.06;
}

.legal-card p,
.legal-card ul,
.legal-card ol {
  margin-block: 0 12px;
}

.legal-card ul,
.legal-card ol {
  display: grid;
  gap: 8px;
  padding-left: 1.25rem;
}

.legal-note {
  border: 1px solid rgba(22, 184, 166, 0.24);
  border-radius: 8px;
  background: var(--mint);
  color: var(--teal-dark);
  font-weight: 850;
  padding: 14px 16px;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 1.12fr);
  gap: 54px;
  align-items: start;
}

.support-card {
  display: grid;
  gap: 16px;
}

.support-form {
  display: grid;
  gap: 14px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0 14px;
  outline: none;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
  padding-block: 12px;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(22, 184, 166, 0.14);
}

.form-status {
  border: 1px solid rgba(22, 184, 166, 0.2);
  border-radius: 8px;
  background: var(--mint);
  color: var(--teal-dark);
  font-weight: 850;
  padding: 12px 14px;
}

.form-status.error {
  border-color: rgba(255, 90, 95, 0.24);
  background: var(--pink);
  color: var(--coral-dark);
}

.handoff-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 90, 95, 0.12), transparent 34rem),
    radial-gradient(circle at top right, rgba(22, 184, 166, 0.14), transparent 34rem),
    var(--soft);
}

.handoff-card {
  max-width: 860px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 26px 80px rgba(23, 21, 31, 0.1);
}

.handoff-hero {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 6vw, 46px);
  background:
    linear-gradient(135deg, rgba(255, 233, 218, 0.82), rgba(255, 255, 255, 0.86), rgba(232, 251, 248, 0.72));
}

.handoff-icon {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(255, 82, 94, 0.16);
}

.handoff-copy h1 {
  max-width: 680px;
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: clamp(2.4rem, 10vw, 5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.handoff-copy p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 3.5vw, 1.25rem);
  line-height: 1.58;
}

.handoff-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.code-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  border: 1px solid rgba(22, 184, 166, 0.28);
  border-radius: 999px;
  padding: 9px 12px;
  color: #075f58;
  background: rgba(232, 251, 248, 0.92);
  font-size: 0.9rem;
  font-weight: 800;
}

.code-pill code {
  overflow: hidden;
  max-width: min(46vw, 260px);
  color: inherit;
  font: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.handoff-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.handoff-button {
  min-height: 56px;
  justify-content: center;
  text-align: center;
}

.handoff-secondary {
  border-color: rgba(23, 21, 31, 0.12);
  color: var(--ink);
  background: #fff;
}

.handoff-note {
  border-top: 1px solid var(--line);
  padding: clamp(18px, 5vw, 30px) clamp(24px, 6vw, 46px);
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

.handoff-note.error {
  color: var(--coral-dark);
  background: rgba(255, 240, 239, 0.78);
}

.handoff-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.handoff-step {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.76);
}

.handoff-step strong {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
}

.handoff-step span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: grid;
  width: min(510px, calc(100% - 32px));
  gap: 12px;
  border: 1px solid rgba(234, 223, 216, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-strong);
  padding: 16px;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.2rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-actions button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  padding: 0 13px;
}

.cookie-actions button.primary {
  border-color: var(--coral);
  background: var(--coral);
  color: #fff;
}

.cookie-options {
  display: none;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.cookie-options.is-open {
  display: grid;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 850;
}

.cookie-option input {
  width: 20px;
  height: 20px;
  accent-color: var(--coral);
}

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

@media (max-width: 1080px) {
  .hero h1 {
    font-size: 5.6rem;
  }

  h2,
  .legal-hero h1 {
    font-size: 3.7rem;
  }

  .hero-layout,
  .flow-layout,
  .drama-layout,
  .share-layout,
  .date-layout,
  .trust-panel,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    min-height: auto;
    gap: 46px;
    padding-block: 54px 72px;
  }

  .hero-stage {
    min-height: auto;
  }

  .phone-gallery {
    min-height: 570px;
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .phone-shot-main {
    width: min(310px, 54%);
  }

  .phone-shot-left,
  .phone-shot-right {
    width: min(220px, 39%);
  }

  .device-shell {
    rotate: 0deg;
  }

  .ambient-label {
    position: static;
    width: max-content;
    margin: 0 auto 10px;
  }

  .ambient-label.score {
    display: none;
  }

  .feature-orbit {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-phone,
  .feature-app-shot {
    grid-row: auto;
    grid-column: 1 / -1;
    order: -1;
  }

  .pain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .share-cards,
  .trust-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .story-png,
  .square-png {
    max-width: min(100%, 430px);
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }
}

@media (max-width: 720px) {
  .shell {
    padding-inline: 14px;
  }

  .hero-copy,
  .hero-layout,
  .hero-subtitle,
  .mobile-flow-snapshot,
  .hero-actions,
  .cta-actions {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .topbar-inner {
    min-height: 62px;
  }

  .nav-links {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-logo {
    width: 150px;
  }

  .footer-brand-logo {
    width: min(190px, 72vw);
  }

  .footer-brand-link {
    gap: 12px;
  }

  .footer-brand-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .footer-brand-wordmark {
    width: min(148px, 52vw);
  }

  .store-button-small {
    min-height: 40px;
    padding: 0 11px;
  }

  .store-button-small span:last-child {
    display: none;
  }

  .play-icon {
    width: 24px;
    height: 24px;
  }

  .section {
    padding: 64px 0;
  }

  .hero-layout {
    gap: 26px;
    padding-block: 36px 52px;
  }

  .hero h1 {
    max-width: 10.5ch;
    font-size: 3.05rem;
    line-height: 0.94;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  h2,
  .legal-hero h1 {
    font-size: 2.42rem;
    line-height: 1;
  }

  .hero p,
  .lead {
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .mobile-flow-snapshot {
    display: grid;
    gap: 9px;
    border: 1px solid rgba(255, 90, 95, 0.18);
    border-radius: 8px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 248, 0.74)),
      #fff;
    box-shadow: 0 16px 42px rgba(23, 21, 31, 0.1);
    padding: 13px;
  }

  .mobile-flow-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-weight: 1000;
  }

  .mobile-flow-head span {
    border-radius: 999px;
    background: var(--mint);
    color: var(--teal-dark);
    font-size: 0.76rem;
    font-weight: 1000;
    padding: 6px 9px;
  }

  .mobile-flow-progress {
    height: 9px;
    overflow: hidden;
    border-radius: 999px;
    background: #f3ebe5;
  }

  .mobile-flow-progress span {
    display: block;
    width: 57%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--coral), var(--teal));
  }

  .mobile-flow-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 10px;
    border-top: 1px solid var(--line);
    padding-top: 9px;
  }

  .mobile-flow-row b {
    font-size: 0.95rem;
  }

  .mobile-flow-row em {
    border-radius: 999px;
    background: var(--pink);
    color: var(--coral-dark);
    font-size: 0.68rem;
    font-style: normal;
    font-weight: 1000;
    padding: 5px 8px;
  }

  .mobile-flow-row:nth-of-type(4) em {
    background: var(--mint);
    color: var(--teal-dark);
  }

  .mobile-flow-row p {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    width: 100%;
  }

  .store-button-hero,
  .button-secondary {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .store-button-hero span:not(.play-icon),
  .footer-store span:not(.play-icon) {
    min-width: 0;
  }

  .handoff-card {
    border-radius: 24px;
  }

  .handoff-actions,
  .handoff-steps {
    grid-template-columns: 1fr;
  }

  .code-pill code {
    max-width: 54vw;
  }

  .microproof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .microproof span {
    width: max-content;
    max-width: 100%;
  }

  .phone-gallery {
    display: grid;
    min-height: 420px;
    margin-top: 6px;
  }

  .phone-gallery:before {
    inset: 10% 0 12%;
    filter: blur(5px);
  }

  .phone-shot {
    border-width: 6px;
    border-radius: 28px;
  }

  .phone-shot img {
    border-radius: 20px;
  }

  .phone-shot-main {
    width: min(54vw, 210px);
    transform: translate3d(0, 0, 40px);
  }

  .phone-shot-left {
    left: 2px;
    bottom: 24px;
    width: min(38vw, 150px);
  }

  .phone-shot-right {
    right: 2px;
    top: 28px;
    width: min(38vw, 150px);
  }

  .ambient-label.live {
    position: absolute;
    left: 50%;
    top: 0;
    translate: -50% 0;
    margin: 0;
  }

  .ticker {
    animation-duration: 21s;
  }

  .ticker-group {
    justify-content: flex-start;
    padding-block: 10px;
  }

  .ticker span {
    font-size: 0.78rem;
    padding: 8px 10px;
  }

  .feature-orbit {
    grid-template-columns: 1fr;
  }

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

  .pain-grid article {
    min-height: 0;
  }

  .device-shell,
  .feature-phone {
    border-width: 7px;
    border-radius: 32px;
  }

  .device-screen,
  .receipt-preview {
    min-height: auto;
    border-radius: 24px;
    padding: 14px;
  }

  .app-title-row h2,
  .receipt-preview h3,
  .signal-card strong {
    font-size: 1.65rem;
  }

  .clause-line {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .clause-line em {
    grid-column: 2;
    width: max-content;
  }

  .guided-flow:before {
    left: 22px;
  }

  .flow-step {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 15px;
  }

  .feature-tile,
  .trust-grid article,
  .faq,
  .legal-card,
  .support-card,
  .signal-card,
  .date-timeline article {
    padding: 16px;
  }

  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    display: grid;
  }

  .footer-store {
    width: 100%;
  }

  .footer-bottom {
    padding-inline: 14px;
  }

  .legal-hero {
    padding: 56px 0;
  }

  .legal-layout {
    padding-block: 42px;
  }

  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
    width: auto;
    max-width: none;
    overflow: hidden;
    gap: 8px;
    padding: 11px;
  }

  .cookie-banner h2 {
    font-size: 0.98rem;
  }

  .cookie-banner p {
    font-size: 0.81rem;
    line-height: 1.34;
    overflow-wrap: break-word;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .cookie-actions button {
    width: 100%;
    min-height: 38px;
    padding: 0 8px;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .cookie-actions button[data-cookie="all"],
  .cookie-actions button[data-cookie="save"] {
    grid-column: auto;
  }
}

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

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

  .js .reveal,
  .js .motion-item,
  .js .motion-title {
    opacity: 1;
  }
}
