:root {
  --bg-top: #f2f7ff;
  --bg-bottom: #e7efff;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --line: rgba(21, 56, 109, 0.15);
  --line-strong: rgba(21, 56, 109, 0.28);

  --text: #0f284f;
  --text-muted: rgba(15, 40, 79, 0.74);

  --brand: #1f4f9e;
  --brand-strong: #173f85;
  --brand-soft: #d9e9ff;

  --accent: #9ed1ff;
  --accent-soft: #eaf4ff;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;

  --shadow-soft: 0 24px 48px rgba(10, 31, 66, 0.12);
  --shadow-strong: 0 32px 72px rgba(8, 28, 61, 0.24);

  --container: min(1160px, calc(100vw - 2.4rem));
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.5;
  background:
    radial-gradient(circle at 8% 12%, rgba(158, 209, 255, 0.26), transparent 30%),
    radial-gradient(circle at 86% 16%, rgba(31, 79, 158, 0.22), transparent 36%),
    radial-gradient(circle at 50% 98%, rgba(44, 111, 194, 0.18), transparent 40%),
    linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  line-height: 1.07;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  max-width: 18ch;
}

h3 {
  font-size: clamp(1.25rem, 2.1vw, 1.6rem);
}

p {
  margin: 0;
}

main {
  overflow: hidden;
}

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

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

[hidden] {
  display: none !important;
}

.eyebrow {
  margin-bottom: 0.7rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--brand-strong);
}

.lead {
  margin-top: 1rem;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  color: var(--text-muted);
  max-width: 54ch;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  min-height: 2.9rem;
  padding: 0.62rem 1.1rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease,
    background-color 180ms ease, color 180ms ease;
}

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

.button:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 14px 28px rgba(23, 63, 133, 0.34);
}

.button-primary:hover {
  box-shadow: 0 16px 34px rgba(18, 58, 125, 0.4);
}

.button-secondary {
  color: var(--brand-strong);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line-strong);
}

.button-secondary:hover {
  border-color: var(--brand);
}

.button-ghost {
  color: var(--text);
  border-color: var(--line);
  background: var(--surface-strong);
}

.button-ghost:hover {
  border-color: var(--line-strong);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: 0.52rem;
  backdrop-filter: blur(11px);
  transition: border-color 160ms ease, background-color 160ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(242, 247, 255, 0.82);
}

.header-shell {
  min-height: 4.35rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  margin-right: auto;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 14px rgba(31, 79, 158, 0.28);
}

.brand-text {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.3rem;
  font-size: 0.93rem;
}

