:root {
  color-scheme: light;
  --bg: #f7faff;
  --surface: #ffffff;
  --surface-soft: #f2f7ff;
  --ink: #08111f;
  --muted: #5d6b82;
  --muted-2: #8793a8;
  --line: rgba(20, 43, 76, 0.12);
  --line-strong: rgba(20, 43, 76, 0.22);
  --blue: #1368ff;
  --blue-2: #2ed3ff;
  --blue-3: #0a46d8;
  --green: #1dbb84;
  --orange: #ff9d2e;
  --violet: #6957ff;
  --shadow: 0 24px 70px rgba(20, 64, 130, 0.13);
  --shadow-soft: 0 14px 34px rgba(20, 64, 130, 0.09);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --width: 1188px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Aptos, "Trebuchet MS", Verdana, sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(circle at 12% 0%, rgba(19, 104, 255, 0.15), transparent 26rem),
    radial-gradient(circle at 88% 8%, rgba(46, 211, 255, 0.18), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 58%, #ffffff 100%);
}
a { color: inherit; }
.shell { max-width: var(--width); margin: 0 auto; padding: 0 22px 62px; }
.announcement {
  margin: 14px auto 10px;
  max-width: var(--width);
  border: 1px solid rgba(19, 104, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #23456f;
  padding: 9px 16px;
  text-align: center;
  font-size: 0.92rem;
  box-shadow: var(--shadow-soft);
}
.topbar {
  position: sticky;
  top: 12px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  margin-bottom: 38px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 10px 22px rgba(19, 104, 255, 0.28);
}
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.nav a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 15px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.93rem;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.nav a { color: #243855; }
.nav a:hover,
.nav a:focus-visible,
.button:hover,
.button:focus-visible { transform: translateY(-1px); border-color: var(--line-strong); }
.header-actions { display: flex; gap: 9px; justify-content: flex-end; }
.button.primary { color: white; background: linear-gradient(135deg, var(--blue), var(--blue-3)); box-shadow: 0 14px 26px rgba(19, 104, 255, 0.25); }
.button.secondary { color: var(--blue-3); background: #eef5ff; border-color: rgba(19, 104, 255, 0.14); }
.button.ghost { color: #263850; background: white; border-color: var(--line); }
.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 30px;
  justify-items: center;
  text-align: center;
  padding: clamp(58px, 8vw, 118px) clamp(22px, 4vw, 72px) 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(rgba(19, 104, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 104, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 5%, rgba(46, 211, 255, 0.22), transparent 28rem),
    var(--surface);
  background-size: 46px 46px, 46px 46px, auto, auto;
  box-shadow: var(--shadow);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 8% -80px;
  height: 170px;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(19, 104, 255, 0.2), transparent);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 930px; display: grid; justify-items: center; gap: 8px; }
.badge,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(19, 104, 255, 0.16);
  background: #eef6ff;
  color: var(--blue-3);
  padding: 8px 12px;
  font-weight: 900;
  font-size: 0.86rem;
}
.badge::before,
.pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(29, 187, 132, 0.12);
}
h1,
h2,
h3,
p { margin-top: 0; }
h1,
h2,
.display { letter-spacing: -0.055em; line-height: 0.98; }
h1 {
  max-width: 920px;
  margin: 18px auto 18px;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
}
h2 { font-size: clamp(2.05rem, 4.5vw, 4.4rem); margin-bottom: 14px; }
h3 { font-size: 1.16rem; margin-bottom: 8px; }
.gradient-text { color: transparent; background: linear-gradient(90deg, var(--blue), var(--blue-2)); -webkit-background-clip: text; background-clip: text; }
.lede { max-width: 790px; margin-left: auto; margin-right: auto; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.28rem); }
.hero-actions,
.button-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 640px;
  margin-top: 18px;
}
.note-card {
  border: 1px solid rgba(19, 104, 255, 0.14);
  border-radius: 18px;
  background: rgba(238, 246, 255, 0.9);
  color: #284768;
  padding: 12px 14px;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}
