:root {
  --ink: #0f172a;
  --muted: #667085;
  --line: #e5e7eb;
  --blue: #0b3a75;
  --violet: #1456a8;
  --green: #22c55e;
  --gold: #f5b400;
  --navy: #071a33;
  --pale: #f3f7fc;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(7, 26, 51, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  padding: 0 clamp(20px, 6vw, 74px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(7, 26, 51, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
}

.brand img {
  display: block;
  width: min(620px, 62vw);
  height: 76px;
  object-fit: contain;
  object-position: left center;
}
nav {
  display: flex;
  gap: 26px;
  color: #344054;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  padding: 74px clamp(20px, 6vw, 74px) 72px;
}

.hero h1 {
  margin: 0;
  max-width: 640px;
  font-size: clamp(2.55rem, 5vw, 4.55rem);
  line-height: 1.12;
  letter-spacing: 0;
}

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

.video-button,
.primary-button,
.secondary-button,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
}

.video-button {
  gap: 10px;
  margin-top: 34px;
  padding: 0 18px;
  color: var(--white);
  background: var(--violet);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--white);
}

.social-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  color: #344054;
}

.avatars {
  display: flex;
}

.avatars span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-right: -9px;
  color: var(--white);
  background: linear-gradient(135deg, #0b3a75, #1d7cc2);
  border: 3px solid var(--white);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
}

.rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.star {
  color: var(--gold);
  font-size: 1.25rem;
}

.divider {
  width: 1px;
  height: 26px;
  background: var(--line);
}

.social-proof p {
  margin: 0;
}

.lead-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.lead-card h2 {
  margin: 0 0 4px;
  font-size: 1.28rem;
}

.lead-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 6px;
  color: #344054;
  font-size: 0.92rem;
  font-weight: 700;
}

