* {
  box-sizing: border-box;
}

:root {
  --bg: #f4f7f6;
  --surface: #ffffff;
  --text: #17221d;
  --muted: #64746b;
  --green: #136c47;
  --green-dark: #0c5034;
  --green-soft: #e8f3ed;
  --gold: #cfaa57;
  --border: #dfe8e3;
  --shadow: 0 12px 30px rgba(17, 55, 39, 0.08);
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(19,108,71,.08), transparent 28%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
}

.topbar {
  height: 92px;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  height: 58px;
  max-width: 250px;
  object-fit: contain;
}

.brand-text {
  display: none;
  line-height: .95;
}

.brand-name {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 1.4px;
  color: var(--green);
}

.brand-subtitle {
  font-size: 13px;
  margin-top: 8px;
  font-weight: 700;
  letter-spacing: 4.5px;
  color: var(--gold);
}

.datetime {
  text-align: right;
}

#date {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 3px;
  text-transform: capitalize;
}

#time {
  font-size: 27px;
  font-weight: 750;
  letter-spacing: .7px;
  color: var(--green-dark);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 42px;
}

.hero {
  margin-bottom: 38px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 2.5px;
  font-size: 12px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.05;
}

.hero > p:last-child {
  color: var(--muted);
  font-size: 17px;
  margin-top: 14px;
}

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

.app-card {
  min-height: 240px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(17, 55, 39, 0.13);
  border-color: #cbdcd3;
}

.app-card.primary {
  background: linear-gradient(145deg, var(--green-dark), var(--green));
  color: #fff;
  border-color: transparent;
}

.app-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
}

.primary .app-icon {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
}

.app-content h2 {
  margin: 25px 0 8px;
  font-size: 20px;
}

.app-content p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.primary .app-content p {
  color: rgba(255,255,255,.80);
}

.launch, .coming {
  font-size: 13px;
  font-weight: 800;
}

.launch {
  color: #fff;
}

.coming {
  color: var(--green);
}

footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 30px;
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  border-top: 1px solid var(--border);
}

@media (max-width: 900px) {
  .apps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topbar {
    padding: 0 24px;
  }
}

@media (max-width: 620px) {
  .topbar {
    height: auto;
    padding: 18px 20px;
    align-items: flex-start;
    gap: 20px;
  }

  .logo {
    height: 48px;
    max-width: 170px;
  }

  .brand-name {
    font-size: 22px;
  }

  #date {
    font-size: 12px;
  }

  #time {
    font-size: 21px;
  }

  .container {
    width: min(100% - 28px, 1180px);
    padding-top: 36px;
  }

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

  .app-card {
    min-height: 220px;
  }
}
