:root {
  color-scheme: dark;
  --bg-1: #081120;
  --bg-2: #111c35;
  --card: rgba(10, 17, 31, 0.84);
  --card-border: rgba(255, 255, 255, 0.1);
  --text: #f7fafc;
  --muted: rgba(247, 250, 252, 0.72);
  --accent: #ff7a18;
  --accent-2: #2f63ed;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 122, 24, 0.28), transparent 34%),
    radial-gradient(circle at top right, rgba(47, 99, 237, 0.28), transparent 32%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2));
}

a {
  color: inherit;
}

.page-shell {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.topbar,
.brand {
  display: flex;
  align-items: center;
}

.topbar {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.brand {
  gap: 14px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: var(--shadow);
}

.eyebrow,
.section-label {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.15;
}

.ghost-link {
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.05);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.card {
  border: 1px solid var(--card-border);
  background: var(--card);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 28px;
  backdrop-filter: blur(14px);
}

.card-accent {
  position: relative;
  overflow: hidden;
}

.card-accent::after {
  content: "";
  position: absolute;
  inset: auto -60px -70px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.3), transparent 68%);
  pointer-events: none;
}

.muted {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.link-pill {
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.link-pill span {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.link-pill code {
  word-break: break-all;
  text-align: right;
  font-size: 0.92rem;
}

.button-row,
.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-row {
  margin-top: 22px;
}

.store-row {
  margin-top: 14px;
}

.primary-button,
.secondary-button,
.store-button {
  appearance: none;
  border: none;
  border-radius: 999px;
  padding: 14px 18px;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.primary-button {
  color: white;
  background: linear-gradient(135deg, var(--accent), #ff9a44);
}

.secondary-button,
.store-button {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card {
  align-self: start;
}

.steps {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