.site-nav a {
  color: var(--text-muted);
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 1px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

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

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.menu-bar {
  position: absolute;
  left: 50%;
  width: 1.15rem;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-bar:nth-child(1) {
  top: 0.82rem;
}

.menu-bar:nth-child(2) {
  top: 1.29rem;
}

.menu-bar:nth-child(3) {
  top: 1.76rem;
}

.menu-toggle.is-open .menu-bar:nth-child(1) {
  transform: translateX(-50%) translateY(7px) rotate(45deg);
}

.menu-toggle.is-open .menu-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-bar:nth-child(3) {
  transform: translateX(-50%) translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  width: var(--container);
  margin: 0 auto 0.6rem;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  border-radius: var(--radius-md);
  padding: 0.6rem;
}

.mobile-nav.is-open {
  display: grid !important;
  gap: 0.3rem;
}

.mobile-nav a {
  border-radius: 10px;
  padding: 0.6rem 0.72rem;
  font-size: 0.93rem;
  color: var(--text-muted);
}

.mobile-nav a:hover {
  color: var(--text);
  background: rgba(31, 79, 158, 0.09);
}

.mobile-nav .button {
  margin-top: 0.4rem;
}

.hero {
  min-height: calc(100dvh - 4.87rem);
  padding: clamp(2.2rem, 5vw, 5.1rem) 0 clamp(2.4rem, 4.7vw, 4.8rem);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(1.6rem, 4vw, 4.4rem);
}

.hero-actions-row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.hero-points {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.52rem;
  font-size: 0.91rem;
  color: var(--text-muted);
}

.hero-points li {
  position: relative;
  padding-left: 1.1rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 0.52rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.hero-demo {
  display: grid;
  place-items: center;
}

.app-frame {
  width: min(382px, 92vw);
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(155deg, #070d1a, #10203a 56%, #173556);
  box-shadow: 0 34px 72px rgba(5, 11, 22, 0.46);
  padding: 1.2rem 1.1rem 1.05rem;
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.94);
}

.app-bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(26px);
  pointer-events: none;
}

.app-bg-glow-a {
  width: 190px;
  height: 190px;
  left: -76px;
  top: -56px;
  background: rgba(112, 210, 255, 0.2);
}

.app-bg-glow-b {
  width: 210px;
  height: 210px;
  right: -82px;
  bottom: -88px;
  background: rgba(170, 190, 255, 0.18);
}

.app-brand {
  text-align: center;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.orb-stage {
  width: min(76vw, 258px);
  margin: 1.15rem auto 0.9rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
  transition: transform 200ms linear;
}

.ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ring-base,
.ring-track,
.ring-progress,
.ring-marker-outline {
  fill: none;
  stroke-linecap: round;
}

.ring-marker {
  stroke: none;
}

.orb-core {
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: scale(0.53);
  background: radial-gradient(circle at 32% 30%, var(--orb-inner, #f2fcff), var(--orb-outer, #bbdfff));
  box-shadow:
    0 0 26px rgba(135, 199, 255, 0.44),
    0 20px 30px rgba(9, 24, 43, 0.34);
  transition: transform 210ms linear, background 240ms ease, box-shadow 240ms ease;
}

.cycle-ripple {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ripple {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  transform: translate(-50%, -50%) scale(0.42);
  opacity: 0;
}

.cycle-ripple.is-active .ripple-a {
  animation: ripple-out 1s cubic-bezier(0.2, 0.86, 0.28, 1);
}

.cycle-ripple.is-active .ripple-b {
  animation: ripple-out 1s cubic-bezier(0.2, 0.86, 0.28, 1) 170ms;
}

.phase-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.52rem 0.64rem;
}

.phase-symbol {
  font-size: 1rem;
  color: var(--phase-accent, #9ed1ff);
}

.phase-title {
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

.phase-step {
  width: 100%;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: -0.1rem;
  text-align: center;
}

.app-progress {
  margin: 0.75rem auto 0;
  height: 6px;
  width: min(86%, 248px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.app-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #dbe9ff, #9dc4ff);
  transition: width 180ms linear;
}

.app-controls {
  margin-top: 0.86rem;
  border-radius: 16px;
  padding: 0.68rem;
  background: linear-gradient(180deg, rgba(7, 21, 37, 0.84), rgba(6, 16, 28, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.17);
}

.start-pill {
  border-radius: 10px;
  padding: 0.56rem 0.64rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #15243a;
  text-align: center;
  background: linear-gradient(135deg, #cce9ff, #9ecfff);
}

.goal-row {
  margin-top: 0.58rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.48rem;
}

.goal {
  text-align: center;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.32rem 0;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.08);
}

.goal.is-active {
  color: #122138;
  background: #c8e7ff;
}

.pattern-pill {
  margin-top: 0.58rem;
  border-radius: 10px;
  font-size: 0.81rem;
  padding: 0.55rem 0.6rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(11, 31, 52, 0.8);
}

.demo-note {
  margin-top: 0.8rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  text-align: center;
}

.signal-band {
  padding: 0.4rem 0 0.9rem;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.signal-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(23, 63, 133, 0.28);
  background: linear-gradient(130deg, rgba(23, 63, 133, 0.95), rgba(31, 79, 158, 0.86));
  color: #fff;
  padding: 1rem;
}

.signal-value {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.22rem;
}

.signal-label {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.83);
}

.section {
  margin-top: 1.25rem;
  padding: clamp(1.4rem, 3.2vw, 2.4rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.section-header {
  margin-bottom: 1.1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.feature-card {
  border: 1px solid rgba(21, 56, 109, 0.12);
  background: rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-md);
  padding: 1rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 79, 158, 0.35);
  box-shadow: 0 16px 30px rgba(17, 52, 112, 0.15);
}

.feature-index {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  color: var(--brand-strong);
  margin-bottom: 0.62rem;
  font-weight: 700;
}

.feature-card p:last-child {
  margin-top: 0.58rem;
  color: var(--text-muted);
  font-size: 0.93rem;
}

.how-section {
  background:
    radial-gradient(circle at 90% 14%, rgba(158, 209, 255, 0.18), transparent 28%),
    var(--surface);
}

.how-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0.9rem;
  align-items: start;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.steps li {
  position: relative;
  padding: 1rem 1rem 1rem 3.4rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(21, 56, 109, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.steps li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 1.78rem;
  height: 1.78rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-strong);
  background: var(--brand-soft);
}

.steps {
  counter-reset: step;
}

.steps h3 {
  font-size: clamp(1.12rem, 1.9vw, 1.38rem);
}

.steps p {
  margin-top: 0.5rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.how-panel {
  border-radius: var(--radius-md);
  border: 1px solid rgba(21, 56, 109, 0.11);
  background: rgba(255, 255, 255, 0.8);
  padding: 1.1rem;
}

.panel-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-strong);
}

.moment-list {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.moment-list li {
  border-radius: 10px;
  background: rgba(31, 79, 158, 0.09);
  border: 1px solid rgba(31, 79, 158, 0.15);
  padding: 0.56rem 0.68rem;
  font-size: 0.9rem;
}

.panel-divider {
  height: 1px;
  background: rgba(21, 56, 109, 0.14);
  margin: 0.9rem 0 0.72rem;
}

.panel-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.pattern-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.pattern-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(21, 56, 109, 0.12);
  background: rgba(255, 255, 255, 0.78);
  padding: 1rem;
}

.pattern-card p {
  margin-top: 0.56rem;
  font-size: 0.93rem;
  color: var(--text-muted);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.story-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(21, 56, 109, 0.12);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(158, 209, 255, 0.18)),
    rgba(255, 255, 255, 0.72);
  padding: 1.05rem;
}

.quote {
  font-size: 1rem;
  line-height: 1.6;
}

.author {
  margin-top: 0.82rem;
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-strong);
}

.faq-list {
  display: grid;
  gap: 0.62rem;
}

details {
  border-radius: 14px;
  border: 1px solid rgba(21, 56, 109, 0.14);
  background: rgba(255, 255, 255, 0.78);
  padding: 0.8rem 0.9rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

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

details p {
  margin-top: 0.62rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

details[open] {
  border-color: rgba(31, 79, 158, 0.35);
}

.download-section {
  padding: 1.25rem 0 0.9rem;
}

.download-shell {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 50, 95, 0.35);
  background:
    radial-gradient(circle at 10% 18%, rgba(158, 209, 255, 0.26), transparent 34%),
    linear-gradient(155deg, #0b2347, #12376e 54%, #0b2347);
  color: #fff;
  padding: clamp(1.35rem, 3.7vw, 2.2rem);
  box-shadow: var(--shadow-strong);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0.95rem;
  align-items: start;
}

.download-shell .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.download-shell .lead {
  color: rgba(255, 255, 255, 0.78);
}

.download-shell .button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.store-card {
  margin: 0;
  padding: 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.88);
}

.store-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

.store-points {
  margin: 0.78rem 0 0;
  padding-left: 1.1rem;
}

.store-points li + li {
  margin-top: 0.6rem;
}

code {
  font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.87em;
  background: rgba(21, 56, 109, 0.15);
  border-radius: 6px;
  padding: 0.08rem 0.3rem;
}

.site-footer {
  padding: 0.8rem 0 1.6rem;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.18rem;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.86rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 540ms ease, transform 540ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes ripple-out {
  0% {
    opacity: 0.74;
    transform: translate(-50%, -50%) scale(0.44);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.78);
  }
}

@media (max-width: 1080px) {
  .feature-grid,
  .pattern-grid,
  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-copy {
    max-width: 62ch;
  }

  .hero-demo {
    justify-content: start;
  }
}

@media (max-width: 900px) {
  .site-nav,
  .header-actions .button-secondary {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .header-shell {
    min-height: 4rem;
  }

  .signal-grid,
  .how-grid,
  .download-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .hero-copy .eyebrow {
    text-align: center;
    margin-bottom: 0.28rem;
  }

  .hero-copy h1 {
    text-align: center;
    margin-inline: auto;
    max-width: 14ch;
  }

  .hero-copy .lead {
    margin-top: 0.52rem;
  }

  .hero-copy .hero-actions-row {
    margin-top: 0.9rem;
  }

  .hero-copy .hero-points {
    margin-top: 0.82rem;
  }

  .feature-grid,
  .pattern-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .section {
    margin-top: 1rem;
    padding: 1.25rem;
    border-radius: 24px;
  }

  .hero {
    padding-top: 1.5rem;
    padding-bottom: 1.9rem;
  }

  .app-frame {
    border-radius: 30px;
    padding: 1.1rem;
  }

  .orb-stage {
    width: min(84vw, 220px);
  }

  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  :root {
    --container: min(1160px, calc(100vw - 1.15rem));
  }

  .hero-actions-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions-row .button {
    width: 100%;
  }

  .steps li {
    padding: 0.9rem 0.9rem 0.9rem 3.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

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