:root {
  color-scheme: light;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #dbe3ef;
  --panel: #ffffff;
  --soft: #f4f7fb;
  --violet: #5b2cff;
  --blue: #2878ff;
  --green: #00b981;
  --amber: #f59e0b;
  --rose: #f43f5e;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(91, 44, 255, 0.12), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 72%, #eef3fb 100%);
  color: var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 168px;
  min-width: 168px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  gap: 1.25rem;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border-radius: 0.85rem;
  font-weight: 900;
  letter-spacing: 0;
}

.nav-cta {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  padding: 0 1rem;
  color: var(--violet);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

main {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 5.25rem);
  padding: 3rem 0 4rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.lead {
  max-width: 42rem;
  color: #475569;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  padding: 0 1.25rem;
}

.button.primary {
  background: linear-gradient(135deg, var(--violet), #8b00ff);
  color: white;
  box-shadow: 0 18px 38px rgba(91, 44, 255, 0.26);
}

.button.secondary {
  border: 1px solid var(--line);
  background: white;
  color: #27364f;
}

.product-frame {
  overflow: hidden;
  border: 1px solid rgba(123, 136, 163, 0.22);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.16);
}

.window-bar {
  display: flex;
  gap: 0.45rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.window-bar span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: #d4dbe8;
}

.dashboard-preview {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  min-height: 440px;
  background: #f8fbff;
}

.dashboard-preview aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 0;
  background: #0c1328;
}

.mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: white;
}

.mark img {
  width: 2rem;
}

.dashboard-preview aside span {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.8rem;
  background: rgba(148, 163, 184, 0.28);
}

.dashboard-preview aside .active {
  background: linear-gradient(135deg, var(--violet), #8b00ff);
}

.preview-main {
  padding: 1.25rem;
}

.preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
}

.preview-top strong,
.preview-top small {
  display: block;
}

.preview-top strong {
  font-size: 1.05rem;
}

.preview-top small {
  margin-top: 0.2rem;
  color: var(--muted);
  font-weight: 700;
}

.preview-top span {
  border: 1px solid rgba(0, 185, 129, 0.2);
  border-radius: 999px;
  background: rgba(0, 185, 129, 0.09);
  padding: 0.35rem 0.6rem;
  color: #00885f;
  font-size: 0.75rem;
  font-weight: 900;
}

.timeline {
  display: grid;
  grid-template-columns: 6rem 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: white;
}

.apt-list {
  display: grid;
  grid-template-rows: repeat(4, 4.8rem);
  border-right: 1px solid var(--line);
}

.apt-list b {
  display: grid;
  place-items: center;
  border-bottom: 1px solid #edf1f7;
  color: var(--violet);
}

.grid {
  position: relative;
  min-width: 460px;
  background-image:
    linear-gradient(to right, #e9eef6 1px, transparent 1px),
    linear-gradient(to bottom, #edf1f7 1px, transparent 1px);
  background-size: 6rem 4.8rem;
}

.booking {
  position: absolute;
  display: flex;
  align-items: center;
  height: 3rem;
  border: 1px solid;
  border-radius: 0.75rem;
  padding: 0 0.8rem;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.booking.green {
  border-color: #2dd4a0;
  background: #eafff6;
  color: #047857;
}

.booking.blue {
  border-color: #8bbcff;
  background: #edf6ff;
  color: #1d4ed8;
}

.booking.amber {
  border-color: #fbbf24;
  background: #fffbeb;
  color: #b45309;
}

.booking.rose {
  border-color: #fb7185;
  background: #fff1f4;
  color: #be123c;
}

.one {
  top: 0.9rem;
  left: 2rem;
  width: 15rem;
}

.two {
  top: 5.7rem;
  left: 8rem;
  width: 12rem;
}

.three {
  top: 10.5rem;
  left: 15rem;
  width: 10rem;
}

.four {
  top: 15.3rem;
  left: 4rem;
  width: 11rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1rem 0 2.5rem;
}

.trust-strip span {
  border: 1px solid rgba(91, 44, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.7rem 0.95rem;
  color: #475569;
  font-weight: 850;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem 0 4rem;
}

.features article,
.contact {
  border: 1px solid rgba(123, 136, 163, 0.2);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.features article {
  padding: 1.4rem;
}

.icon {
  display: inline-flex;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  background: #eef2ff;
  padding: 0.4rem 0.55rem;
  color: var(--violet);
  font-size: 0.75rem;
  font-weight: 950;
}

.features h2,
.contact h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.features p,
.contact p {
  color: var(--muted);
  line-height: 1.6;
  font-weight: 600;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
}

.contact > div {
  max-width: 44rem;
}

footer {
  display: flex;
  justify-content: space-between;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 1.25rem 0 2rem;
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    width: min(100% - 1rem, 1180px);
  }

  .brand {
    width: 132px;
    min-width: 132px;
  }

  .nav {
    display: none;
  }

  main {
    width: min(100% - 1rem, 1180px);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: auto;
    padding-top: 2rem;
  }

  h1 {
    max-width: 10ch;
  }

  .product-frame {
    border-radius: 1rem;
  }

  .dashboard-preview {
    grid-template-columns: 3.2rem 1fr;
    min-height: 360px;
  }

  .dashboard-preview aside span {
    width: 1.9rem;
    height: 1.9rem;
  }

  .mark {
    width: 2.35rem;
    height: 2.35rem;
  }

  .timeline {
    overflow-x: auto;
  }

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

  .contact {
    align-items: flex-start;
    flex-direction: column;
    padding: 1.25rem;
  }
}
