@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@500;600;700;800;900&display=swap');

:root {
  --bg-primary: #f7fbfa;
  --bg-secondary: #fdf8f4;
  --bg-tint: #f3f7f8;
  --text-strong: #17313b;
  --text-body: #5f7882;
  --text-soft: #8aa0a7;
  --line-soft: rgba(255, 255, 255, 0.72);
  --line-strong: #d7e6e3;
  --line-deep: #c6d9d5;
  --glass-fill: rgba(255, 255, 255, 0.54);
  --glass-fill-strong: rgba(255, 255, 255, 0.74);
  --glass-shadow: rgba(158, 184, 176, 0.18);
  --teal: #7ec7c1;
  --sky: #a9c8f5;
  --apricot: #f4c8b8;
  --lilac: #d8c8f1;
  --sage: #bfdccf;
  --coral: #efa89a;
  --indigo: #7f8ccf;
  --amber: #f2d38b;
  --rose: #e8b7be;
  --max-width: 1180px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 108px;
}

body {
  margin: 0;
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-body);
  background:
    radial-gradient(24rem 24rem at 0% 0%, rgba(205, 234, 231, 0.9), transparent 52%),
    radial-gradient(28rem 26rem at 34% 18%, rgba(237, 248, 245, 0.88), transparent 58%),
    radial-gradient(24rem 22rem at 66% 38%, rgba(236, 227, 225, 0.72), transparent 56%),
    radial-gradient(28rem 24rem at 100% 100%, rgba(223, 238, 244, 0.9), transparent 52%),
    linear-gradient(135deg, #cdeae7 0%, #edf8f5 34%, #ece3e1 68%, #dfeef4 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: -10%;
  pointer-events: none;
  background:
    radial-gradient(18rem 18rem at 22% 18%, rgba(255, 255, 255, 0.34), transparent 60%),
    radial-gradient(22rem 22rem at 78% 26%, rgba(255, 255, 255, 0.26), transparent 58%),
    radial-gradient(24rem 24rem at 42% 88%, rgba(255, 255, 255, 0.22), transparent 60%);
  filter: blur(36px);
  z-index: -1;
}

@keyframes heroSoftReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroImageReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-reveal-card,
.scroll-reveal-icon {
  opacity: 0;
  will-change: transform, opacity, filter;
}

.scroll-reveal-card {
  transform: translate3d(0, 26px, 0) scale(0.985);
  filter: blur(0.8px);
  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.8s ease,
    filter 0.8s ease;
}

.scroll-reveal-icon {
  transform: translate3d(0, 22px, 0) scale(0.94);
  filter: blur(0.6px);
  transition:
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.72s ease,
    filter 0.72s ease;
}

.scroll-reveal-card.is-visible,
.scroll-reveal-icon.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.scroll-reveal-icon.is-visible {
  transition-delay: 0.06s;
}

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

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

.site-shell {
  position: relative;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  background: rgba(247, 251, 250, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 30px rgba(98, 124, 125, 0.08);
}

.topbar-inner,
.section-inner,
.footer-inner {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text-strong);
}

.brand img {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(126, 199, 193, 0.18);
}

.brand-copy strong,
.footer-brand strong {
  display: block;
  font-size: 0.98rem;
  color: var(--text-strong);
  font-weight: 800;
}

.brand-copy span,
.footer-brand span {
  display: block;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0;
}

.nav a {
  position: relative;
  font-size: 0.94rem;
  color: var(--text-strong);
  opacity: 0.92;
  padding: 0 14px;
}

.nav a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 15px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, rgba(23, 49, 59, 0.08), rgba(23, 49, 59, 0.22), rgba(23, 49, 59, 0.08));
}

.hero {
  padding: 32px 0 34px;
}

.landing-shell .topbar-inner {
  justify-content: center;
}

.landing-shell .brand {
  justify-content: center;
}

.landing-shell .brand-copy {
  text-align: center;
}

.landing-main {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 78px);
}

.landing-section {
  width: 100%;
  padding: 44px 0 64px;
}

.landing-head {
  max-width: 620px;
  margin: 0 auto 28px;
  text-align: center;
}

.landing-head h1 {
  font-size: clamp(1.8rem, 3.15vw, 2.7rem);
}

.landing-head p {
  margin: 16px auto 0;
  max-width: 52ch;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-body);
}

