:root {
  --color-primary: #ff7500;
  --color-primary-soft: #ffb06a;
  --hero-bg: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  --text: #1a1a2e;
  --text-muted: #5c6478;
  --surface: #f6f7fb;
  --radius: 14px;
  --shadow: 0 12px 40px rgba(15, 52, 96, 0.12);
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
}

.hero {
  background: var(--hero-bg);
  color: #fff;
  text-align: center;
  padding: 56px 24px 0;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 72px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  background: rgba(255, 117, 0, 0.18);
  border: 1px solid rgba(255, 117, 0, 0.4);
  border-radius: 999px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  color: var(--color-primary-soft);
}

.hero-title {
  font-size: clamp(2.2rem, 7vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.hero-title em {
  font-style: normal;
  color: var(--color-primary);
}

.hero-sub {
  font-size: clamp(15px, 2.5vw, 18px);
  opacity: 0.88;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.15s ease, transform 0.15s ease;
}

.store-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.store-badge.primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.store-badge.primary:hover {
  background: #e86a00;
}

.deeplink-panel {
  margin-top: 8px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.deeplink-panel[hidden] {
  display: none !important;
}

.deeplink-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
  margin: 0 0 6px;
}

.deeplink-title {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 800;
}

.deeplink-meta {
  margin: 0;
  font-size: 13px;
  opacity: 0.85;
  word-break: break-all;
}

.deeplink-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hero-wave {
  height: 48px;
  background: #fff;
  border-radius: 48px 48px 0 0;
  margin-top: -1px;
}

.section {
  padding: 48px 24px 64px;
  background: var(--surface);
}

.section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.section h2 {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0 0 12px;
}

.section-lead {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 32px;
}

.benefits {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.benefit {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.benefit h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.benefit p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.site-footer {
  padding: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid #e8ebf2;
}

.site-footer a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}
