:root {
  --landing-bg: #12091f;
  --landing-surface: rgba(255, 255, 255, 0.08);
  --landing-surface-strong: rgba(255, 255, 255, 0.14);
  --landing-border: rgba(255, 255, 255, 0.14);
  --landing-text: #f7f2ff;
  --landing-muted: rgba(247, 242, 255, 0.78);
  --landing-customer: #c9f35d;
  --landing-executor: #ff8c4f;
  --landing-shadow: 0 24px 60px rgba(6, 3, 14, 0.28);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI Variable", "Segoe UI", sans-serif;
  color: var(--landing-text);
  background:
    radial-gradient(circle at top left, rgba(123, 68, 242, 0.42), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 140, 79, 0.28), transparent 30%),
    linear-gradient(145deg, #12091f 0%, #1d1031 50%, #0e0717 100%);
}

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

.landing-shell {
  min-height: 100vh;
}

.landing-hub,
.landing-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.landing-hub__hero {
  max-width: 760px;
  margin-bottom: 34px;
}

.landing-kicker {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 242, 255, 0.62);
}

.landing-hub__hero h1,
.landing-hero__content h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.landing-copy {
  margin: 18px 0 0;
  max-width: 680px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--landing-muted);
}

.landing-hub__grid,
.landing-feature-grid {
  display: grid;
  gap: 18px;
}

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

.landing-card,
.landing-feature,
.landing-hero__panel,
.landing-section {
  border: 1px solid var(--landing-border);
  background: var(--landing-surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--landing-shadow);
}

.landing-card {
  min-height: 320px;
  padding: 28px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.landing-card--customer {
  background:
    linear-gradient(180deg, rgba(201, 243, 93, 0.08), rgba(255, 255, 255, 0.04)),
    var(--landing-surface);
}

.landing-card--executor {
  background:
    linear-gradient(180deg, rgba(255, 140, 79, 0.1), rgba(255, 255, 255, 0.04)),
    var(--landing-surface);
}

.landing-card__eyebrow,
.landing-section__index {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-card--customer .landing-card__eyebrow,
.landing-page--customer .landing-section__index {
  background: rgba(201, 243, 93, 0.14);
  color: var(--landing-customer);
}

.landing-card--executor .landing-card__eyebrow,
.landing-page--executor .landing-section__index {
  background: rgba(255, 140, 79, 0.14);
  color: var(--landing-executor);
}

.landing-card h2,
.landing-section h2,
.landing-feature h3,
.landing-stat strong {
  margin: 0;
}

.landing-card h2 {
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.landing-card p,
.landing-feature p,
.landing-stat span {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--landing-muted);
}

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.landing-btn:hover {
  transform: translateY(-1px);
}

.landing-btn--solid {
  margin-top: auto;
  color: #130c20;
  background: linear-gradient(135deg, #ffffff 0%, #e9ddff 100%);
  box-shadow: 0 16px 34px rgba(16, 8, 29, 0.2);
}

.landing-btn--ghost {
  color: var(--landing-text);
  border: 1px solid var(--landing-border);
  background: rgba(255, 255, 255, 0.04);
}

.landing-page {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.landing-hero__content,
.landing-hero__panel {
  border-radius: 32px;
}

.landing-hero__content {
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--landing-surface);
  border: 1px solid var(--landing-border);
  box-shadow: var(--landing-shadow);
}

.landing-hero__panel {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.landing-stat {
  padding: 16px;
  border-radius: 22px;
  background: var(--landing-surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-stat strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
}

.landing-stat span {
  display: block;
  margin-top: 8px;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.landing-section {
  padding: 28px;
  border-radius: 30px;
}

.landing-section__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.landing-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.04em;
}

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

.landing-feature {
  min-height: 220px;
  padding: 24px;
  border-radius: 24px;
}

.landing-feature h3 {
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

@media (max-width: 960px) {
  .landing-hub__grid,
  .landing-hero,
  .landing-feature-grid {
    grid-template-columns: 1fr;
  }

  .landing-card,
  .landing-feature {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .landing-hub,
  .landing-page {
    width: min(100% - 24px, 100%);
    padding: 24px 0 42px;
  }

  .landing-hero__content,
  .landing-card,
  .landing-feature,
  .landing-section,
  .landing-hero__panel {
    padding: 22px;
    border-radius: 24px;
  }

  .landing-copy {
    font-size: 16px;
  }

  .landing-actions {
    flex-direction: column;
  }

  .landing-btn {
    width: 100%;
  }
}
