:root {
  --navy: #0f1729;
  --navy-soft: #16233d;
  --blue: #1a73e8;
  --blue-deep: #1557b0;
  --teal: #00c9b1;
  --paper: #f8f9fa;
  --panel: #ffffff;
  --ink: #202124;
  --slate: #5f6368;
  --line: #dadce0;
  --white: #ffffff;
  --shadow-soft: 0 12px 30px rgba(15, 23, 41, 0.08);
  --shadow-strong: 0 26px 60px rgba(15, 23, 41, 0.24);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* ── Header ─────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 249, 250, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-subtitle {
  font-size: 0.74rem;
  color: var(--slate);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--slate);
  font-weight: 500;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(26, 115, 232, 0.26);
}

.btn-primary:hover {
  background: var(--blue-deep);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover {
  background: rgba(15, 23, 41, 0.04);
}

.btn-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ── Hero ───────────────────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  padding: 10px 0 44px;
}

.hero-bg {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
}

.hero-bg-1 {
  width: 440px;
  height: 440px;
  right: -110px;
  top: -80px;
  background: radial-gradient(circle, rgba(26, 115, 232, 0.14), transparent 68%);
}

.hero-bg-2 {
  width: 360px;
  height: 360px;
  left: -90px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(0, 201, 177, 0.12), transparent 70%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--blue-deep);
  font-size: 0.9rem;
  font-weight: 600;
}

.eyebrow.center {
  margin-inline: auto;
}

.hero-copy h1,
.section-head h2,
.cta-box h2 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.4rem, 4.6vw, 4.2rem);
  line-height: 1.06;
  max-width: 640px;
}

.hero-copy h1 span {
  color: var(--blue);
}

.hero-text {
  max-width: 590px;
  color: var(--slate);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 12px 18px;
  margin-top: 28px;
  max-width: 560px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.95rem;
}

.benefit span {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 201, 177, 0.14);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
}

/* ── Hero visual: shift-entry card + live dashboard card ──────────── */

.hero-visual {
  position: relative;
  min-height: 620px;
}

.entry-card {
  position: absolute;
  left: 0;
  top: 30px;
  width: 300px;
  padding: 10px;
  border-radius: 38px;
  background: var(--navy);
  box-shadow: var(--shadow-strong);
  z-index: 2;
}

.entry-notch {
  width: 100px;
  height: 20px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: #1c283f;
}

.entry-screen {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
}

.entry-header {
  position: relative;
  padding: 18px 16px;
  background: linear-gradient(135deg, var(--navy), #1c2b4a);
  color: var(--white);
}

.entry-header .step-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 201, 177, 0.18);
  border: 1px solid rgba(0, 201, 177, 0.4);
  font-size: 0.7rem;
  font-weight: 600;
  color: #7fe7d9;
}

.entry-header h4 {
  margin: 10px 0 2px;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.entry-header p {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

.entry-fields {
  padding: 14px 16px 6px;
}

.entry-field {
  margin-bottom: 12px;
}

.entry-field label {
  display: block;
  font-size: 0.72rem;
  color: var(--slate);
  margin-bottom: 5px;
}

.entry-field .value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 600;
}

.entry-cta {
  width: calc(100% - 28px);
  margin: 8px 14px 16px;
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
}

.dash-card {
  position: absolute;
  right: 0;
  top: 340px;
  width: 300px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  z-index: 10;
}

.dash-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  margin-bottom: 14px;
}

.dash-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal);
}

.dash-live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 201, 177, 0.16);
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.dash-kpi {
  padding: 12px;
  border-radius: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.dash-kpi span {
  display: block;
}

.dash-kpi .label {
  font-size: 0.72rem;
  color: var(--slate);
  margin-bottom: 4px;
}

.dash-kpi .value {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: "Sora", sans-serif;
}

.dash-kpi.alert .value {
  color: var(--blue-deep);
}

/* ── Sections ───────────────────────────────────────────────────── */

.section {
  padding: 84px 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(15, 23, 41, 0.03), rgba(15, 23, 41, 0.03)),
    radial-gradient(circle at top right, rgba(26, 115, 232, 0.05), transparent 24%);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-head h2 {
  margin: 16px 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.section-head p {
  margin: 0;
  color: var(--slate);
}

.feature-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.info-card,
.step-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.icon-wrap {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(26, 115, 232, 0.1);
  color: var(--blue);
}

.icon-wrap svg {
  width: 24px;
  height: 24px;
}

.info-card h3,
.step-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-family: "Sora", sans-serif;
}

.info-card p,
.step-card p {
  margin: 0;
  color: var(--slate);
}

.step-no {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  font-family: "Sora", sans-serif;
}

/* ── CTA ────────────────────────────────────────────────────────── */

.cta-box {
  padding: 42px;
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(0, 201, 177, 0.16), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.cta-box h2 {
  margin: 14px 0 8px;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.1;
}

.cta-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
}

.cta-eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #7fe7d9;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-actions .contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-actions .contact-item {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.95);
}

.cta-actions .contact-item svg {
  display: block;
  color: rgba(255, 255, 255, 0.9);
}

.cta-actions .contact-item:hover svg,
.cta-actions .contact-item:hover span {
  color: var(--teal);
}

#contact-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

label[for="contact-toggle"].btn {
  display: inline-flex;
}

#contact-info {
  display: none;
  margin-top: 8px;
}

#contact-toggle:checked + label + #contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (min-width: 1025px) {
  #contact-info {
    align-items: flex-end;
  }

  .cta-actions .contact-info {
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    margin-top: 0;
  }
}

/* ── Footer ─────────────────────────────────────────────────────── */

.site-footer {
  padding: 18px 0 36px;
  color: var(--slate);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
}

/* ── Responsive ─────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .cta-box,
  .feature-grid,
  .steps-grid,
  .steps-grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 640px;
    max-width: 420px;
    margin: 0 auto;
  }

  .entry-card {
    left: 50%;
    transform: translateX(-50%);
  }

  .dash-card {
    right: auto;
    left: 50%;
    top: 350px;
    transform: translateX(-30%);
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

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

  .hero-visual {
    min-height: 600px;
  }

  .dash-card {
    width: 260px;
    transform: translateX(-10%);
  }

  .cta-box {
    padding: 30px 22px;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .nav {
    min-height: 68px;
  }

  .brand-title {
    font-size: 1.2rem;
  }

  .btn {
    min-height: 44px;
    padding: 0 18px;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .entry-card {
    width: 260px;
  }

  .dash-card {
    left: 50%;
    transform: translateX(-38%);
    top: 320px;
  }

  .section {
    padding: 68px 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

  .entry-card {
    position: static;
    transform: none;
    margin: 0 auto;
  }

  .dash-card {
    position: static;
    transform: none;
    margin: 16px auto 0;
    width: 100%;
    max-width: 320px;
  }

  .hero-visual {
    min-height: auto;
  }
}
