@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/quicksand-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/quicksand-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/quicksand-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/caveat-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --color-primary: #2563EB;
  --color-orange: #F97316;
  --color-blue: #3B82F6;
  --color-violet: #8B5CF6;
  --color-green: #10B981;
  --color-pink: #EC4899;
  --color-text: #1E2A3A;
  --color-muted: #56677D;
  --color-bg: #FFFFFF;
  --color-bg-soft: #F7F9FC;
  --radius-lg: 24px;
  --space-section: clamp(4rem, 3rem + 5vw, 8rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Quicksand', sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.accent-hand {
  font-family: 'Caveat', cursive;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #E2E8F0;
}

.site-header img { width: 40px; height: 40px; }

.site-header span {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

.hero {
  padding: clamp(3rem, 6vw, 6rem) clamp(1.25rem, 4vw, 3rem);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.25rem, 1.6rem + 3vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero p.subline {
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.25rem);
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.btn-primary {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,99,235,0.3); }
.btn-primary:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 3px; }

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #E2E8F0;
  color: var(--color-muted);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  cursor: default;
  user-select: none;
}

.btn-store svg { width: 20px; height: 20px; fill: var(--color-muted); }

.feature {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-section) clamp(1.25rem, 4vw, 3rem);
}

.feature-media {
  flex: 1 1 320px;
  max-width: 340px;
}

.feature-media video, .feature-media svg {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(30, 42, 58, 0.12);
  display: block;
}

.feature-media video {
  aspect-ratio: 496 / 864;
}

.feature-copy {
  flex: 1 1 360px;
}

.feature-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  color: #fff;
}

.feature-copy h2 { font-size: clamp(1.5rem, 1.3rem + 1vw, 2.1rem); margin-bottom: 0.75rem; }
.feature-copy p { color: var(--color-muted); font-size: 1.05rem; }

.feature--soft {
  background: var(--color-bg-soft);
  clip-path: inset(0 -100vmax);
  box-shadow: 0 0 0 100vmax var(--color-bg-soft);
}

@media (min-width: 768px) {
  .feature { flex-direction: row; text-align: left; }
  .feature--reverse { flex-direction: row-reverse; }
}

.tag-blue { background: var(--color-blue); }
.tag-orange { background: var(--color-orange); }
.tag-green { background: var(--color-green); }
.tag-violet { background: var(--color-violet); }
.tag-pink { background: var(--color-pink); }
.tag-teal { background: #14B8A6; }

.section-cta {
  text-align: center;
  padding: var(--space-section) clamp(1.25rem, 4vw, 3rem);
  background: linear-gradient(135deg, #EEF2F7 0%, #F7F9FC 100%);
}

.section-cta h2 { font-size: clamp(1.75rem, 1.5rem + 1vw, 2.5rem); margin-bottom: 0.75rem; }
.section-cta p { color: var(--color-muted); max-width: 480px; margin: 0 auto 1.5rem; }

.site-footer {
  padding: 2rem clamp(1.25rem, 4vw, 3rem);
  text-align: center;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.site-footer a { color: var(--color-muted); margin: 0 0.5rem; text-decoration: underline; }

@media (max-width: 480px) {
  .hero-actions { width: 100%; }
  .btn-primary, .btn-store { width: 100%; justify-content: center; text-align: center; }
  .feature-media { max-width: 100%; }
}
