:root {
  --ink: #090909;
  --muted: #697080;
  --background: #ffffff;
  --surface: #ffffff;
  --panel: #ffffff;
  --line: #e7e8ec;
  --soft: #f5f5f7;
  --accent: #111111;
  --purple: #111111;
  --shadow: 0 12px 30px rgba(17, 22, 32, 0.045);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--background);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  transition: color 180ms ease, background-color 180ms ease;
}

body.has-modal {
  overflow: hidden;
}

body[data-theme="classic"] {
  --ink: #f5f7fc;
  --muted: #a8afbe;
  --background: #090c11;
  --surface: #11161e;
  --panel: #10151d;
  --line: #252d3b;
  --soft: #151b25;
  --accent: #6c5ce7;
  --purple: #8f7cff;
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

main {
  display: flow-root;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  display: block;
}

button {
  color: inherit;
  font: inherit;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.material-svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
}

.site-header,
.hero,
.section,
.download-panel,
footer {
  width: min(calc(100% - 38px), 430px);
  margin-inline: auto;
}

.section {
  padding: 54px 0 0;
}

.section-heading {
  margin-bottom: 26px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.section-heading h2 {
  margin: 0 0 18px;
  font-size: clamp(40px, 11.2vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.logo-swap {
  display: inline-grid;
}

.logo-swap img,
.theme-shot-mono,
.theme-shot-classic {
  grid-area: 1 / 1;
}

.logo-classic,
.theme-shot-classic {
  display: none;
}

body[data-theme="classic"] .logo-mono,
body[data-theme="classic"] .theme-shot-mono {
  display: none;
}

body[data-theme="classic"] .logo-classic,
body[data-theme="classic"] .theme-shot-classic {
  display: block;
}

.button {
  min-height: 54px;
  padding: 0 19px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  background: var(--surface);
  font-size: 16px;
  font-weight: 680;
}

.button svg {
  width: 28px;
  height: 28px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.button.primary {
  color: #ffffff;
  border-color: #090909;
  background: #090909;
}

.button.primary svg {
  color: #090909;
  background: #ffffff;
}

.app-store-badge {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.app-store-badge img {
  height: 36px;
  width: auto;
}

.google-play-badge img {
  height: 47px;
}

body[data-theme="classic"] .button.primary {
  border-color: #6c5ce7;
  background: #6c5ce7;
}
