* {
  box-sizing: border-box;
}

:root {
  --bg: #f3f7f6;
  --surface: #ffffff;
  --surface-alt: #eef4f3;
  --ink: #102018;
  --muted: #4d6257;
  --line: rgba(16, 32, 24, 0.12);
  --teal: #0f766e;
  --teal-strong: #0d9488;
  --orange: #f97316;
  --orange-soft: rgba(249, 115, 22, 0.16);
  --shadow: 0 18px 44px rgba(16, 32, 24, 0.12);
  --radius-xl: 22px;
  --radius-lg: 16px;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 500px at 5% -10%, rgba(15, 118, 110, 0.2), transparent),
    radial-gradient(700px 420px at 95% 0%, rgba(249, 115, 22, 0.2), transparent),
    linear-gradient(180deg, #f7fbfa 0%, #edf4f2 100%);
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.section {
  padding: 5.2rem 0;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.9rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f766e;
  background: rgba(15, 118, 110, 0.12);
  border: 1px solid rgba(15, 118, 110, 0.22);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", system-ui, -apple-system, sans-serif;
  line-height: 1.15;
}

p {
  margin: 0;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  background: rgba(247, 251, 250, 0.92);
}

.nav-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.03rem;
}

.brand img {
  width: 34px;
  height: 34px;
}

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

.nav-links a {
  position: relative;
  padding: 0.2rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  transition: width 160ms ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  padding: 1rem 1.25rem 1.2rem;
  background: rgba(247, 251, 250, 0.97);
}

.mobile-menu.open {
  display: grid;
  gap: 0.75rem;
}

.mobile-menu a {
  padding: 0.45rem 0;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  transition: transform 150ms ease, box-shadow 150ms ease, filter 150ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--teal), var(--teal-strong));
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.26);
  padding: 0.55rem 1.1rem;
}

.btn-ghost {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
  padding: 0.55rem 1.1rem;
}

.btn-lg {
  padding: 0.8rem 1.35rem;
}

.hero {
  padding-top: 4.3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 2rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.hero h1 span {
  color: var(--teal-strong);
}

.hero-copy {
  color: var(--muted);
  max-width: 39rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  margin: 1.6rem 0;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-stats div {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  padding: 0.8rem;
}

.hero-stats strong {
  display: block;
  font-size: 0.9rem;
}

.hero-stats span {
  display: block;
  margin-top: 0.32rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.panel-head {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.75rem 0.95rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, var(--surface-alt));
}

.panel-head p {
  margin-left: 0.55rem;
  font-size: 0.78rem;
  color: #2d463a;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

.dot.red {
  background: #ef4444;
}

.dot.amber {
  background: #f59e0b;
}

.dot.green {
  background: #22c55e;
}

.panel-body {
  padding: 0.95rem;
  display: grid;
  gap: 0.7rem;
}

.queue-item {
  border: 1px solid var(--line);
  border-left: 4px solid #cbd5e1;
  border-radius: 12px;
  padding: 0.8rem;
  background: #fff;
}

.queue-item header {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: baseline;
}

.queue-item h3 {
  font-size: 0.94rem;
}

.queue-item header span {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--muted);
}

.queue-item p {
  margin-top: 0.38rem;
  color: #42594f;
  font-size: 0.84rem;
}

.queue-item.critical {
  border-left-color: #dc2626;
}

.queue-item.high {
  border-left-color: #ea580c;
}

.queue-item.normal {
  border-left-color: #0891b2;
}

.queue-tags {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.queue-tags span {
  border: 1px solid var(--line);
  background: var(--surface-alt);
  border-radius: 999px;
  padding: 0.2rem 0.52rem;
  font-size: 0.72rem;
  color: #3f574d;
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.6rem;
}

.section-head h2 {
  font-size: clamp(1.55rem, 3.4vw, 2.4rem);
  margin-bottom: 0.8rem;
}

.steps-grid,
.feature-grid,
.pricing-grid {
  display: grid;
  gap: 1rem;
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card,
.feature-card,
.price-card,
.faq-item,
.cta-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
}

.step-card {
  padding: 1rem;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(120deg, var(--teal), var(--orange));
}

.step-card h3 {
  margin-top: 0.7rem;
  font-size: 1rem;
}

.step-card p {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  padding: 1rem;
}

.feature-card h3 {
  font-size: 1rem;
}

.feature-card p {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  padding: 1.1rem;
}

.price-card.featured {
  border-color: rgba(15, 118, 110, 0.38);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.chip {
  display: inline-block;
  margin-bottom: 0.6rem;
  background: rgba(15, 118, 110, 0.15);
  color: #115e59;
  font-size: 0.72rem;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.24rem 0.58rem;
  letter-spacing: 0.08em;
}

.price {
  margin-top: 0.55rem;
  font-family: "Sora", sans-serif;
  font-size: 2.15rem;
}

.price span {
  font-size: 0.84rem;
  color: var(--muted);
}

.price-card ul {
  list-style: none;
  margin: 0.95rem 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.42rem;
}

.price-card li {
  color: #3f574d;
  padding-left: 1rem;
  position: relative;
}

.price-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--teal-strong);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  cursor: pointer;
}

.faq-q span {
  color: var(--teal);
  font-size: 1.15rem;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
  color: var(--muted);
  padding: 0 1rem;
}

.faq-item.open .faq-a {
  padding: 0 1rem 1rem;
  max-height: 240px;
}

.cta {
  padding-top: 2.6rem;
}

.cta-card {
  text-align: center;
  padding: 2.2rem 1rem;
  background:
    linear-gradient(140deg, rgba(15, 118, 110, 0.9), rgba(9, 83, 77, 0.95)),
    radial-gradient(200px 120px at 80% 0%, rgba(249, 115, 22, 0.3), transparent);
  color: #e7fffb;
  box-shadow: 0 24px 44px rgba(9, 83, 77, 0.34);
}

.cta-card h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.cta-card p {
  margin: 0.8rem auto 1.1rem;
  max-width: 620px;
  color: rgba(233, 255, 248, 0.92);
}

.footer {
  padding: 1.8rem 0 2.6rem;
}

.footer-inner {
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .steps-grid,
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 760px) {
  .section {
    padding: 4rem 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-btn {
    display: inline-block;
  }

  .hero-grid,
  .steps-grid,
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }
}
