:root {
  --bg-top: #eef5ff;
  --bg-bottom: #dfeafe;
  --panel: rgba(255, 255, 255, 0.93);
  --card: rgba(241, 246, 255, 0.82);
  --border: #d7e4ff;
  --ink: #04102d;
  --muted: #5a6b87;
  --accent: #2154eb;
  --accent-strong: #113dbd;
  --shadow: 0 28px 90px -40px rgba(0, 76, 255, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(0, 94, 255, 0.12), transparent 30%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
}

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

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

.panel {
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.header {
  display: flex;
  align-items: center;
}

.site-header {
  justify-content: space-between;
  gap: 16px;
  padding: 32px 32px 0;
}

.header-centered {
  justify-content: center;
  padding: 32px 32px 8px;
}

.top-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.top-links a,
.text-link {
  color: var(--accent);
  font-weight: 700;
}

.brand {
  display: inline-flex;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: var(--accent);
}

.hero,
.legal-panel {
  padding: 32px;
}

.hero {
  text-align: center;
}

.hero-left {
  text-align: left;
}

.hero.compact {
  padding-bottom: 8px;
}

.eyebrow,
.step {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #bfd3ff;
  background: #edf4ff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  max-width: 880px;
  margin: 20px auto 0;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h2 {
  margin: 16px 0 0;
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.lead,
.card p,
.legal-copy p,
.footer p {
  color: var(--muted);
  line-height: 1.75;
}

.lead {
  max-width: 780px;
  margin: 20px auto 0;
  font-size: 1.125rem;
}

.lead-left {
  margin-left: 0;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.actions-left {
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 20px;
  border: 1px solid transparent;
  font-weight: 700;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-strong), #3775ff);
}

.button-secondary {
  color: var(--accent);
  background: #fff;
  border-color: #bfd3ff;
}

.card-grid {
  display: grid;
  gap: 16px;
  padding: 0 32px 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding: 20px 32px 44px;
}

.card {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--card);
  padding: 24px;
}

.card-centered {
  text-align: center;
}

.card .button {
  margin-top: 24px;
}

.feature-panel {
  border: 1px solid #cfe0ff;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(246, 250, 255, 0.96), rgba(236, 244, 255, 0.98));
  padding: 32px;
  box-shadow: 0 24px 54px -42px rgba(17, 61, 189, 0.34);
}

.feature-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.feature-panel h2 {
  margin-top: 20px;
}

.content-section {
  padding: 0 32px 32px;
}

.section-intro {
  padding: 0 0 20px;
}

.section-intro h2 {
  margin-top: 16px;
  max-width: 760px;
}

.footer-panel {
  margin-top: 28px;
  padding: 32px 48px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 700;
}

.coming-soon-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.coming-soon-panel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 0;
}

.coming-soon-header {
  position: relative;
  z-index: 1;
  justify-content: center;
  padding: 40px 32px 24px;
}

.coming-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.9;
}

.coming-glow-a {
  top: -120px;
  right: -20px;
  width: 280px;
  height: 280px;
  background: rgba(33, 84, 235, 0.16);
}

.coming-glow-b {
  bottom: -120px;
  left: -40px;
  width: 320px;
  height: 320px;
  background: rgba(77, 194, 255, 0.18);
}

.coming-simple {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 32px 56px;
  text-align: center;
}

.coming-simple h1 {
  max-width: 700px;
  margin: 28px auto 0;
  font-size: clamp(2.8rem, 5.4vw, 4.8rem);
  line-height: 1;
}

.coming-simple .lead {
  max-width: 620px;
  margin-top: 34px;
}

.store-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #dbeafe;
}

.coming-soon-note {
  max-width: 680px;
  margin: 30px 0 0;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(241, 246, 255, 0.92), rgba(231, 240, 255, 0.82));
}

.coming-soon-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.simple-badges {
  display: grid;
  gap: 14px;
  justify-items: center;
  margin-top: 42px;
}

.simple-badges img {
  display: block;
  width: 100%;
  max-width: 260px;
}

.simple-note {
  margin: 40px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.coming-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 8px 32px 42px;
}

.legal-panel {
  width: min(840px, 100%);
  margin: 0 auto;
}

.legal-copy {
  margin: 24px 0 32px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--accent);
  font-weight: 700;
}

.listings-grid {
  display: grid;
  gap: 16px;
  padding: 0 32px 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.listing-card {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.92));
  padding: 24px;
}

.listing-card p,
.job-main p,
.job-aside p,
.job-summary p {
  color: var(--muted);
  line-height: 1.75;
}

.listing-meta,
.job-meta,
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.listing-meta,
.job-meta {
  margin-top: 18px;
}

.pill,
.job-meta span,
.listing-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.listing-card .button,
.job-summary .button {
  margin-top: 22px;
}

.job-shell {
  padding: 0 32px 32px;
}

.job-layout {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
}

.job-main,
.job-aside,
.job-summary {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--card);
  padding: 24px;
}

.job-main h2,
.job-aside h2,
.job-summary h2 {
  font-size: 1.5rem;
}

.job-section + .job-section {
  margin-top: 24px;
}

.job-section ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.75;
}

.job-summary {
  margin-bottom: 20px;
}

.job-detail-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.job-detail-list div {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  padding: 16px;
}

.job-detail-list dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.job-detail-list dd {
  margin: 8px 0 0;
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 900px) {
  .page-shell {
    width: min(100% - 24px, 1120px);
    padding: 24px 0;
  }

  .card-grid,
  .card-grid-three,
  .feature-grid,
  .listings-grid,
  .job-layout,
  .store-grid {
    grid-template-columns: 1fr;
  }

  .brand {
    font-size: 2.5rem;
  }

  .hero,
  .legal-panel,
  .footer-panel {
    padding: 24px;
  }

  .header-centered {
    padding: 24px 24px 8px;
  }

  .coming-soon-header {
    justify-content: center;
    padding: 28px 24px 8px;
  }

  .coming-simple {
    max-width: 100%;
    padding: 20px 24px 40px;
  }

  .coming-footer {
    padding: 0 24px 32px;
  }

  .card-grid {
    padding: 0 24px 24px;
  }

  .site-header,
  .content-section,
  .feature-grid,
  .listings-grid,
  .job-shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .feature-grid {
    gap: 20px;
    padding-top: 12px;
    padding-bottom: 32px;
  }

  .feature-panel {
    padding: 24px;
  }

  .top-links {
    justify-content: flex-start;
  }

  .actions,
  .actions-left {
    flex-direction: column;
    align-items: stretch;
  }
}
