a, a:visited { cursor: pointer; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:        #0FA6B8;
  --teal-dark:   #0a8a99;
  --teal-light:  #e4f6f8;
  --base:        #FBFAF6;
  --white:       #ffffff;
  --text:        #111111;
  --text-muted:  #666666;
  --text-light:  #999999;
  --border:      #e0ddd6;
  --surface:     #f5f4f0;
  --dark:        #111111;
  --dark-2:      #1a1a1a;
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   20px;
  --max:         1080px;
  --transition:  .2s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: "DM Sans", sans-serif;
  font-size: 16px; line-height: 1.6;
  color: var(--text); background: var(--base);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Utility ── */
.inner { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.section-label {
  display: block; font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 0.6rem;
}
.section-h2 {
  font-size: 34px; font-weight: 600; letter-spacing: -1px;
  color: var(--text); line-height: 1.15; margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 16px; color: var(--text-muted); line-height: 1.65;
  max-width: 500px;
}
.section-sub.centre { margin: 0 auto; text-align: center; }
.text-centre { text-align: center; }

/* ── Buttons ── */
.btn-primary {
  display: inline-block; font-family: "DM Sans", sans-serif;
  font-size: 14px; font-weight: 500; color: white;
  background: var(--teal); border: none; border-radius: 99px;
  padding: 10px 22px; cursor: pointer;
  transition: background var(--transition), transform .15s ease;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--teal-dark); color: white; }
.btn-primary:active { transform: scale(0.97); }
.btn-primary.lg { font-size: 16px; padding: 13px 30px; }
.btn-ghost {
  display: inline-block; font-family: "DM Sans", sans-serif;
  font-size: 14px; font-weight: 500; color: var(--text);
  background: transparent; border: 0.5px solid #ccc;
  border-radius: 99px; padding: 10px 22px; cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-ghost.lg { font-size: 16px; padding: 13px 30px; }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  width: 100%; height: 64px;
  display: flex; align-items: center;
  padding: 0 24px;
  background: rgba(251,250,246,0.96);
  border-bottom: 0.5px solid var(--border);
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled {
  border-bottom-color: #c8c5be;
  background: rgba(251,250,246,0.99);
}
.nav-left { flex: 1; display: flex; align-items: center; z-index: 2; }
.nav-centre {
  position: absolute; left: 50%; transform: translateX(-50%);
  z-index: 3;
}
.nav-logo { height: 40px; width: auto; display: block; }
.nav-centre a { display: block; padding: 4px 0; }
.nav-right {
  flex: 1; display: flex; align-items: center;
  justify-content: flex-end; gap: 8px; z-index: 2;
}
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: transparent; border: none; cursor: pointer;
  padding: 6px; border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover { background: var(--surface); }
.hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: #444; border-radius: 99px;
  transition: all .25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.drawer {
  position: absolute; top: 72px; left: 12px;
  width: 292px; max-width: calc(100vw - 24px);
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: 16px; overflow: hidden;
  padding: 8px 8px 10px;
  box-shadow: 0 18px 44px rgba(15,23,42,.14), 0 2px 8px rgba(15,23,42,.06);
  z-index: 200;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px) scale(.98);
  transform-origin: top left;
  transition: opacity .16s ease, transform .22s cubic-bezier(.2,.8,.3,1), visibility .16s;
}
.drawer.open { opacity: 1; visibility: visible; transform: none; }
.drawer-label {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--text-light); padding: 6px 12px 6px;
}
.drawer-group { padding-bottom: 8px; }
.drawer-group + .drawer-label {
  border-top: 0.5px solid var(--border);
  margin-top: 6px; padding-top: 12px;
}
.drawer-link {
  display: flex; align-items: center; gap: 11px;
  font-size: 14.5px; font-weight: 500; color: var(--text);
  padding: 10px 12px; border-radius: 10px; line-height: 1.2;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.drawer-link i {
  width: 20px; font-size: 18px; text-align: center;
  color: var(--teal); flex-shrink: 0;
  transition: color var(--transition);
}
.drawer-link:hover { background: var(--surface); }
.drawer-link:hover i { color: var(--teal-dark); }
.drawer-link.active { background: var(--teal-light); color: #0a7a88; font-weight: 600; }
.drawer-link.active i { color: #0a7a88; }
.drawer-divider { display: none; }
.drawer-actions {
  display: flex; flex-direction: row; gap: 8px;
  border-top: 0.5px solid var(--border);
  padding: 10px 2px 2px; margin-top: 4px;
}
.drawer-actions .btn-ghost,
.drawer-actions .btn-primary { flex: 1; text-align: center; font-size: 13px; padding: 10px 12px; }

/* ── Hero ── */
.hero {
  padding: 6rem 2rem 5rem;
  text-align: center;
}
.hero-inner { max-width: 740px; margin: 0 auto; }
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal); border: 0.5px solid var(--teal);
  border-radius: 99px; padding: 4px 14px; margin-bottom: 1.75rem;
}
.hero-h1 {
  font-size: 54px; font-weight: 600; line-height: 1.08;
  letter-spacing: -2.5px; color: var(--text);
  margin-bottom: 1.5rem;
}
.hero-h1 em { font-style: normal; color: var(--teal); }
.hero-sub {
  font-size: 19px; color: var(--text-muted); line-height: 1.65;
  max-width: 520px; margin: 0 auto 2.5rem;
}
.hero-actions {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 1.25rem;
}
.hero-note { font-size: 13px; color: var(--text-light); }

/* ── App screenshot ── */
.screenshot-wrap {
  max-width: 920px; margin: 0 auto 5rem;
  padding: 0 2rem;
}
.screen-frame {
  border: 0.5px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; background: white;
}
.screen-bar {
  background: var(--surface); border-bottom: 0.5px solid var(--border);
  padding: 10px 16px; display: flex; align-items: center; gap: 8px;
}
.screen-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.screen-url {
  flex: 1; background: white; border-radius: 6px;
  padding: 4px 10px; font-size: 12px; color: #aaa;
  border: 0.5px solid var(--border); text-align: center;
  max-width: 280px; margin: 0 auto; font-family: "DM Sans", sans-serif;
}
.screen-inner { display: grid; grid-template-columns: 200px 1fr; min-height: 300px; }
.screen-sidebar {
  background: #f8f7f3; border-right: 0.5px solid #e5e3dc;
  padding: 20px 14px;
}
.screen-sidebar-logo { font-size: 15px; font-weight: 600; color: var(--teal); margin-bottom: 20px; }
.screen-nav-item {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 10px; border-radius: 8px;
  font-size: 13px; color: #666; margin-bottom: 2px;
  font-family: "DM Sans", sans-serif;
}
.screen-nav-item.active { background: var(--teal-light); color: var(--teal); font-weight: 500; }
.screen-main { padding: 20px; }
.screen-greeting { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 14px; }
.screen-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 16px; }
.screen-stat { background: #f8f7f3; border-radius: 10px; padding: 12px 14px; }
.screen-stat-label { font-size: 11px; color: #888; margin-bottom: 4px; font-family: "DM Sans", sans-serif; }
.screen-stat-val { font-size: 20px; font-weight: 600; color: var(--text); font-family: "DM Sans", sans-serif; }
.screen-stat-val.teal { color: var(--teal); }
.screen-jobs { display: flex; flex-direction: column; gap: 6px; }
.screen-job {
  display: flex; align-items: center; gap: 10px;
  background: white; border: 0.5px solid #e8e6e0;
  border-radius: 8px; padding: 8px 12px;
  font-size: 12px; font-family: "DM Sans", sans-serif;
}
.screen-job-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.screen-job-name { font-weight: 500; color: #222; flex: 1; }
.screen-job-time { color: #888; }
.screen-job-badge { font-size: 10px; padding: 2px 8px; border-radius: 99px; font-weight: 500; }
.badge-conf { background: var(--teal-light); color: #0a7a88; }
.badge-pend { background: #fef3e2; color: #9a6800; }

/* ── Features ── */
.features {
  background: var(--white);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 5rem 2rem;
}
.features-header { text-align: center; margin-bottom: 3rem; }
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--base); border: 0.5px solid var(--border);
  border-radius: var(--radius); padding: 26px 22px;
  transition: border-color var(--transition);
}
.feat-card:hover { border-color: #c8c5be; }
.feat-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--teal); font-size: 20px;
}
.feat-title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.feat-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── Pricing ── */
.pricing { padding: 5rem 2rem; }
.pricing-header { text-align: center; margin-bottom: 1.5rem; }
.interval-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-bottom: 2.5rem;
  font-size: 14px; color: var(--text-muted);
}
.toggle-track {
  width: 44px; height: 24px; border-radius: 99px;
  background: #ddd; position: relative; cursor: pointer;
  transition: background .2s ease; border: none; padding: 0;
  flex-shrink: 0;
}
.toggle-track.on { background: var(--teal); }
.toggle-thumb {
  position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: white; transition: transform .2s ease;
  pointer-events: none;
}
.toggle-track.on .toggle-thumb { transform: translateX(20px); }
.save-badge {
  background: var(--teal-light); color: #0a7a88;
  font-size: 11px; font-weight: 500;
  padding: 3px 10px; border-radius: 99px;
}
.plan-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.plan {
  border: 0.5px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; background: var(--white); position: relative;
  transition: border-color var(--transition);
}
.plan:hover { border-color: #c8c5be; }
.plan.featured { border: 1.5px solid var(--teal); }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: white; font-size: 11px; font-weight: 500;
  padding: 3px 14px; border-radius: 99px; white-space: nowrap;
  font-family: "DM Sans", sans-serif;
}
.plan-name { font-size: 13px; font-weight: 500; color: #888; margin-bottom: 8px; }
.plan-price { font-size: 36px; font-weight: 600; color: var(--text); letter-spacing: -1.5px; margin-bottom: 4px; }
.plan-price span { font-size: 14px; font-weight: 400; color: #888; letter-spacing: 0; }
.plan-desc { font-size: 13px; color: var(--text-muted); margin: 8px 0 18px; line-height: 1.5; }
.plan-divider { border: none; border-top: 0.5px solid #eee; margin: 0 0 16px; }
.plan-feature {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: #444; margin-bottom: 9px; line-height: 1.4;
}
.plan-feature i { color: var(--teal); font-size: 15px; margin-top: 1px; flex-shrink: 0; }
.plan-btn {
  display: block; width: 100%; padding: 11px; border-radius: 99px;
  font-size: 14px; font-family: "DM Sans", sans-serif; font-weight: 500;
  cursor: pointer; margin-top: 22px; text-align: center;
  border: 0.5px solid #ccc; background: white; color: #333;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.plan-btn:hover { border-color: var(--teal); color: var(--teal); }
.plan.featured .plan-btn {
  background: var(--teal); color: white; border-color: var(--teal);
}
.plan.featured .plan-btn:hover { background: var(--teal-dark); }
.plan-loading { color: #aaa; font-size: 13px; text-align: center; padding: 3rem 0; grid-column: 1/-1; }

/* ── App teaser ── */
.app-teaser {
  background: var(--surface);
  border-top: 0.5px solid var(--border);
  padding: 5rem 2rem; text-align: center;
}
.app-inner { max-width: 560px; margin: 0 auto; }
.app-badges { display: flex; gap: 14px; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.app-badge {
  display: flex; align-items: center; gap: 12px;
  background: var(--dark); color: white;
  border-radius: 14px; padding: 12px 22px;
  opacity: 0.45; cursor: default;
  transition: opacity var(--transition);
}
.app-badge.live { opacity: 1; cursor: pointer; }
.app-badge.live:hover { opacity: 0.85; }
.app-badge i { font-size: 24px; flex-shrink: 0; }
.app-badge-sub { font-size: 10px; color: #aaa; display: block; font-weight: 400; line-height: 1.3; }
.app-badge-name { font-size: 16px; font-weight: 600; display: block; }
.app-note { font-size: 13px; color: var(--text-light); margin-top: 1.25rem; }

/* ── Footer ── */
.footer { background: #22262a; color: #8899aa; padding: 3.5rem 2rem 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem; margin-bottom: 2.5rem;
}
.footer-logo { height: 26px; width: auto; display: block; margin-bottom: 12px; }
.footer-tagline { font-size: 13px; color: #8899aa; line-height: 1.7; }
.footer-col-title { font-size: 12px; font-weight: 500; color: #0FA6B8; margin-bottom: 14px; letter-spacing: 0.04em; display: block; }
.footer-link { font-size: 13px; color: #8899aa; margin-bottom: 9px; display: block; transition: color var(--transition); }
.footer-link:hover { color: #0FA6B8; }
.footer-bottom {
  border-top: 0.5px solid #2e3540; padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: #556070; flex-wrap: wrap; gap: 8px;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .nav { height: 56px; padding: 0 16px; }
  .nav-logo { height: 26px; }
  .nav-right { display: none; }
  .drawer { top: 64px; left: 8px; }
  .hero { padding: 4rem 1.5rem 3.5rem; }
  .hero-h1 { font-size: 36px; letter-spacing: -1.5px; }
  .hero-sub { font-size: 16px; }
  .screenshot-wrap { padding: 0 1rem; margin-bottom: 3.5rem; }
  .screen-inner { grid-template-columns: 1fr; }
  .screen-sidebar { display: none; }
  .feat-grid { grid-template-columns: 1fr; gap: 14px; }
  .plan-grid { grid-template-columns: 1fr; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section-h2 { font-size: 26px; }
}
@media (max-width: 480px) {
  .hero-h1 { font-size: 30px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Countdown ── */
.countdown-wrap {
  background: var(--white);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
}
.countdown-label {
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 1rem;
}
.countdown {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-bottom: 0.75rem;
}
.cd-unit {
  display: flex; flex-direction: column; align-items: center;
  min-width: 64px;
}
.cd-num {
  font-size: 42px; font-weight: 600; letter-spacing: -2px;
  color: var(--text); line-height: 1;
}
.cd-label {
  font-size: 11px; color: var(--text-muted); margin-top: 4px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.cd-sep {
  font-size: 36px; font-weight: 300; color: var(--border);
  margin-bottom: 16px;
}
.countdown-date {
  font-size: 13px; color: var(--text-muted);
}

/* ── Modal ── */
.modal-scrim {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.modal-scrim.open { opacity: 1; pointer-events: auto; }
.modal-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem 2rem; width: 100%; max-width: 440px;
  position: relative;
  transform: translateY(16px);
  transition: transform .25s ease;
}
.modal-scrim.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: transparent; border: none; cursor: pointer;
  font-size: 22px; color: var(--text-muted); line-height: 1;
  transition: color var(--transition);
}
.modal-close:hover { color: var(--text); }
.modal-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 0.75rem; display: block;
}
.modal-h2 {
  font-size: 22px; font-weight: 600; letter-spacing: -0.5px;
  color: var(--text); margin-bottom: 0.6rem;
}
.modal-sub {
  font-size: 14px; color: var(--text-muted); line-height: 1.6;
  margin-bottom: 1.5rem;
}
.modal-field { margin-bottom: 0.75rem; }
.modal-field input {
  width: 100%; padding: 12px 14px; font-size: 15px;
  font-family: "DM Sans", sans-serif;
  border: 0.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--base); color: var(--text);
  transition: border-color var(--transition);
  outline: none;
}
.modal-field input:focus { border-color: var(--teal); }
.modal-field input::placeholder { color: var(--text-light); }
.modal-error {
  font-size: 13px; color: #c0392b; margin-bottom: 0.75rem;
}
.modal-btn {
  width: 100%; padding: 13px; border-radius: 99px;
  font-size: 15px; font-family: "DM Sans", sans-serif;
  font-weight: 500; cursor: pointer; border: none;
  background: var(--teal); color: white;
  transition: background var(--transition), transform .15s ease;
}
.modal-btn:hover { background: var(--teal-dark); }
.modal-btn:active { transform: scale(0.98); }
.modal-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.modal-success-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 1.25rem;
}

@media (max-width: 767px) {
  .cd-num { font-size: 32px; }
  .cd-unit { min-width: 48px; }
  .modal-box { padding: 2rem 1.5rem; }
}

/* ── Hero inline capture ── */
.hero-capture { margin-bottom: 1rem; }
.hero-capture-row {
  display: flex; gap: 8px; max-width: 460px; margin: 0 auto 0.5rem;
}
.hero-capture-row input {
  flex: 1; padding: 13px 16px; font-size: 15px;
  font-family: "DM Sans", sans-serif;
  border: 0.5px solid var(--border); border-radius: 99px;
  background: var(--white); color: var(--text);
  transition: border-color var(--transition);
  outline: none;
}
.hero-capture-row input:focus { border-color: var(--teal); }
.hero-capture-row input::placeholder { color: var(--text-light); }
.hero-capture-btn {
  font-family: "DM Sans", sans-serif; font-size: 14px; font-weight: 500;
  color: white; background: var(--teal); border: none;
  border-radius: 99px; padding: 13px 22px; cursor: pointer;
  transition: background var(--transition), transform .15s ease;
  white-space: nowrap;
}
.hero-capture-btn:hover { background: var(--teal-dark); }
.hero-capture-btn:active { transform: scale(0.97); }
.hero-capture-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.hero-capture-error { font-size: 13px; color: #c0392b; text-align: center; }
.hero-capture-success {
  font-size: 14px; color: var(--teal); text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
@media (max-width: 480px) {
  .hero-capture-row { flex-direction: column; }
  .hero-capture-row input { border-radius: var(--radius-sm); }
  .hero-capture-btn { border-radius: 99px; width: 100%; }
}

/* ── Hero countdown ── */
.hero-countdown { margin-bottom: 1.75rem; }
.hcd {
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.hcd-unit {
  display: flex; flex-direction: column; align-items: center; min-width: 52px;
}
.hcd-num {
  font-size: 36px; font-weight: 600; letter-spacing: -1.5px;
  color: var(--text); line-height: 1;
}
.hcd-label {
  font-size: 10px; color: var(--text-muted); margin-top: 3px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.hcd-sep {
  font-size: 28px; font-weight: 300; color: var(--border);
  margin-bottom: 14px; line-height: 1;
}
@media (max-width: 480px) {
  .hcd-num { font-size: 28px; }
  .hcd-unit { min-width: 40px; }
}
