:root {
  --brand: #f2bd09;
  --brand-dark: #d9a507;
  --text: #0f172a;
  --muted: #566178;
  --bg: #ffffff;
  --card: #f9f5e7;
  --border: #e6e2d5;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Sora', system-ui, -apple-system, sans-serif;
  background: radial-gradient(100% 100% at 0% 0%, rgba(242, 189, 9, 0.08), transparent 40%),
    radial-gradient(80% 80% at 100% 10%, rgba(242, 189, 9, 0.05), transparent 35%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--brand-dark);
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1180px;
  padding: 0 24px;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand-mark {
  font-weight: 700;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
}

.brand-mark::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #ffe48f);
  box-shadow: 0 10px 30px rgba(242, 189, 9, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
}

.nav-links a {
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  transition: all 0.2s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--brand), #ffd54f);
  color: #352401;
  box-shadow: 0 18px 35px rgba(242, 189, 9, 0.35);
}

.btn.dark {
  background: #101010;
  color: #fff;
  border-color: #000;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.btn.ghost {
  background: rgba(15, 23, 42, 0.05);
  color: var(--text);
  border-color: rgba(15, 23, 42, 0.08);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.dark:hover {
  background: #0f0f0f;
}

.store-logo {
  width: 16px;
  height: 16px;
  display: inline-block;
  border-radius: 4px;
  background: #fff;
}

.store-logo.apple {
  clip-path: circle(40%);
}

.store-logo.play {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: linear-gradient(135deg, #1de9b6, #0d47a1);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  gap: 36px;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin: 14px 0;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 22px;
}

.pill {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(242, 189, 9, 0.1);
  color: #8a6715;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.78rem;
  color: #8c8c8c;
  margin-bottom: 6px;
}

.contact-link {
  color: var(--text);
  font-weight: 600;
}

.hero-card {
  background: #0f172a;
  color: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(242, 189, 9, 0.35), transparent 70%);
  transform: rotate(12deg);
}

.card-header {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.card-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.card-body {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 16px;
  position: relative;
  z-index: 1;
}

.card-title {
  font-weight: 700;
  margin-bottom: 12px;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.item-title {
  margin: 0 0 4px;
  font-weight: 600;
}

.muted {
  color: var(--muted);
  margin: 0;
}

.muted.large {
  max-width: 640px;
}

.chip {
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.85rem;
  align-self: start;
}

.chip.accent {
  background: rgba(242, 189, 9, 0.25);
  color: #fdf7e5;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(242, 189, 9, 0.07), rgba(255, 255, 255, 0));
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-header h2 {
  margin: 8px 0;
  font-size: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(242, 189, 9, 0.16);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: center;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin: 16px 0;
}

.contact-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-chip {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.02);
  font-weight: 600;
}

.accent-card {
  background: #0f172a;
  color: #f8fbff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.accent-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 8px 12px;
  font-weight: 600;
  color: #fff;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.accent-title {
  font-size: 1.4rem;
  margin: 14px 0 6px;
}

.accent-list {
  padding-left: 18px;
  color: #cdd4e6;
  line-height: 1.5;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  color: var(--brand);
  font-weight: 700;
  margin-top: 10px;
}

.footer {
  margin-top: auto;
  padding: 36px 24px 28px;
  background: #0f172a;
  color: #e2e8f0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  align-items: start;
}

.footer-column h4 {
  margin: 0 0 8px;
}

.footer-column a {
  display: block;
  color: #cbd5e1;
  margin: 4px 0;
}

.footer-meta {
  margin-top: 18px;
  text-align: center;
  color: #94a3b8;
  font-size: 0.9rem;
}

.legal {
  padding: 64px 0 80px;
}

.legal-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin: 4px 0 12px;
}

.legal-body {
  margin-top: 18px;
  white-space: pre-line;
  color: var(--text);
  line-height: 1.7;
}

.text-link,
.nav-links a,
.contact-link,
.social-chip,
.btn {
  transition: all 0.2s ease;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    inset: 64px 16px auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    flex-direction: column;
    padding: 14px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .btn.ghost {
    display: none;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