.landing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  align-items: stretch;
}

.landing-card {
  padding: 12px 12px 10px;
  text-align: center;
  min-height: 100%;
}

.landing-card-live {
  background: transparent;
}

.landing-card-soon {
  background: transparent;
}

.landing-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.landing-card-media-link {
  transition: transform 0.22s ease;
}

.landing-card-media-link:hover {
  transform: translateY(-5px);
}

.landing-card-media img {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  box-shadow: 0 24px 46px rgba(95, 120, 130, 0.14);
}

.landing-card-media-muted img {
  opacity: 0.62;
  filter: saturate(0.8);
}

.landing-card-copy h2 {
  font-size: 1.48rem;
  font-weight: 800;
}

.landing-card-copy p {
  margin: 12px auto 0;
  max-width: 30ch;
  line-height: 1.7;
  color: var(--text-body);
}

.landing-button {
  margin-top: 24px;
  min-width: 144px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 251, 250, 0.7));
}

.landing-button-disabled {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 251, 250, 0.56));
  color: rgba(23, 49, 59, 0.52);
  opacity: 0.7;
  pointer-events: none;
  box-shadow:
    0 12px 24px rgba(95, 120, 130, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.landing-explore {
  margin: 46px auto 0;
  max-width: 760px;
  padding: 8px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.landing-explore-copy h2 {
  font-size: 1.28rem;
  font-weight: 700;
}

.landing-explore-copy h2::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 220px;
  height: 1px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, rgba(23, 49, 59, 0.22), rgba(23, 49, 59, 0.08));
}

.landing-explore-copy p {
  margin: 10px 0 0;
  line-height: 1.7;
  color: var(--text-body);
}

.landing-explore-button {
  flex: 0 0 auto;
}

.landing-footer {
  padding: 0 0 24px;
}

.landing-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 49, 59, 0.14);
}

.landing-footer-copy,
.landing-footer-copyright {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.landing-footer-link {
  color: inherit;
  text-decoration: none;
}

.hero-sequence {
  opacity: 0;
  animation: heroSoftReveal 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  will-change: opacity, transform, filter;
}

.hero-sequence-title { animation-delay: 0.08s; }
.hero-sequence-subtitle { animation-delay: 0.22s; }
.hero-sequence-image { animation-delay: 0.36s; }
.hero-sequence-chip-1 { animation-delay: 0.5s; }
.hero-sequence-chip-2 { animation-delay: 0.57s; }
.hero-sequence-chip-3 { animation-delay: 0.64s; }
.hero-sequence-chip-4 { animation-delay: 0.71s; }
.hero-sequence-chip-5 { animation-delay: 0.78s; }
.hero-sequence-chip-6 { animation-delay: 0.85s; }
.hero-sequence-chip-7 { animation-delay: 0.92s; }
.hero-sequence-chip-8 { animation-delay: 0.99s; }
.hero-sequence-cta { animation-delay: 1.12s; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.glass-card {
  background: linear-gradient(180deg, var(--glass-fill-strong), rgba(255, 255, 255, 0.48));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow:
    0 20px 44px var(--glass-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 28px 56px rgba(158, 184, 176, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.footer-card:hover {
  transform: none;
  box-shadow:
    0 20px 44px var(--glass-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-copy {
  padding: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.86);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-strong);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--teal), var(--sky));
  box-shadow: 0 0 0 5px rgba(126, 199, 193, 0.14);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text-strong);
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(1.9rem, 3.75vw, 3.1rem);
  line-height: 0.98;
  font-weight: 900;
}

.hero p.lead {
  margin: 18px 0 0;
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 58ch;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 0;
}

.hero-points span,
.mini-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.84);
  color: var(--text-strong);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  align-items: center;
}

.store-badge {
  width: 196px;
  height: auto;
  transition: transform 0.2s ease;
}

