:root {
  --landing-bg: #f1ece3;
  --landing-ink: #0f1720;
  --landing-muted: #5c6470;
  --landing-line: rgba(15, 23, 32, 0.1);
  --landing-light: #faf7f2;
  --landing-dark: #020617;
  --landing-gold: #d97706;
  --landing-orange: #ea580c;
  --landing-cyan: #06b6d4;
  --landing-blue: #1d4ed8;
  --landing-radius: 2rem;
  --landing-shadow: 0 28px 90px rgba(15, 23, 32, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  color: var(--landing-ink);
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(217, 119, 6, 0.16), transparent 26%),
    radial-gradient(circle at bottom left, rgba(29, 78, 216, 0.1), transparent 24%),
    linear-gradient(180deg, #f6f2ea 0%, #ece4d7 100%);
}

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

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

.landing-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.66), transparent 18%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.3), transparent 44%);
}

.landing-wrap {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 3rem;
}

.landing-topbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.landing-kicker {
  margin: 0 0 0.7rem;
  color: var(--landing-muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.landing-topbar h1 {
  margin: 0;
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.landing-topbar p {
  max-width: 40rem;
  margin: 0.85rem 0 0;
  color: var(--landing-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.landing-preview-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--landing-line);
  box-shadow: 0 10px 24px rgba(15, 23, 32, 0.08);
  font-weight: 700;
}

.landing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.landing-grid--single {
  grid-template-columns: minmax(0, 760px);
  justify-content: start;
}

.landing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 680px;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid var(--landing-line);
  border-radius: var(--landing-radius);
  box-shadow: var(--landing-shadow);
}

.landing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
}

.landing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.26), transparent 20%),
    radial-gradient(circle at bottom left, rgba(0, 0, 0, 0.08), transparent 24%);
  pointer-events: none;
}

.landing-card--light {
  background: var(--landing-light);
  color: #0f1720;
}

.landing-card--light::before {
  background: linear-gradient(135deg, var(--landing-gold), var(--landing-orange));
}

.landing-card--dark {
  background: var(--landing-dark);
  border-color: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
}

.landing-card--dark::before {
  background: linear-gradient(135deg, var(--landing-cyan), var(--landing-blue));
}

.landing-card__header,
.landing-card__footer,
.landing-card__body {
  position: relative;
  z-index: 1;
}

.landing-card__header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
}

.landing-domain {
  margin: 0;
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.landing-tagline {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.landing-card--light .landing-tagline {
  color: #475569;
}

.landing-card--dark .landing-tagline {
  color: #cbd5e1;
}

.landing-language {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.landing-card--light .landing-language {
  background: rgba(255, 255, 255, 0.9);
  color: #334155;
  box-shadow: 0 8px 18px rgba(15, 23, 32, 0.08);
}

.landing-card--dark .landing-language {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.landing-card__body {
  display: flex;
  flex: 1;
  align-items: center;
  padding: 2.25rem 0 1.5rem;
}

.landing-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-chip::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.7;
}

.landing-card--light .landing-chip {
  background: rgba(255, 255, 255, 0.9);
  color: #c2410c;
  box-shadow: 0 10px 24px rgba(15, 23, 32, 0.08);
}

.landing-card--dark .landing-chip {
  background: rgba(255, 255, 255, 0.1);
  color: #fde68a;
}

.landing-card h2 {
  margin: 0 0 1.4rem;
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.landing-card p {
  margin: 0 0 2rem;
  font-size: 1.25rem;
  line-height: 1.75;
}

.landing-card--light p {
  color: #334155;
}

.landing-card--dark p {
  color: #cbd5e1;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.landing-button,
.landing-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.35rem;
  border-radius: 1.15rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-button:hover,
.landing-pill:hover {
  transform: translateY(-1px);
}

.landing-button {
  color: #fff;
  box-shadow: 0 16px 28px rgba(15, 23, 32, 0.18);
}

.landing-button--warm {
  background: linear-gradient(135deg, var(--landing-gold), var(--landing-orange));
}

.landing-button--cool {
  background: linear-gradient(135deg, var(--landing-cyan), var(--landing-blue));
}

.landing-pill {
  background: rgba(255, 255, 255, 0.9);
  color: #0f1720;
  box-shadow: 0 10px 24px rgba(15, 23, 32, 0.08);
}

.landing-pill--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: none;
}

.landing-card__footer {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(15, 23, 32, 0.1);
  font-size: 0.96rem;
  font-weight: 600;
}

.landing-card--dark .landing-card__footer {
  border-top-color: rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}

.landing-card--light .landing-card__footer {
  color: #64748b;
}

.landing-footer-link {
  margin-top: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

.landing-icon {
  font-size: 1rem;
  line-height: 1;
}

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

  .landing-card {
    min-height: 620px;
  }
}

@media (max-width: 760px) {
  .landing-wrap {
    width: min(100% - 1rem, 100%);
    padding: 1rem 0 2rem;
  }

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

  .landing-card {
    min-height: auto;
    padding: 1.35rem;
  }

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

  .landing-card h2 {
    font-size: 2.7rem;
  }

  .landing-card p {
    font-size: 1.05rem;
  }

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

  .landing-button,
  .landing-pill,
  .landing-preview-link {
    width: 100%;
  }
}
