/* heavypal.com styles. Brand: bg #0C0D14/#161829, red #E53E3E, blue #4A90E2 */
:root {
  --bg: #0e1019;
  --bg-raise: #151827;
  --card: #1a1e30;
  --text: #f2f2f7;
  --muted: #9ca3bd;
  --red: #e53e3e;
  --red-edge: #b32c2c;
  --blue: #4a90e2;
  --line: rgba(255, 255, 255, 0.08);
  --radius: 20px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
#get { scroll-margin-top: 120px; }

/* ── header ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14, 16, 25, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--text); text-decoration: none;
  font-weight: 800; font-size: 1.35rem; letter-spacing: -0.02em;
}
.brand svg { width: 30px; height: 30px; color: var(--red); }

/* ── buttons (chunky, pressed edge) ─────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: inherit; font-weight: 700; font-size: 1rem;
  color: #fff; text-decoration: none; cursor: pointer;
  background: var(--red);
  border: 0; border-radius: 14px;
  padding: 13px 26px;
  box-shadow: 0 4px 0 var(--red-edge);
  transition: transform 0.06s ease, box-shadow 0.06s ease, filter 0.15s ease;
}
.btn:hover { filter: brightness(1.07); }
.btn:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--red-edge); }
.btn.small { padding: 9px 18px; font-size: 0.92rem; border-radius: 12px; }

/* store buttons */
.stores { display: flex; flex-wrap: wrap; gap: 14px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.45);
  padding: 10px 20px 10px 14px;
  color: var(--text); text-decoration: none;
  transition: transform 0.06s ease, box-shadow 0.06s ease, border-color 0.15s ease;
}
.store-btn:hover { border-color: rgba(255, 255, 255, 0.22); }
.store-btn:active { transform: translateY(3px); box-shadow: 0 1px 0 rgba(0, 0, 0, 0.45); }
.store-btn svg { width: 30px; height: 30px; flex: none; }
.store-btn .lines { display: flex; flex-direction: column; line-height: 1.25; text-align: left; }
.store-btn .pre { font-size: 0.72rem; color: var(--muted); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.store-btn .name { font-size: 1.08rem; font-weight: 800; }
.store-btn.primary { border-color: rgba(229, 62, 62, 0.55); }
.store-btn[data-live="false"] { cursor: default; }
.store-btn[data-live="false"]:active { transform: none; box-shadow: 0 4px 0 rgba(0, 0, 0, 0.45); }
.soon {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  color: #ffb4b4; background: rgba(229, 62, 62, 0.16);
  border: 1px solid rgba(229, 62, 62, 0.4);
  padding: 2px 8px; border-radius: 999px; margin-left: 6px;
}

/* ── hero ───────────────────────────────────────────────── */
.hero {
  background:
    radial-gradient(90% 60% at 15% 0%, rgba(229, 62, 62, 0.14), transparent 60%),
    linear-gradient(180deg, #161829 0%, var(--bg) 100%);
  overflow: hidden;
}
.hero .wrap {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px;
  align-items: center; padding-top: 64px; padding-bottom: 0;
}
.hero-copy { padding-bottom: 64px; }
h1 {
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  line-height: 1.12; letter-spacing: -0.03em; font-weight: 800;
  margin-bottom: 18px;
}
.accent { color: var(--red); }
.accent-blue { color: var(--blue); }
.lede { font-size: 1.18rem; color: var(--muted); max-width: 34em; margin-bottom: 28px; }
.hero-note { margin-top: 14px; font-size: 0.9rem; color: var(--muted); }
.hero-phone { display: flex; justify-content: center; padding-bottom: 56px; }
.hero-phone img { width: min(320px, 76vw); filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.5)); }