label span {
  color: #e11d48;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #d9dee7;
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

input:focus,
select:focus {
  outline: 3px solid rgba(37, 99, 235, 0.18);
  border-color: var(--blue);
}

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

.primary-button {
  color: var(--white);
  background: linear-gradient(90deg, #082f63, #1456a8);
  font-size: 0.98rem;
}

.form-note {
  min-height: 20px;
  margin: -4px 0 0;
  color: #047857;
  font-weight: 700;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 34px clamp(20px, 9vw, 170px);
  color: var(--white);
  background: var(--navy);
}

.stats div {
  display: grid;
  gap: 4px;
  justify-items: center;
  padding: 4px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.1;
}

.stats span {
  color: #b8c1d4;
}

.phone-section {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 58px;
  align-items: center;
  max-width: 1026px;
  margin: 64px auto;
  padding: 48px;
  color: var(--white);
  background: linear-gradient(135deg, #071a33, #0b3a75 56%, #1d7cc2);
  border-radius: 24px;
}

.phone-visual {
  display: grid;
  place-items: center;
}

.phone {
  position: relative;
  width: 220px;
  height: 420px;
  padding: 22px 16px;
  overflow: hidden;
  background: #101827;
  border: 8px solid #283142;
  border-radius: 34px;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.32);
}

.phone-camera {
  width: 64px;
  height: 8px;
  margin: 0 auto 18px;
  background: #0b1020;
  border-radius: 99px;
}

.face-card {
  display: grid;
  gap: 9px;
  justify-items: center;
  padding: 28px 14px;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fbff, #dbeafe);
  border-radius: 22px;
}

.face,
.portrait {
  background:
    radial-gradient(circle at 50% 36%, #f5c49b 0 18%, transparent 19%),
    radial-gradient(circle at 50% 52%, #27364a 0 22%, transparent 23%),
    linear-gradient(135deg, #c7d2fe, #bfdbfe);
}

.face {
  width: 92px;
  height: 92px;
  border-radius: 50%;
}

.phone-face {
  width: 104px;
  height: 104px;
  object-fit: cover;
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.face-card span {
  color: #b42318;
  font-size: 0.82rem;
}

.scan-line {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 166px;
  height: 4px;
  background: #7dd3fc;
  box-shadow: 0 0 24px #7dd3fc;
  animation: scan 2.7s ease-in-out infinite;
}

@keyframes scan {
  0%, 100% { transform: translateY(-62px); }
  50% { transform: translateY(118px); }
}

.phone-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
}

.benefit-list,
.feature-card ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.benefit-list li {
  display: grid;
  gap: 2px;
  padding: 18px 20px 18px 78px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.benefit-list li::before,
.feature-card li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  color: #047857;
  background: #dcfce7;
  border: 1px solid #86efac;
  border-radius: 50%;
  font-weight: 900;
}

.benefit-list li::before {
  position: absolute;
}

.benefit-list li {
  position: relative;
}

.benefit-list li::before {
  left: 22px;
  top: 19px;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.benefit-list span {
  color: #d7e5ff;
}

.secondary-button {
  margin-top: 18px;
  padding: 0 26px;
  color: var(--blue);
  background: var(--white);
}

.features {
  padding: 76px clamp(20px, 6vw, 120px);
  background: var(--pale);
}

.eyebrow {
  width: fit-content;
  margin: 0 auto 16px;
  padding: 8px 22px;
  color: #087443;
  background: #d8ffe8;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.features h2,
.testimonials h2 {
  margin: 0 auto 42px;
  text-align: center;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.2;
}

.features h2 em {
  color: var(--blue);
  font-family: Georgia, serif;
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  max-width: 1026px;
  margin: 0 auto 38px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.feature-card h3 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  line-height: 1.15;
}

.feature-card p {
  margin: 0 0 24px;
  color: var(--muted);
}

.feature-card li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #344054;
  font-weight: 700;
}

.feature-card li::before {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.feature-visual {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #dbeafe, #eef6ff 55%, #f8fafc);
  border-radius: 12px;
}

.feature-gif {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.attendance-showcase {
  min-height: 280px;
  isolation: isolate;
}

.attendance-showcase img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: showcaseFloat 5s ease-in-out infinite;
}

.scan-sweep {
  position: absolute;
  inset: -20% auto -20% 12%;
  z-index: 1;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.54), transparent);
  filter: blur(1px);
  transform: skewX(-18deg);
  animation: scanSweep 3.4s ease-in-out infinite;
}

.pulse-dot {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.46);
  animation: pulseMark 1.8s ease-out infinite;
}

.dot-one {
  right: 13%;
  top: 27%;
}

.dot-two {
  left: 40%;
  top: 53%;
  animation-delay: 0.55s;
}

@keyframes showcaseFloat {
  0%, 100% { transform: scale(1.02) translateY(0); }
  50% { transform: scale(1.05) translateY(-6px); }
}

@keyframes scanSweep {
  0% { left: -24%; opacity: 0; }
  18% { opacity: 1; }
  68% { opacity: 1; }
  100% { left: 104%; opacity: 0; }
}

@keyframes pulseMark {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.52); transform: scale(0.9); }
  70% { box-shadow: 0 0 0 18px rgba(34, 197, 94, 0); transform: scale(1); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); transform: scale(0.9); }
}

.mini-phone,
.person-shape,
.beam,
.rule-panel,
.laptop,
.schedule-card,
.shift-pill {
  position: absolute;
}

.mini-phone {
  left: 20%;
  top: 72px;
  width: 98px;
  height: 150px;
  background: #1f2937;
  border: 8px solid #334155;
  border-radius: 20px;
}

.person-shape {
  right: 18%;
  bottom: 48px;
  width: 76px;
  height: 160px;
  background: linear-gradient(#0b3a75 0 36%, #111827 37%);
  border-radius: 44px 44px 12px 12px;
}

.beam {
  left: 36%;
  top: 100px;
  width: 220px;
  height: 80px;
  background: rgba(56, 189, 248, 0.25);
  clip-path: polygon(0 36%, 100% 0, 100% 100%, 0 64%);
}

.rules-art {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #edf6ff, #f8fafc);
}

.rule-panel {
  inset: 54px 48px;
  display: grid;
  gap: 14px;
  align-content: center;
  padding: 26px;
  background: var(--white);
  border: 1px solid #d7e5ff;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.rule-panel span {
  padding: 12px 14px;
  background: #f8fafc;
  border-radius: 10px;
  color: #344054;
  font-weight: 800;
}

.laptop {
  left: 50%;
  top: 50%;
  display: grid;
  gap: 8px;
  place-items: center;
  width: 280px;
  height: 160px;
  padding: 24px;
  color: var(--white);
  background: #111827;
  border: 10px solid #334155;
  border-radius: 18px;
  transform: translate(-50%, -50%);
}

.laptop strong {
  color: #86efac;
  font-size: 2.4rem;
}

.shift-art {
  background: linear-gradient(135deg, #dbeafe, #eef6ff);
}

.schedule-card {
  left: 50%;
  top: 58%;
  width: 280px;
  height: 138px;
  background:
    linear-gradient(#ffffff 0 0) padding-box,
    repeating-linear-gradient(90deg, transparent 0 68px, rgba(37, 99, 235, 0.15) 69px 70px);
  border: 1px solid #dbe4f0;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
}

.shift-pill {
  z-index: 1;
  left: 22%;
  top: 54px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 99px;
  font-weight: 900;
}

.shift-pill.night {
  left: auto;
  right: 16%;
  top: 88px;
  background: #111827;
}

.notification-art {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e0f2fe, #f8fafc);
}

.message-phone {
  position: relative;
  width: min(300px, 78%);
  min-height: 230px;
  padding: 22px 18px;
  background: #071a33;
  border: 10px solid #172036;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.message-header {
  width: 72px;
  height: 8px;
  margin: 0 auto 18px;
  background: #334155;
  border-radius: 99px;
}

.message-bubble {
  max-width: 100%;
  margin: 12px 0;
  padding: 12px 14px;
  color: #0f172a;
  background: #ffffff;
  border-radius: 14px;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
  animation: messageSlide 4.2s ease-in-out infinite;
}

.message-bubble.whatsapp {
  border-left: 5px solid #22c55e;
}

.message-bubble.sms {
  border-left: 5px solid #0b3a75;
  animation-delay: 0.45s;
}

.message-bubble.alert {
  border-left: 5px solid #f59e0b;
  animation-delay: 0.9s;
}

.notification-ping {
  position: absolute;
  top: 54px;
  right: 74px;
  width: 22px;
  height: 22px;
  background: #22c55e;
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  animation: pulseMark 1.7s ease-out infinite;
}

@keyframes messageSlide {
  0%, 100% { transform: translateX(0); opacity: 0.9; }
  45% { transform: translateX(10px); opacity: 1; }
}

.testimonials {
  padding: 76px clamp(20px, 6vw, 74px) 54px;
}

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

.testimonial-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.portrait {
  height: 220px;
  margin-bottom: 20px;
  border-radius: 12px;
}

.portrait-photo {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.portrait-logo {
  display: block;
  width: 100%;
  object-fit: contain;
  padding: 28px;
  background: #071a33;
}

.portrait-logo-light {
  background: #ffffff;
  border: 1px solid var(--line);
}

.portrait-logo-black {
  background: #000000;
}

.portrait-two {
  background:
    radial-gradient(circle at 52% 36%, #d49a72 0 17%, transparent 18%),
    radial-gradient(circle at 50% 54%, #111827 0 23%, transparent 24%),
    linear-gradient(135deg, #d1d5db, #f1f5f9);
}

.portrait-three {
  background:
    radial-gradient(circle at 50% 36%, #d6a174 0 17%, transparent 18%),
    radial-gradient(circle at 50% 54%, #1e293b 0 24%, transparent 25%),
    linear-gradient(135deg, #cbd5e1, #f8fafc);
}

.testimonial-grid p {
  color: #344054;
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.author span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--blue);
  background: #dbeafe;
  border-radius: 50%;
  font-weight: 900;
}

.author div {
  display: grid;
}

.author small {
  color: var(--muted);
}

.author-link {
  width: fit-content;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 800;
}

.author-logo {
  width: 132px;
  max-height: 54px;
  margin-top: 8px;
  object-fit: contain;
  object-position: left center;
}

.faq-section {
  padding: 64px clamp(20px, 6vw, 74px);
  background: var(--pale);
}

.faq-section h2 {
  margin: 0 auto 34px;
  max-width: 820px;
  text-align: center;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.2;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1026px;
  margin: 0 auto;
}

.faq-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.faq-grid h3 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 1.16rem;
}

.faq-grid p {
  margin: 0;
  color: #344054;
}

.cta {
  max-width: 1026px;
  margin: 34px auto 78px;
  padding: 70px 28px;
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, #071a33, #0b3a75 62%, #1456a8);
  border-radius: 24px;
}

.cta h2 {
  max-width: 650px;
  margin: 0 auto 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.16;
}

.cta p {
  margin: 0 0 28px;
  color: #e8f1ff;
  font-size: 1.08rem;
}

.cta-button {
  min-width: 200px;
  padding: 0 28px;
  color: var(--blue);
  background: var(--white);
}

.site-footer {
  min-height: 250px;
  padding: 42px 20px 92px;
  color: #cbd5e1;
  text-align: center;
  background: var(--navy);
}

.site-footer p {
  margin: 0 0 22px;
  color: #94a3b8;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.press,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.press {
  margin-bottom: 34px;
  font-weight: 800;
}

.footer-links {
  gap: 14px;
  margin-bottom: 18px;
}

.sticky-bar {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  width: min(672px, calc(100% - 28px));
  padding: 14px 16px 14px 22px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.3);
  transform: translateX(-50%);
}

.sticky-bar span {
  color: var(--gold);
}

.sticky-bar a {
  flex: 0 0 auto;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-weight: 800;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.64);
}

.modal.is-open {
  display: grid;
}

.modal-panel {
  position: relative;
  width: min(980px, 100%);
  padding: 24px;
  color: var(--white);
  background: #101827;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 1.7rem;
  cursor: pointer;
}

.video-preview {
  display: grid;
  align-items: center;
}

.video-player img {
  display: block;
  width: 100%;
  border-radius: 16px;
  background: #071a33;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .hero,
  .phone-section,
  .feature-card,
  .feature-card.reverse,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .lead-card {
    max-width: 620px;
  }

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

  .stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .stats div:last-child {
    border-bottom: 0;
  }

  .phone-section {
    margin: 40px 20px;
    padding: 30px 20px;
  }

  .feature-card.reverse .feature-visual {
    order: -1;
  }

  .testimonial-grid {
    max-width: 560px;
    margin: 0 auto;
  }

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

  .cta {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 60px;
  }

  .brand {
    font-size: 1.05rem;
  }

  .hero {
    padding: 36px 16px 52px;
  }

  .field-row,
  .video-preview {
    grid-template-columns: 1fr;
  }

  .lead-card,
  .feature-card {
    padding: 20px;
    border-radius: 14px;
  }

  .feature-visual {
    min-height: 220px;
  }

  .phone {
    width: 190px;
    height: 356px;
  }

  .sticky-bar {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
    text-align: center;
  }

  .sticky-bar a {
    width: 100%;
  }
}