.microcopy { color: var(--muted-2); font-size: 0.91rem; margin-top: 10px; }
.section { padding: clamp(64px, 8vw, 104px) 0 0; }
.section-head { display: grid; gap: 10px; justify-items: center; text-align: center; max-width: 850px; margin: 0 auto 32px; }
.section-head.left { justify-items: start; text-align: left; margin-left: 0; }
.kicker { margin: 0; color: var(--blue); font-weight: 950; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.78rem; }
.section-note { color: var(--muted); max-width: 760px; }
.employee-grid,
.price-grid,
.faq-grid { display: grid; gap: 18px; }
.employee-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.employee-card,
.price-card,
.faq-card,
.step-card,
.mock-card,
.setup-card,
.partner-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 44px rgba(20, 64, 130, 0.09);
}
.employee-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  padding: 24px;
}
.employee-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
}
.avatar {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.7rem;
  font-weight: 950;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.8), transparent 15%),
    linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 18px 34px rgba(19, 104, 255, 0.23);
}
.employee-card:nth-child(2) .avatar { background: linear-gradient(135deg, #18a0fb, #16c7d9); }
.employee-card:nth-child(3) .avatar { background: linear-gradient(135deg, #6957ff, #a45cff); }
.employee-card:nth-child(4) .avatar { background: linear-gradient(135deg, #0f8f68, #1dbb84); }
.card-label { color: var(--blue); font-weight: 950; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }
.card-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.card-list li { padding-left: 18px; position: relative; color: var(--muted); }
.card-list li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.boundary { border-radius: 16px; background: #f3f7ff; color: #36506f; padding: 12px; font-size: 0.92rem; }
.workspace-mock {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.6fr);
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #ffffff, #f4f8ff);
  box-shadow: var(--shadow);
}
.mock-sidebar,
.mock-main { display: grid; gap: 14px; }
.mock-card { padding: 20px; }
.profile-row { display: flex; align-items: center; gap: 12px; }
.profile-dot { width: 48px; height: 48px; border-radius: 18px; display: grid; place-items: center; color: white; font-weight: 950; background: linear-gradient(135deg, var(--blue), var(--blue-2)); }
.board { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.board-column { min-height: 176px; border-radius: 18px; background: #f7faff; border: 1px solid var(--line); padding: 12px; }
.board-title { display: flex; justify-content: space-between; gap: 8px; color: #315073; font-weight: 950; font-size: 0.88rem; margin-bottom: 10px; }
.ticket { border-radius: 14px; background: white; border: 1px solid var(--line); padding: 10px; box-shadow: 0 10px 20px rgba(20, 64, 130, 0.06); color: #2a3c55; font-size: 0.88rem; }
.ticket + .ticket { margin-top: 8px; }
.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.timeline { display: grid; gap: 10px; }
.timeline-item { display: grid; gap: 3px; padding-left: 16px; border-left: 3px solid rgba(19, 104, 255, 0.18); color: var(--muted); }
.timeline-item strong { color: var(--ink); }
.steps { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.step-card { padding: 20px; }
.step-number { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 12px; color: white; background: var(--blue); font-weight: 950; margin-bottom: 12px; }
.price-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.price-card { padding: 25px; display: grid; gap: 14px; }
.price-card.featured { border-color: rgba(19, 104, 255, 0.34); box-shadow: 0 28px 70px rgba(19, 104, 255, 0.17); transform: translateY(-8px); }
.price { font-size: 2.35rem; letter-spacing: -0.06em; font-weight: 950; }
.price span { color: var(--muted); font-size: 1rem; letter-spacing: 0; font-weight: 800; }
.setup-partner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 18px; }
.setup-card,
.partner-card { padding: clamp(26px, 4vw, 40px); }
.faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.faq-card { padding: 20px; }
.footer {
  margin-top: 72px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #07111f;
  color: #c7d2e4;
}
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; }
.footer a { color: white; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
.disclosure { margin-top: 16px; color: #97a7bd; font-size: 0.92rem; }
.simple-page .hero { padding-bottom: clamp(54px, 8vw, 112px); }
.simple-page h1 { max-width: 960px; }
@media (prefers-reduced-motion: no-preference) {
  .hero-inner,
  .employee-card,
  .workspace-mock,
  .price-card { animation: rise 560ms ease both; }
  .employee-card:nth-child(2), .price-card:nth-child(2) { animation-delay: 70ms; }
  .employee-card:nth-child(3), .price-card:nth-child(3) { animation-delay: 120ms; }
  .employee-card:nth-child(4) { animation-delay: 170ms; }
  @keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
}
@media (max-width: 1080px) {
  .topbar { grid-template-columns: 1fr; border-radius: var(--radius-lg); }
  .nav, .header-actions { justify-content: flex-start; }
  .employee-grid, .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .workspace-mock, .setup-partner { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .shell { padding-inline: 14px; }
  .announcement { margin-inline: 14px; border-radius: 18px; }
  .topbar { position: static; }
  .nav a, .button { width: 100%; }
  .header-actions, .hero-actions { width: 100%; }
  .hero-notes { grid-template-columns: 1fr; }
  .employee-grid, .price-grid, .faq-grid, .two-col, .steps, .board { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}