/* ── feature sections ───────────────────────────────────── */
.features { padding: 96px 0 8px; }
.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center; margin-bottom: 96px;
}
.feature:nth-child(even) .feature-media { order: 2; }
.feature h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  line-height: 1.15; letter-spacing: -0.02em; font-weight: 800;
  margin-bottom: 14px;
}
.feature p { color: var(--muted); font-size: 1.08rem; max-width: 30em; }
.feature ul { list-style: none; margin-top: 18px; }
.feature li { color: var(--muted); padding-left: 30px; position: relative; margin-bottom: 10px; }
.feature li::before {
  content: ""; position: absolute; left: 0; top: 5px;
  width: 18px; height: 18px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="none" stroke="%23E53E3E" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round" d="M4 12.5l5 5L20 6.5"/></svg>') center/contain no-repeat;
}
.feature-media { display: flex; justify-content: center; }
.feature-media img {
  width: min(300px, 70vw);
  border-radius: 28px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
}

/* ── themes strip ───────────────────────────────────────── */
.themes { background: var(--bg-raise); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 88px 0; text-align: center; }
.themes h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.themes .sub { color: var(--muted); font-size: 1.08rem; max-width: 38em; margin: 0 auto 44px; }
.theme-fan { display: flex; justify-content: center; align-items: flex-end; gap: 0; }
.theme-fan img { width: min(240px, 42vw); border-radius: 24px; filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.5)); }
.theme-fan img:first-child { transform: rotate(-7deg) translateY(14px) translateX(24px); z-index: 1; }
.theme-fan img:nth-child(2) { z-index: 2; width: min(270px, 46vw); }
.theme-fan img:last-child { transform: rotate(7deg) translateY(14px) translateX(-24px); z-index: 1; }
.langs { margin-top: 48px; color: var(--muted); font-size: 0.98rem; max-width: 44em; margin-left: auto; margin-right: auto; }
.langs strong { color: var(--text); }

/* ── download cta ───────────────────────────────────────── */
.download { text-align: center; padding: 104px 0; }
.download h2 { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 14px; }
.download .sub { color: var(--muted); font-size: 1.12rem; margin-bottom: 34px; }
.download .stores { justify-content: center; }
.download .mark { width: 72px; height: 72px; color: var(--red); margin: 0 auto 24px; }

/* ── footer ─────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-raise); padding: 56px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: var(--muted); margin-top: 10px; max-width: 26em; font-size: 0.95rem; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--card); border: 1px solid var(--line);
  color: var(--muted); transition: color 0.15s ease, border-color 0.15s ease, transform 0.06s ease;
}
.socials a svg { width: 19px; height: 19px; }
.socials a:hover { color: var(--text); border-color: rgba(255, 255, 255, 0.25); }
.socials a:active { transform: translateY(2px); }
.site-footer h3 { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer li a { color: var(--text); text-decoration: none; font-size: 0.98rem; }
.site-footer li a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; color: var(--muted); font-size: 0.85rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ── legal pages ────────────────────────────────────────── */
.legal { max-width: 720px; margin: 0 auto; padding: 56px 24px 80px; }
.legal h1 { font-size: 2.1rem; margin-bottom: 6px; }
.legal .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 30px; }
.legal h2 { font-size: 1.3rem; font-weight: 800; margin: 30px 0 10px; }
.legal p, .legal li { color: #d3d6e4; }
.legal p { margin-bottom: 12px; }
.legal ul { margin: 0 0 12px 22px; }
.legal li { margin-bottom: 6px; }
.legal .card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; margin: 16px 0; }
.legal .card.warn { border-left: 3px solid var(--red); }

/* ── responsive ─────────────────────────────────────────── */
@media (max-width: 860px) {
  .wrap { padding: 0 28px; }
  .hero .wrap { grid-template-columns: 1fr; text-align: center; padding-top: 48px; }
  .hero-copy { padding-bottom: 0; }
  .lede { margin-left: auto; margin-right: auto; max-width: 28em; }
  .stores { justify-content: center; }
  .hero-phone { padding-top: 40px; padding-bottom: 40px; }
  .features { padding-top: 72px; }
  .feature p { max-width: 28em; }
  .themes .sub, .langs { max-width: 30em; }
  .feature { grid-template-columns: 1fr; gap: 32px; text-align: center; margin-bottom: 72px; }
  /* Text first, screenshot second, so images never stack back to back */
  .feature .feature-media { order: 2; }
  .feature p, .feature ul { max-width: 34em; margin-left: auto; margin-right: auto; }
  .feature li { text-align: left; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .store-btn { transition: none; }
}
