:root {
  --navy: #102a43;
  --dark: #172033;
  --muted: #607086;
  --cyan: #00c8ff;
  --orange: #ff8a00;
  --bg: #f7fbff;
  --card: #ffffff;
  --border: #dce8f5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--dark);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--navy);
  font-size: 22px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  color: white;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-weight: 700;
}

.nav-cta {
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
}

.hero {
  max-width: 1180px;
  margin: 30px auto 80px;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 900;
}

h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
  margin: 10px 0 22px;
  color: var(--navy);
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  margin: 10px 0 16px;
  color: var(--navy);
  letter-spacing: -0.035em;
}

h3 {
  margin: 0 0 10px;
  color: var(--navy);
}

.hero-text {
  font-size: 20px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
}

.button.primary {
  background: linear-gradient(135deg, var(--orange), #ffb000);
  color: #1c1300;
}

.button.secondary {
  background: white;
  color: var(--navy);
  border-color: var(--border);
}

.hero-note {
  margin-top: 16px;
  color: var(--muted);
  font-weight: 700;
}

.hero-card {
  background: radial-gradient(circle at top left, rgba(0, 200, 255, 0.25), transparent 34%),
              linear-gradient(135deg, #102a43, #1b3f66);
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(16, 42, 67, 0.22);
}

.market-window {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  padding: 22px;
}

.window-bar {
  display: flex;
  gap: 7px;
  margin-bottom: 22px;
}

.window-bar span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #cbd5e1;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.app-tile {
  min-height: 110px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--navy);
  font-weight: 900;
  background: #f8fbff;
}

.app-tile.active {
  background: linear-gradient(135deg, var(--cyan), #7de6ff);
}

.growth-line {
  height: 10px;
  margin: 22px 0 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
}

.market-window p {
  color: var(--muted);
  font-weight: 800;
}

.section {
  max-width: 1180px;
  margin: 0 auto 70px;
  padding: 0 24px;
}

.problem,
.solution {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.section p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 18px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.cards article,
.feature-list div {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(16, 42, 67, 0.06);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.feature-list div {
  display: grid;
  gap: 6px;
}

.feature-list strong {
  color: var(--navy);
  font-size: 18px;
}

.feature-list span {
  color: var(--muted);
}

.launch {
  text-align: center;
  background: var(--navy);
  color: white;
  padding: 58px 24px;
  border-radius: 32px;
}

.launch h2,
.launch p {
  color: white;
}

.footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 24px 48px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.footer strong {
  color: var(--navy);
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

@media (max-width: 850px) {
  nav {
    display: none;
  }

  .hero,
  .problem,
  .solution {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }

.featured-marketplace {
  padding-top: 18px;
}

.featured-section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
}

.featured-section-header > div:first-child {
  max-width: 760px;
}

.featured-section-action {
  display: grid;
  gap: 12px;
  justify-items: end;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.featured-app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.featured-app-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(0, 200, 255, 0.1), transparent 34%),
    var(--card);
  box-shadow: 0 16px 38px rgba(16, 42, 67, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.featured-app-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 200, 255, 0.45);
  box-shadow: 0 24px 50px rgba(16, 42, 67, 0.13);
}

.featured-app-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.featured-app-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  color: white;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(16, 42, 67, 0.16);
}

.featured-badge {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 138, 0, 0.12);
  color: #b45b00;
  font-size: 11px;
  font-weight: 900;
}

.featured-category {
  margin: 24px 0 8px !important;
  color: var(--orange) !important;
  font-size: 12px !important;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-app-card h3 {
  margin: 0;
  font-size: 24px;
}

.featured-app-card > p:not(.featured-category) {
  flex: 1;
  font-size: 15px;
}

.featured-app-footer {
  margin-top: 20px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
}

.featured-availability {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.featured-app-link {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.featured-app-link:hover {
  color: var(--orange);
}

.featured-app-loading,
.featured-app-empty {
  grid-column: 1 / -1;
  min-height: 180px;
}

.pr-spotlight {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 38px;
  align-items: start;
  padding-top: 20px;
}

.pr-spotlight-intro {
  position: sticky;
  top: 32px;
}

.pr-spotlight-grid {
  display: grid;
  gap: 16px;
}

.pr-story-card {
  padding: 26px;
  border: 1px solid rgba(0, 200, 255, 0.25);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(0, 200, 255, 0.15), transparent 35%),
    linear-gradient(145deg, #102a43, #173f61);
  box-shadow: 0 24px 58px rgba(16, 42, 67, 0.18);
}

.pr-story-card h3 {
  margin: 12px 0;
  color: white;
  font-size: 26px;
}

.pr-story-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.pr-story-card a {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.pr-story-label {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .featured-section-header,
  .pr-spotlight {
    grid-template-columns: 1fr;
  }

  .featured-section-action {
    justify-items: start;
  }

  .featured-app-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pr-spotlight-intro {
    position: static;
  }
}

@media (max-width: 620px) {
  .featured-app-grid {
    grid-template-columns: 1fr;
  }

  .featured-app-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

}
