:root {
  --bg: #f5f1e8;
  --paper: #fffcf6;
  --ink: #14213d;
  --muted: #5f6b7a;
  --line: rgba(20, 33, 61, 0.12);
  --accent: #e76f51;
  --accent-strong: #c75037;
  --accent-soft: rgba(231, 111, 81, 0.12);
  --success: #2a9d8f;
  --shadow: 0 18px 48px rgba(20, 33, 61, 0.12);
  --content: 1120px;
  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(
      circle at top left,
      rgba(231, 111, 81, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at top right,
      rgba(42, 157, 143, 0.14),
      transparent 24%
    ),
    linear-gradient(180deg, #fffaf1 0%, var(--bg) 100%);
}

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

.shell {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 252, 246, 0.84);
  border-bottom: 1px solid var(--line);
}

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

.topbar nav a {
  transition:
    color 0.2s ease,
    font-weight 0.2s ease;
}

.topbar nav a:hover {
  color: #000;
  font-weight: 600;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(20, 33, 61, 0.08);
  overflow: hidden;
  padding: 0.25rem;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text,
h1,
h2,
h3,
strong.card-title {
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}

.nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

.hero {
  padding: 72px 0 48px;
}

.hero-grid,
.legal-layout,
.grid-3,
.grid-2 {
  display: grid;
  gap: 20px;
}

.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

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

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

.legal-layout {
  grid-template-columns: 280px minmax(0, 1fr);
  padding-bottom: 48px;
}

.meta-pill,
.note {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.96;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  margin: 24px 0 8px;
  font-size: 1.15rem;
}

p,
li {
  color: var(--muted);
  line-height: 1.7;
}

.actions,
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.store-button,
.card,
.legal-box,
.legal-copy,
.step {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.store-button {
  display: inline-flex;
  min-height: 56px;
  min-width: 220px;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
}

.store-button:hover {
  background: rgb(243, 243, 243);
}

.store-button-content {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.store-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  color: #000;
}

.store-copy span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.1;
}

.store-copy strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.1;
}

.store-button img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex: 0 0 auto;
}

.slider-shell {
  width: 100%;
}

.slider-stage {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 14px;
}

.slider-viewport {
  overflow: hidden;
}

.slider-track {
  position: relative;
}

.slider-slide {
  border: 5px solid #000;
  border-radius: 20px;
  padding: 5px;
  background-color: #000;
  display: none;
  margin: 0;
}

.slider-slide.is-active {
  display: block;
}

.slider-slide img {
  width: 100%;
  display: block;
  border-radius: 10px;
  background: transparent;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
}

.card {
  padding: 24px;
}

.card-title {
  display: block;
  margin: 12px 0;
  font-size: 1.16rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 800;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px;
  margin-bottom: 16px;
}

.step-number {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
}

.cta {
  margin: 34px 0 56px;
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(135deg, #15233f, #29385f);
  color: #fff;
  box-shadow: 0 30px 56px rgba(20, 33, 61, 0.22);
}

.cta p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
}

.legal-box,
.legal-copy {
  padding: 24px;
}

.legal-copy ul {
  padding-left: 20px;
}

.note {
  background: rgba(42, 157, 143, 0.12);
  color: var(--ink);
}

@media (max-width: 940px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .store-button {
    width: 100%;
    min-width: 0;
  }

  .cta {
    padding: 24px;
  }

  .slider-stage {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 10px;
  }

  .slider-arrow {
    width: 42px;
    height: 42px;
  }
}
