:root {
  --bg: #f6f3ed;
  --surface: #ffffff;
  --ink: #17201d;
  --muted: #5e6964;
  --line: #d9ded5;
  --green: #12805c;
  --green-dark: #0f5f47;
  --red: #c85045;
  --shadow: 0 24px 70px rgba(23, 32, 29, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 56px);
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid rgba(18, 128, 92, 0.35);
  outline-offset: 4px;
}

.coming-soon {
  width: min(100%, 780px);
  text-align: center;
}

.app-icon {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 28px 0 12px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.intro {
  max-width: 640px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.timeline {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1.2fr 0.9fr 1.5fr 0.75fr;
  gap: 10px;
  max-width: 620px;
  margin: 38px auto 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 44px rgba(23, 32, 29, 0.08);
}

.timeline span {
  display: block;
  height: 54px;
  border-radius: 8px;
}

.busy {
  background: var(--red);
}

.free {
  background: var(--green);
}

.note {
  margin: 30px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.contact {
  display: inline-flex;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.contact:hover {
  color: var(--green-dark);
}

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

  .timeline span {
    height: 44px;
  }
}
