:root {
  --ink: #12201b;
  --muted: #5b6f68;
  --paper: #fbfaf5;
  --panel: #ffffff;
  --line: #dce7df;
  --brand: #2f7d67;
  --brand-dark: #1d5c4a;
  --accent: #e9b44c;
  --soft: #edf6f1;
  --shadow: 0 24px 70px rgba(18, 32, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(47, 125, 103, 0.12), rgba(233, 180, 76, 0.08)),
    var(--paper);
}

.launchpad {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
}

.launchpad-inner {
  width: min(960px, 100%);
  text-align: center;
}

.brand-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.launchpad h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.launchpad p {
  margin: 18px auto 36px;
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

.apps-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.app-card {
  width: 164px;
  min-height: 164px;
  border: 1px solid rgba(47, 125, 103, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  display: grid;
  place-items: center;
  padding: 18px;
  box-shadow: 0 14px 40px rgba(18, 32, 27, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.app-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 125, 103, 0.45);
  box-shadow: var(--shadow);
}

.app-card.disabled {
  opacity: 0.45;
  cursor: default;
}

.app-card.disabled:hover {
  transform: none;
  border-color: rgba(47, 125, 103, 0.18);
  box-shadow: 0 14px 40px rgba(18, 32, 27, 0.08);
}

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

.app-label {
  display: block;
  margin-top: 12px;
  font-weight: 800;
  font-size: 0.92rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 245, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1120px, calc(100% - 40px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.nav-brand span:first-child {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a {
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(47, 125, 103, 0.22);
}

.button.secondary {
  background: #fff;
  color: var(--brand-dark);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: start;
  gap: clamp(28px, 4vw, 48px);
  padding: clamp(36px, 5vw, 56px) 0 clamp(34px, 5vw, 52px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(47, 125, 103, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 0.82rem;
}

.hero h1 {
  margin: 22px 0 18px;
  max-width: 760px;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.hero-card {
  position: relative;
  min-height: 560px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(47, 125, 103, 0.08), rgba(47, 125, 103, 0.28)),
    #d9eadf;
  border: 1px solid rgba(47, 125, 103, 0.18);
  box-shadow: var(--shadow);
}

.hero-card.image-card {
  display: grid;
  place-items: center;
  justify-self: end;
  width: min(100%, 520px);
  min-height: auto;
  padding: clamp(8px, 1vw, 14px);
  background: #fff;
}

.hero-card.image-card img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 6px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
}

.offer-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(18, 32, 27, 0.06);
}

.offer-card img {
  width: 100%;
  height: clamp(220px, 24vw, 320px);
  object-fit: contain;
  display: block;
  background: #f4f4f0;
}

.offer-card-body {
  padding: 22px;
}

.offer-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.offer-card p {
  margin: 0;
  color: var(--muted);
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(42px, 5vw, 58px) 0;
}

.section h2 {
  margin: 0 0 16px;
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-lead {
  max-width: 720px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.info-card,
.testimonial,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 24px;
  box-shadow: 0 10px 34px rgba(18, 32, 27, 0.06);
}

.info-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--brand-dark);
  font-weight: 900;
}

.info-card h3,
.testimonial h3,
.faq-item h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.info-card p,
.testimonial p,
.faq-item p {
  margin: 0;
  color: var(--muted);
}

.band {
  background: var(--brand-dark);
  color: #fff;
}

.band .section-lead,
.band p {
  color: rgba(255, 255, 255, 0.78);
}

.list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.list li {
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.contact-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 28px;
}

.footer {
  padding: 30px 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 860px) {
  .nav {
    width: min(100% - 28px, 1120px);
  }

  .nav-links {
    display: none;
  }

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

  .hero {
    width: min(100% - 28px, 1120px);
    gap: 34px;
    padding-top: 44px;
  }

  .hero-card {
    min-height: auto;
  }

  .hero-card.image-card img {
    max-height: none;
  }

  .offer-card img {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .section {
    width: min(100% - 28px, 1120px);
    padding: 58px 0;
  }

  .grid,
  .offer-grid,
  .list {
    grid-template-columns: 1fr;
  }

  .apps-grid {
    gap: 16px;
  }

  .app-card {
    width: 140px;
    min-height: 140px;
  }
}