.store-badge:hover,
.button:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 251, 250, 0.56));
  box-shadow:
    0 12px 24px rgba(95, 120, 130, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: var(--text-strong);
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.button-primary {
  background: linear-gradient(135deg, var(--teal), var(--sky));
  border-color: rgba(255, 255, 255, 0.72);
}

.button.button-ghost {
  background: rgba(255, 255, 255, 0.6);
}

.hero-preview {
  padding: 0;
  background: transparent;
}

.preview-frame {
  border-radius: 0;
  overflow: visible;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.preview-frame img {
  width: 75%;
  height: auto;
  background: transparent;
  filter: drop-shadow(0 28px 56px rgba(79, 121, 131, 0.16));
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.hero-sequence-image {
  animation-name: heroImageReveal;
}

.section {
  padding: 28px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-head h2 {
  font-size: 1.93rem;
  font-weight: 700;
}

.section-head h2::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 320px;
  height: 1px;
  margin: 12px 0 0;
  background: linear-gradient(90deg, rgba(23, 49, 59, 0.22), rgba(23, 49, 59, 0.08));
}

.section-head p {
  margin: 14px 0 0;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 62ch;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.info-card {
  padding: 24px;
  min-height: 100%;
}

#pain-points .info-card:nth-child(1) {
  background: linear-gradient(180deg, rgba(126, 199, 193, 0.2), rgba(255, 255, 255, 0.58));
}

#pain-points .info-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(169, 200, 245, 0.22), rgba(255, 255, 255, 0.58));
}

#pain-points .info-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(244, 200, 184, 0.22), rgba(255, 255, 255, 0.58));
}

#pain-points .info-card:nth-child(4) {
  background: linear-gradient(180deg, rgba(216, 200, 241, 0.22), rgba(255, 255, 255, 0.58));
}

#pain-points .info-card:nth-child(5) {
  background: linear-gradient(180deg, rgba(191, 220, 207, 0.24), rgba(255, 255, 255, 0.58));
}

.info-card h3 {
  font-size: 1.05rem;
}

.info-card p {
  margin: 10px 0 0;
  line-height: 1.7;
  color: var(--text-body);
}

.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--teal), var(--sky));
  box-shadow: 0 12px 24px rgba(126, 199, 193, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-badge img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.icon-badge-large-symbol img {
  width: 28px;
  height: 28px;
}

#pain-points .info-card:nth-child(3) .icon-badge {
  background: linear-gradient(135deg, var(--apricot), var(--amber));
}

#pain-points .info-card:nth-child(4) .icon-badge {
  background: linear-gradient(135deg, var(--lilac), var(--indigo));
}

#pain-points .info-card:nth-child(5) .icon-badge {
  background: linear-gradient(135deg, var(--sage), var(--teal));
}

.feature-list {
  display: grid;
  gap: 14px;
}

.features-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: start;
  margin-top: 22px;
}

.features-layout-reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  margin-top: 28px;
}

.features-visual {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.features-visual img {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 26px 52px rgba(79, 121, 131, 0.14));
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(243, 247, 248, 0.62));
  border-color: rgba(255, 255, 255, 0.84);
}

.feature-row .check {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  margin-top: 1px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--sky));
  box-shadow: 0 10px 22px rgba(126, 199, 193, 0.18);
  position: relative;
}

.feature-list .feature-row:nth-child(3) .check {
  background: linear-gradient(135deg, var(--apricot), var(--amber));
}

.feature-list .feature-row:nth-child(4) .check {
  background: linear-gradient(135deg, var(--coral), var(--apricot));
}

.feature-list .feature-row:nth-child(5) .check {
  background: linear-gradient(135deg, var(--lilac), var(--indigo));
}

.feature-row .check::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 5px;
  width: 6px;
  height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(38deg);
}

.feature-row strong {
  display: block;
  color: var(--text-strong);
  font-size: 0.98rem;
}

.feature-row span {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
  line-height: 1.65;
  font-size: 0.93rem;
}

.banner-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(126, 199, 193, 0.24), rgba(169, 200, 245, 0.24), rgba(255, 255, 255, 0.56));
}

.banner-card h3 {
  font-size: 1.93rem;
  font-weight: 700;
}

.card-divider {
  width: 100%;
  height: 1px;
  margin: 12px 0 12px;
  background: linear-gradient(90deg, rgba(23, 49, 59, 0.22), rgba(23, 49, 59, 0.08));
}

.banner-subtitle {
  margin: 0 0 10px;
  color: var(--text-strong);
  font-size: 0.98rem;
  font-weight: 700;
}

.banner-card p {
  margin: 10px 0 0;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 60ch;
}

.note-card {
  padding: 32px;
}

#about .note-card:first-child {
  background: linear-gradient(180deg, rgba(216, 200, 241, 0.22), rgba(255, 255, 255, 0.58));
}

