:root {
  --bg: #f5efe5;
  --bg-deep: #eadcc8;
  --card: rgba(255, 252, 246, 0.82);
  --card-strong: #091947;
  --text: #091947;
  --text-muted: #56627f;
  --line: rgba(9, 25, 71, 0.12);
  --blue: #1840b8;
  --orange: #ff6d3a;
  --mint: #1ea672;
  --shadow: 0 24px 80px rgba(12, 25, 67, 0.14);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 109, 58, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(24, 64, 184, 0.14), transparent 26%),
    linear-gradient(180deg, #f7f1e8 0%, #efe2cf 100%);
  font-family: 'Manrope', sans-serif;
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.page-shell-compact {
  display: grid;
  place-items: center;
  padding: 24px 18px;
}

.page-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.72;
  pointer-events: none;
}

.page-glow-left {
  top: -80px;
  left: -90px;
  background: rgba(255, 109, 58, 0.18);
}

.page-glow-right {
  right: -90px;
  bottom: -80px;
  background: rgba(24, 64, 184, 0.2);
}

.landing,
.open-app-page {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.landing {
  padding: 28px 0 56px;
}

.hero-panel,
.section-grid,
.download-panel,
.timeline-list {
  display: grid;
  gap: 18px;
}

.hero-panel {
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  align-items: stretch;
}

.hero-copy,
.hero-card,
.info-card,
.timeline-card,
.download-panel,
.open-app-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy {
  padding: 30px;
}

.hero-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(9, 25, 71, 0.96), rgba(24, 64, 184, 0.88)),
    var(--card-strong);
  color: #f6f7fb;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-card-badge,
.status-chip {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card-badge {
  background: rgba(255, 255, 255, 0.14);
  color: #d6e0ff;
}

.status-chip {
  background: rgba(24, 64, 184, 0.1);
  color: var(--blue);
}

.hero-card-value {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(54px, 8vw, 92px);
  line-height: 0.95;
}

.eyebrow,
.card-label {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Unbounded', sans-serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(38px, 8vw, 82px);
  max-width: 10ch;
}

h2 {
  font-size: clamp(28px, 5vw, 42px);
}

h3 {
  font-size: 22px;
}

.hero-text,
.info-card p,
.timeline-card p,
.download-panel p,
.open-app-text,
.download-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero-text {
  max-width: 38rem;
  margin-top: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 18px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    background 140ms ease;
}

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

.button-primary {
  background: var(--text);
  color: #fff8ef;
  box-shadow: 0 16px 32px rgba(9, 25, 71, 0.18);
}

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

.download-note {
  margin-top: 18px;
}

.section-grid,
.timeline {
  margin-top: 20px;
}

.section-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.timeline-card {
  padding: 24px;
}

.info-card-dark {
  background:
    linear-gradient(180deg, rgba(9, 25, 71, 0.96), rgba(17, 42, 118, 0.92)),
    var(--card-strong);
  color: #fbfcff;
}

.info-card-dark .card-label,
.info-card-dark p {
  color: rgba(234, 241, 255, 0.8);
}

.info-card-accent {
  background:
    linear-gradient(180deg, rgba(255, 109, 58, 0.16), rgba(255, 255, 255, 0.86)),
    var(--card);
}

.timeline-head {
  margin-bottom: 16px;
}

.timeline-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--orange);
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
}

.download-panel {
  margin-top: 20px;
  padding: 26px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.open-app-card {
  width: min(680px, 100%);
  padding: 30px;
}

.open-app-card h1 {
  max-width: 100%;
  margin-top: 18px;
  font-size: clamp(30px, 7vw, 56px);
}

.open-app-text {
  margin-top: 16px;
}

.open-app-email {
  margin: 16px 0 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 920px) {
  .hero-panel,
  .section-grid,
  .timeline-list,
  .download-panel {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .landing {
    width: calc(100% - 24px);
    padding: 18px 0 34px;
  }

  .hero-copy,
  .hero-card,
  .info-card,
  .timeline-card,
  .download-panel,
  .open-app-card {
    padding: 22px 18px;
    border-radius: 26px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    gap: 10px;
  }
}
