:root {
  --bg: #f7f3ff;
  --bg-soft: #fcfaff;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --surface-tint: #f2ebff;
  --text: #1f1633;
  --muted: #665d79;
  --line: rgba(111, 76, 170, 0.12);
  --primary: #6f4caa;
  --primary-strong: #5a3792;
  --primary-soft: #eadfff;
  --accent: #9a7ef0;
  --shadow: 0 24px 60px rgba(88, 56, 145, 0.12);
  --shadow-soft: 0 18px 35px rgba(88, 56, 145, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1120px;
}

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

html {
  width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  overflow-x: clip;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(167, 127, 255, 0.22), transparent 34%),
    radial-gradient(circle at right 20%, rgba(128, 90, 213, 0.12), transparent 28%),
    linear-gradient(180deg, #fbf9ff 0%, var(--bg) 46%, #ffffff 100%);
}

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

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

.page-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

main[id],
section[id] {
  scroll-margin-top: 6.5rem;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(20px);
}

.page-shell::before {
  top: 6rem;
  right: -5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(154, 126, 240, 0.16);
}

.page-shell::after {
  top: 36rem;
  left: -7rem;
  width: 16rem;
  height: 16rem;
  background: rgba(111, 76, 170, 0.1);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section-compact {
  padding-top: 1.75rem;
}

.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 1rem 0;
  background: rgba(251, 249, 255, 0);
  border-bottom: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease,
    -webkit-backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 249, 255, 0.72);
  border-bottom-color: rgba(111, 76, 170, 0.08);
  box-shadow: 0 10px 28px rgba(88, 56, 145, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-inner,
.footer-inner,
.hero-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(88, 56, 145, 0.16);
}

.brand-text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.header-nav a,
.footer-links a {
  color: var(--muted);
  transition: color 180ms ease;
}

.header-nav a:hover,
.footer-links a:hover {
  color: var(--primary);
}

.header-store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.25rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  color: #ffffff;
  background: linear-gradient(135deg, #6f4caa 0%, #8f6bdd 100%);
  box-shadow: 0 10px 18px rgba(88, 56, 145, 0.18);
}

.header-store img {
  width: 0.88rem;
  height: 0.88rem;
  object-fit: contain;
}

.header-store-android {
  position: relative;
  min-height: 2.25rem;
  height: 2.25rem;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}

.header-nav a.header-store-android,
.header-nav a.header-store-android:hover {
  color: #ffffff;
}

.header-store-android .button-svg__label {
  gap: 0.45rem;
  padding-inline: 0.85rem;
  font-size: 0.78rem;
}

.header-store-android .button-icon {
  width: 0.88rem;
  height: 0.88rem;
}

.header-store-android .button-svg__border rect {
  stroke-width: 1.55;
}

.header-store-ios {
  position: relative;
  min-height: 2.25rem;
  height: 2.25rem;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  color: var(--primary-strong);
  background: linear-gradient(135deg, #f1ebff 0%, #ffffff 100%);
  border-color: rgba(111, 76, 170, 0.18);
  box-shadow: var(--shadow-soft);
}

.header-store-ios .button-svg__label {
  gap: 0.45rem;
  padding-inline: 0.85rem;
  font-size: 0.78rem;
  color: var(--primary-strong);
}

.header-store-ios .button-icon {
  width: 0.88rem;
  height: 0.88rem;
}

.header-store-ios .button-svg__circle {
  background:
    radial-gradient(circle at 24% 32%, rgba(255, 255, 255, 0.78), transparent 44%),
    linear-gradient(135deg, #ffffff 0%, #f4efff 100%);
}

.header-store-ios .button-svg__border rect {
  stroke: var(--primary);
  stroke-width: 1.55;
}

.hero {
  padding-top: 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: start;
  gap: 3rem;
}

.hero-copy,
.hero-visual,
.benefit-card,
.info-card {
  animation: fade-up 700ms ease both;
}

.hero-copy {
  animation-delay: 80ms;
}

.hero-visual {
  animation-delay: 180ms;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(111, 76, 170, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-soft);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.hero-subtitle,
.hero-note,
.section-heading p,
.benefit-card p,
.info-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-subtitle {
  max-width: 60ch;
  margin-top: 1.3rem;
  font-size: 1.1rem;
}

.hero-subtitle strong,
.hero-subtitle b {
  color: var(--text);
  font-weight: 700;
}

.hero-note {
  max-width: 56ch;
  margin-top: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-actions .button-android,
.hero-actions .button-ios {
  width: min(100%, 15rem);
  flex: 0 1 15rem;
}

.hero-actions .button-svg__label {
  gap: 0.6rem;
  padding-inline: 1.05rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.4rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition:
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.button:disabled {
  opacity: 1;
  cursor: default;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  box-shadow: 0 18px 30px rgba(111, 76, 170, 0.28);
}

.button-primary:hover {
  box-shadow: 0 22px 36px rgba(111, 76, 170, 0.34);
}

.button-secondary {
  border: 1px solid rgba(111, 76, 170, 0.14);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.button-large {
  padding-inline: 1.6rem;
}

.button-store {
  gap: 0.75rem;
  padding-inline: 1.2rem 1.5rem;
}

.button-android {
  position: relative;
  width: min(100%, 18.75rem);
  min-height: 0;
  height: auto;
  aspect-ratio: 75 / 14;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  border: 0;
  background: linear-gradient(135deg, #4e2f86 0%, #7a56c6 100%);
}

.button-android.button-primary:hover {
  box-shadow: 0 18px 30px rgba(111, 76, 170, 0.28);
}

.button-svg__label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  height: 100%;
  padding-inline: 1.35rem;
  color: #ffffff;
  transition: color 0.45s ease-in-out;
}

.button-svg__circle {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 22% 30%, rgba(255, 255, 255, 0.24), transparent 46%),
    linear-gradient(135deg, #6f4caa 0%, #9a7ef0 100%);
  transform: scale(1.08);
  transform-origin: 50% 50%;
  transition:
    transform 0.5s ease-in-out,
    opacity 0.5s ease-in-out;
}

.button-svg__border {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.button-svg__border rect {
  fill: none;
  stroke: rgba(255, 255, 255, 0.95);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 0 100;
  stroke-dashoffset: 25;
  stroke-opacity: 0;
  transition:
    stroke-dasharray 0.55s ease-in-out 0.14s,
    stroke-dashoffset 0.55s ease-in-out 0.14s,
    stroke-opacity 0.18s ease-in-out;
}

.button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.3rem;
  height: 1.3rem;
  flex: 0 0 auto;
}

.button-icon img,
.button-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.button-text {
  white-space: nowrap;
  line-height: 1;
}

@media (hover: hover) {
  .button-android:hover .button-svg__circle,
  .button-ios:hover .button-svg__circle,
  .header-store-android:hover .button-svg__circle,
  .header-store-ios:hover .button-svg__circle {
    opacity: 0;
    transform: scale(0);
  }

  .button-android:hover .button-svg__border rect,
  .button-ios:hover .button-svg__border rect,
  .header-store-android:hover .button-svg__border rect,
  .header-store-ios:hover .button-svg__border rect {
    stroke-dasharray: 100 0;
    stroke-dashoffset: 0;
    stroke-opacity: 1;
  }
}

.button-ios {
  position: relative;
  width: min(100%, 18.75rem);
  min-height: 0;
  height: auto;
  aspect-ratio: 75 / 14;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(111, 76, 170, 0.18);
  color: var(--primary-strong);
  background: linear-gradient(135deg, #efe7ff 0%, #ffffff 100%);
}

.button-ios .button-svg__label {
  color: var(--primary-strong);
}

.button-ios .button-svg__circle {
  background:
    radial-gradient(circle at 24% 32%, rgba(255, 255, 255, 0.82), transparent 44%),
    linear-gradient(135deg, #ffffff 0%, #f3edff 100%);
}

.button-ios .button-svg__border rect {
  stroke: var(--primary);
}

.button-ios:hover {
  box-shadow: 0 18px 30px rgba(88, 56, 145, 0.12);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
}

.phone-mockup {
  position: relative;
  width: min(100%, 370px);
  padding: 0.75rem;
  border-radius: 44px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.34));
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  animation: float 4.8s ease-in-out infinite;
}

.phone-mockup::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 34px;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.22), transparent 38%);
  pointer-events: none;
}

.phone-frame {
  position: relative;
  padding: 0.5rem;
  border-radius: 38px;
  background: linear-gradient(180deg, #0f091d 0%, #24113d 55%, #161022 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 32px rgba(20, 10, 36, 0.22);
}

.phone-screen {
  overflow: hidden;
  border-radius: 32px;
  background: #120424;
}

.phone-shot {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1320 / 2868;
}

.info-card {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.floating-chip {
  position: absolute;
  z-index: 2;
  padding: 0.8rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(111, 76, 170, 0.12);
  box-shadow: var(--shadow-soft);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.chip-release {
  top: 12%;
  left: 2%;
  animation: drift 5s ease-in-out infinite;
}

.chip-concert {
  right: 0;
  bottom: 15%;
  animation: drift 5.4s ease-in-out infinite reverse;
}

.section-heading {
  max-width: 650px;
}

.benefits .section-heading {
  max-width: none;
}

.section-heading h2 {
  margin-top: 0.6rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
}

.benefit-card {
  --benefit-start: #63dec8;
  --benefit-middle: #5dc4d7;
  --benefit-end: #6fa6eb;
  --benefit-glow: rgba(255, 255, 255, 0.18);
  --orb-one-top: -15%;
  --orb-one-right: -10%;
  --orb-one-size: 70%;
  --orb-two-right: -10%;
  --orb-two-bottom: -18%;
  --orb-two-size: 45%;
  --orb-three-left: -8%;
  --orb-three-bottom: -16%;
  --orb-three-size: 54%;
  position: relative;
  isolation: isolate;
  min-height: 16.8rem;
  padding: 0;
  overflow: hidden;
  border-radius: 2.25rem;
  background: linear-gradient(135deg, var(--benefit-start) 0%, var(--benefit-middle) 48%, var(--benefit-end) 100%);
  box-shadow: 0 24px 48px rgba(49, 28, 111, 0.16);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.benefit-card:nth-child(2) {
  --benefit-start: #73d9cf;
  --benefit-middle: #67bfdd;
  --benefit-end: #719eed;
  --orb-one-top: -50%;
  --orb-one-right: 12%;
  --orb-one-size: 64%;
  --orb-two-right: 12%;
  --orb-two-bottom: -12%;
  --orb-two-size: 35%;
  --orb-three-left: -4%;
  --orb-three-bottom: -24%;
  --orb-three-size: 61%;
}

.benefit-card:nth-child(3) {
  --benefit-start: #67ddc8;
  --benefit-middle: #59c9d8;
  --benefit-end: #5d95ef;
  --orb-one-top: -30%;
  --orb-one-right: 4%;
  --orb-one-size: 56%;
  --orb-two-right: -4%;
  --orb-two-bottom: -20%;
  --orb-two-size: 47%;
  --orb-three-left: -14%;
  --orb-three-bottom: -6%;
  --orb-three-size: 54%;
}

.benefit-card:nth-child(4) {
  --benefit-start: #74d8d2;
  --benefit-middle: #69b9e1;
  --benefit-end: #7e97ef;
  --orb-one-top: -18%;
  --orb-one-right: 70%;
  --orb-one-size: 42%;
  --orb-two-right: -20%;
  --orb-two-bottom: -26%;
  --orb-two-size: 65%;
  --orb-three-left: -10%;
  --orb-three-bottom: -12%;
  --orb-three-size: 38%;
}

.benefit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 45%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 56px rgba(49, 28, 111, 0.2);
}

.benefit-card__orb {
  position: absolute;
  border-radius: 999px;
  background: var(--benefit-glow);
  pointer-events: none;
  mix-blend-mode: screen;
}

.benefit-card__orb--one {
  top: var(--orb-one-top);
  right: var(--orb-one-right);
  width: var(--orb-one-size);
  aspect-ratio: 1;
  animation: benefit-orb-one 10s ease-in-out infinite;
}

.benefit-card__orb--two {
  right: var(--orb-two-right);
  bottom: var(--orb-two-bottom);
  width: var(--orb-two-size);
  aspect-ratio: 1;
  animation: benefit-orb-two 11s ease-in-out infinite;
}

.benefit-card__orb--three {
  left: var(--orb-three-left);
  bottom: var(--orb-three-bottom);
  width: var(--orb-three-size);
  aspect-ratio: 1;
  animation: benefit-orb-three 9.2s ease-in-out infinite;
}

.benefit-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 16.8rem;
  padding: 2rem 1.8rem;
}

.benefit-card h3 {
  max-width: 13ch;
  color: #ffffff;
  font-size: clamp(1.7rem, 1.2rem + 1vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.benefit-card p {
  max-width: 24ch;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.5;
}

.benefits {
  margin-top: -1rem;
  padding-top: 0;
}

.legal-main {
  min-height: calc(100vh - 10rem);
}

.legal-section {
  padding-top: 5.5rem;
}

.legal-layout {
  display: grid;
  gap: 1.5rem;
  max-width: 780px;
}

.legal-intro {
  animation: fade-up 700ms ease both;
}

.legal-card {
  animation: fade-up 700ms ease both;
  animation-delay: 120ms;
}

.legal-content {
  display: grid;
  gap: 1.5rem;
}

.legal-meta {
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.legal-item + .legal-item {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(111, 76, 170, 0.1);
}

.legal-item h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.45rem);
  line-height: 1.15;
}

.legal-card p + p {
  margin-top: 1rem;
}

.legal-item p + p,
.legal-item p + ul,
.legal-item ul + p {
  margin-top: 0.85rem;
}

.legal-list {
  margin: 0.85rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

.legal-list li + li {
  margin-top: 0.45rem;
}

.info-card {
  padding: 1.75rem;
  border-radius: var(--radius-md);
}

.info-card h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.55rem, 2vw, 1.9rem);
}

.info-card a {
  color: var(--primary);
  font-weight: 700;
}

.site-footer {
  padding: 2rem 0 2.4rem;
}

.footer-inner {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(111, 76, 170, 0.08);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

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

@keyframes benefit-orb-one {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-10px, 8px, 0) scale(1.05);
  }
}

@keyframes benefit-orb-two {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(8px, -10px, 0) scale(0.96);
  }
}

@keyframes benefit-orb-three {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(10px, -6px, 0) scale(1.08);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-visual {
    min-height: 0;
    padding-top: 1rem;
  }

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

@media (max-width: 640px) {
  .section {
    padding: 3.5rem 0;
  }

  .legal-section {
    padding-top: 4rem;
  }

  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-nav {
    display: none;
  }

  .header-store {
    flex: 1 1 auto;
    justify-content: center;
  }

  .header-contact {
    display: none;
  }

  .brand-logo {
    width: 2.5rem;
    height: 2.5rem;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-actions {
    justify-content: center;
    gap: 0.75rem;
  }

  h1 {
    max-width: none;
  }

  .phone-mockup {
    width: min(100%, 330px);
  }

  .phone-frame {
    border-radius: 34px;
  }

  .floating-chip {
    transform: scale(0.94);
  }

  .chip-release {
    left: -0.4rem;
  }

  .chip-concert {
    right: -0.5rem;
    bottom: 12%;
  }

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

  .benefit-card {
    min-height: 13.5rem;
  }

  .benefit-card__content {
    min-height: 13.5rem;
    padding: 1.55rem 1.3rem;
  }

  .benefit-card h3 {
    font-size: 1.7rem;
  }

  .benefit-card p {
    max-width: none;
  }

  .info-card {
    padding: 1.4rem;
  }
}

@media (min-width: 641px) {
  .hero-actions {
    flex-wrap: nowrap;
  }
}

@media (min-width: 900px) {
  .benefits .section-heading h2 {
    white-space: nowrap;
  }
}

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

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