#about .note-card:last-child {
  background: linear-gradient(180deg, rgba(191, 220, 207, 0.22), rgba(255, 255, 255, 0.58));
}

.note-card p {
  margin: 0;
  line-height: 1.85;
  color: var(--text-body);
}

.note-card-actions {
  margin-top: 22px;
}

.app-store-stat {
  margin-bottom: 18px;
}

.app-store-stat-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.app-store-stat-label {
  color: var(--text-body);
  font-size: 1rem;
  font-weight: 700;
}

.app-store-stat-number {
  color: var(--text-strong);
  font-size: 1.93rem;
  line-height: 0.95;
  font-weight: 700;
}

.app-store-stat-subcopy {
  margin-top: 6px;
  color: var(--text-body);
  line-height: 1.7;
}

.note-card strong {
  color: var(--text-strong);
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list-plain {
  gap: 18px;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(243, 247, 248, 0.62));
}

.contact-item strong {
  display: block;
  color: var(--text-strong);
}

.contact-item span {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.contact-item-plain {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-item-copy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-marker {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  margin-top: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--sky));
  box-shadow: 0 0 0 6px rgba(126, 199, 193, 0.1);
}

.contact-item-copy strong {
  display: block;
  color: var(--text-strong);
  font-size: 1rem;
}

.contact-item-copy span {
  display: block;
  margin-top: 6px;
  color: var(--text-body);
  line-height: 1.75;
}

.contact-action {
  margin-top: 12px;
  margin-left: 22px;
}

.closing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 8px 0 6px;
}

.closing-icon {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  box-shadow: 0 22px 46px rgba(126, 199, 193, 0.18);
}

.text-link {
  color: var(--text-strong);
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.page-hero {
  padding: 56px 0 18px;
}

.page-hero-card,
.legal-card {
  padding: 34px;
}

.page-hero-card h1 {
  font-size: clamp(2.1rem, 5vw, 3.55rem);
}

.page-hero-card p,
.legal-card p,
.legal-card li {
  line-height: 1.8;
  color: var(--text-body);
}

.legal-card h2 {
  font-size: 1.3rem;
  margin: 0 0 10px;
}

.legal-card .section-head h2 {
  font-size: 1.93rem;
  font-weight: 700;
  margin: 0;
}

.legal-card h3 {
  font-size: 1rem;
  margin: 24px 0 8px;
}

.legal-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.faq-card {
  display: block;
  width: 100%;
}

.faq-item {
  width: 100%;
  margin-top: 14px;
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  color: var(--text-strong);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.55;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
}

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

.faq-item summary::after {
  content: "\2303";
  color: var(--text-body);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  transform: rotate(180deg);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(0deg);
}

.faq-answer {
  border-top: 1px solid rgba(23, 49, 59, 0.12);
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 0 22px;
}

.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
  padding: 14px 22px 20px;
}

.faq-answer > * {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
}

.footer {
  padding: 28px 0 36px;
}

.footer-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  background: rgba(247, 251, 250, 0.64);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-copyright {
  margin: 0;
  color: var(--text-strong);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: right;
}

@media (max-width: 1080px) {
  .grid-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .landing-grid,
  .hero-grid,
  .grid-3,
  .features-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .banner-card,
  .page-hero-card,
  .legal-card {
    padding: 28px;
  }

  .hero-copy,
  .hero-preview {
    padding: 0;
  }
}

@media (max-width: 720px) {
  .topbar-inner,
  .footer-card,
  .banner-card,
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav,
  .footer-links {
    justify-content: flex-start;
  }

  .grid-5,
  .grid-2 {
    grid-template-columns: 1fr;
  }

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

  .landing-section {
    padding-top: 34px;
  }

  .landing-card {
    padding: 10px 6px 8px;
  }

  .landing-card-media img {
    width: 104px;
    height: 104px;
    border-radius: 24px;
  }

  .landing-card-copy h2 {
    font-size: 1.34rem;
  }

  .landing-explore {
    padding: 8px 0 0;
    flex-direction: column;
    align-items: center;
  }

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

  .hero {
    padding-top: 28px;
  }

  .info-card,
  .banner-card,
  .note-card,
  .page-hero-card,
  .legal-card {
    padding: 22px;
  }

  .hero-copy,
  .hero-preview {
    padding: 0;
  }

  .store-badge {
    width: 180px;
  }
}
