:root {
  color-scheme: dark;
  --bg: #0e0e0d;
  --bg-soft: #141512;
  --panel: #20211e;
  --surface: #2b2c28;
  --surface-strong: #34362f;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f7f7f1;
  --muted: #b3baad;
  --muted-2: #828879;
  --accent: #b0eb47;
  --accent-soft: rgba(176, 235, 71, 0.16);
  --danger: #ff684f;
  --amber: #f4c659;
  --steel: #9bb5c0;
  --shadow: rgba(0, 0, 0, 0.38);
  --max: 1160px;
  --radius: 8px;
  --font: ui-rounded, "SF Pro Rounded", "SF Pro Display", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 74% 14%, rgba(176, 235, 71, 0.1), transparent 26rem),
    linear-gradient(180deg, #0e0e0d 0%, #10110f 52%, #0e0e0d 100%);
  color: var(--text);
  font-family: var(--font);
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 72%);
}

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

a:hover {
  color: var(--accent);
}

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #10110f;
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(14, 14, 13, 0.82);
  backdrop-filter: blur(22px);
}

.nav-shell,
.site-footer,
.hero-section,
.feature-overview,
.workflow-section,
.privacy-band,
.document-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

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

.brand-link,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 1.55rem;
  font-weight: 950;
}

.brand-link img,
.footer-brand img {
  border-radius: 8px;
  box-shadow: 0 10px 28px var(--shadow);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 0.95rem;
  font-weight: 900;
  white-space: nowrap;
}

.nav-cta,
.button-primary {
  background: var(--accent);
  color: #10110f;
  box-shadow: 0 12px 40px rgba(176, 235, 71, 0.18);
}

.button-primary:hover {
  color: #10110f;
  transform: translateY(-1px);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(176, 235, 71, 0.5);
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: 40px;
  align-items: center;
  min-height: 0;
  padding: 92px 0 76px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.product-name {
  color: var(--accent);
  font-size: 5.7rem;
  line-height: 0.9;
  font-weight: 950;
}

.hero-copy h1 {
  max-width: 640px;
  margin-top: 22px;
  font-size: 3.05rem;
  line-height: 1.08;
  font-weight: 950;
}

.hero-lede {
  max-width: 560px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.55;
  font-weight: 650;
}

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

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 640px);
  margin: 34px 0 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  list-style: none;
  overflow: hidden;
}

.proof-strip li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 66px;
  padding: 12px;
  background: rgba(20, 21, 18, 0.76);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

.proof-strip svg {
  width: 23px;
  min-width: 23px;
  color: var(--accent);
}

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

.device-frame {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04) 16%, rgba(0, 0, 0, 0.5)),
    #0a0b0a;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.58), inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.phone-frame {
  position: absolute;
  left: 9%;
  top: 8px;
  width: 340px;
  min-height: 650px;
  padding: 16px;
  border-radius: 44px;
  transform: rotate(2deg);
}

.phone-speaker {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 108px;
  height: 30px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: #050505;
}

.phone-status,
.screen-topline,
.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-status {
  position: relative;
  z-index: 1;
  padding: 10px 18px 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 900;
}

.app-screen {
  margin-top: 18px;
  min-height: 580px;
  border-radius: 32px;
  padding: 28px 18px 18px;
  background: linear-gradient(180deg, #141512, #0e0f0d);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.screen-topline strong {
  color: var(--accent);
  font-size: 1.08rem;
}

.screen-topline span,
.micro-label {
  color: var(--muted-2);
  font-size: 0.82rem;
  font-weight: 850;
}

.weekday-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
  margin: 16px 0;
}

.weekday-row span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 950;
}

.weekday-row .active {
  background: var(--accent);
  color: #10110f;
}

.target-panel {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(43, 44, 40, 0.92), rgba(32, 33, 30, 0.9));
}

.target-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text);
  font-size: 1.65rem;
  font-weight: 930;
}

.target-title svg {
  width: 24px;
  color: var(--accent);
}

.micro-label {
  margin-top: 18px;
}

.target-number {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 2px;
}

.target-number span {
  color: var(--text);
  font-size: 5.55rem;
  line-height: 0.92;
  font-weight: 950;
}

.target-number small {
  color: var(--muted);
  font-size: 1.35rem;
  font-weight: 900;
}

.target-reps {
  margin-top: 2px;
  color: var(--text);
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 950;
  text-align: center;
}

.load-hint {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 24px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.load-hint span,
.load-hint strong {
  font-size: 0.9rem;
  font-weight: 950;
}

.load-hint span {
  color: var(--muted);
}

.load-hint strong {
  color: var(--accent);
}

.outcome-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.outcome {
  display: grid;
  min-height: 58px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.78rem;
  font-weight: 950;
}

.outcome.done {
  color: var(--accent);
}

.outcome.hard {
  color: var(--amber);
}

.outcome.missed {
  color: var(--danger);
}

.phone-tabs {
  display: flex;
  justify-content: space-around;
  margin-top: 16px;
  color: var(--muted-2);
  font-size: 0.74rem;
  font-weight: 950;
}

.phone-tabs .active {
  color: var(--accent);
}

.widget-card {
  position: absolute;
  right: 0;
  bottom: 124px;
  width: 238px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(180deg, #151613, #0c0d0b);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.56);
}

.widget-card strong {
  color: var(--accent);
}

.widget-header strong {
  font-size: 1.15rem;
}

.widget-header span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 900;
}

.widget-card p {
  margin-top: 18px;
  font-weight: 900;
}

.widget-target {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.widget-target span {
  font-size: 4rem;
  line-height: 1;
  font-weight: 950;
}

.widget-target small {
  font-size: 1.35rem;
  font-weight: 950;
}

.feature-overview,
.workflow-section,
.privacy-band {
  padding: 70px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(260px, 0.46fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.section-heading h2,
.privacy-band h2,
.support-hero h1,
.document-card h1 {
  font-size: 2.3rem;
  line-height: 1.08;
  font-weight: 950;
}

.section-heading p,
.privacy-band p,
.support-hero p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.55;
  font-weight: 650;
}

.section-heading.compact p {
  margin-top: 12px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-card,
.support-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(32, 33, 30, 0.96), rgba(22, 23, 20, 0.96));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.feature-card {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: 18px;
}

.feature-card > svg,
.support-card > svg {
  width: 31px;
  color: var(--accent);
}

.feature-card h3 {
  margin-top: 18px;
  font-size: 1.12rem;
  line-height: 1.18;
  font-weight: 950;
}

.feature-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 650;
}

.mini-panel {
  margin-top: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.target-mini {
  padding: 14px;
}

.target-mini span,
.mini-panel span,
.mini-panel em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
}

.target-mini strong {
  display: block;
  margin-top: 8px;
  font-size: 3.25rem;
  line-height: 1;
  font-weight: 950;
}

.target-mini small,
.widget-mini small {
  color: var(--muted);
  font-size: 1.1rem;
}

.target-mini em {
  display: block;
  margin-top: 2px;
  color: var(--text);
  font-size: 1.25rem;
  text-align: center;
}

.table-mini,
.week-mini {
  padding: 6px 0;
}

.table-mini div,
.week-mini div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 38px;
  padding: 0 12px;
  border-top: 1px solid var(--line);
}

.table-mini div:first-child,
.week-mini div:first-child {
  border-top: 0;
}

.table-mini strong,
.week-mini strong {
  font-size: 0.88rem;
  white-space: nowrap;
}

.week-mini .active {
  background: var(--accent-soft);
}

.widget-mini {
  padding: 14px;
}

.widget-mini div {
  display: flex;
  justify-content: space-between;
}

.widget-mini div strong,
.widget-mini em {
  color: var(--accent);
}

.widget-mini p {
  margin-top: 16px;
  color: var(--text);
  font-size: 0.9rem;
}

.widget-mini > strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
}

.workflow-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}

.workflow-rail article {
  min-height: 230px;
  padding: 24px;
  background: rgba(20, 21, 18, 0.86);
}

.workflow-rail span {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 950;
}

.workflow-rail h3 {
  margin-top: 28px;
  font-size: 1.35rem;
  line-height: 1.15;
  font-weight: 950;
}

.workflow-rail p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 650;
}

.privacy-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  margin-bottom: 52px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(176, 235, 71, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(32, 33, 30, 0.96), rgba(20, 21, 18, 0.96));
}

.privacy-band p {
  max-width: 780px;
  margin-top: 12px;
}

.band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 28px;
  align-items: center;
  padding: 30px 0 42px;
  color: var(--muted);
}

.site-footer p {
  margin-top: 10px;
  max-width: 390px;
  line-height: 1.45;
  font-size: 0.9rem;
  font-weight: 650;
}

.site-footer nav {
  display: flex;
  gap: 20px;
  font-weight: 850;
}

.copyright {
  text-align: right;
}

.page-legal,
.page-support {
  background:
    radial-gradient(circle at 76% 0%, rgba(176, 235, 71, 0.08), transparent 24rem),
    var(--bg);
}

.document-shell {
  padding: 64px 0 70px;
}

.document-card,
.support-hero,
.faq-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(32, 33, 30, 0.96), rgba(20, 21, 18, 0.96));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.document-card {
  max-width: 860px;
  padding: 42px;
}

.document-kicker {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 950;
  text-transform: uppercase;
}

.document-card h1 {
  margin-top: 10px;
}

.updated {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 750;
}

.document-card section {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.document-card h2 {
  font-size: 1.18rem;
  line-height: 1.2;
  font-weight: 950;
}

.document-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
  font-weight: 600;
}

.document-card a,
.support-card a,
.faq-list a {
  color: var(--accent);
  font-weight: 900;
}

.support-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
}

.support-hero h1 {
  max-width: 730px;
  margin-top: 10px;
}

.support-hero p {
  max-width: 690px;
  margin-top: 14px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.support-card {
  padding: 22px;
}

.support-card h2 {
  margin-top: 18px;
  font-size: 1.2rem;
  font-weight: 950;
}

.support-card p {
  margin-top: 12px;
  color: var(--text);
  font-weight: 850;
}

.support-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.92rem;
  font-weight: 650;
}

.faq-section {
  margin-top: 16px;
  padding: 34px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 950;
}

.faq-list details[open] summary {
  color: var(--accent);
}

.faq-list p {
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 650;
}

.compact-footer {
  grid-template-columns: 1fr auto auto;
}

@media (max-width: 1180px) {
  .nav-links {
    gap: 20px;
  }

  .nav-cta {
    display: none;
  }

  .hero-section {
    grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.92fr);
    gap: 24px;
  }

  .product-name {
    font-size: 4.9rem;
  }

  .hero-copy h1 {
    font-size: 2.72rem;
  }

  .hero-lede {
    font-size: 1.12rem;
  }

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

  .phone-frame {
    left: 4%;
    width: 306px;
    min-height: 610px;
  }

  .target-number span {
    font-size: 5rem;
  }

  .widget-card {
    width: 204px;
    right: 0;
    bottom: 96px;
  }

  .widget-target span {
    font-size: 3.3rem;
  }

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

@media (max-width: 980px) {
  .nav-shell,
  .site-footer,
  .hero-section,
  .feature-overview,
  .workflow-section,
  .privacy-band,
  .document-shell {
    width: min(var(--max), calc(100% - 28px));
  }

  .nav-shell {
    min-height: auto;
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .brand-link {
    margin-right: auto;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.84rem;
  }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 44px;
  }

  .product-name {
    font-size: 4.2rem;
  }

  .hero-copy h1 {
    font-size: 2.45rem;
  }

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

  .phone-frame {
    left: 50%;
    width: 320px;
    min-height: 610px;
    transform: translateX(-58%) rotate(2deg);
  }

  .widget-card {
    right: 2%;
    bottom: 90px;
  }

  .section-heading,
  .privacy-band,
  .support-hero {
    grid-template-columns: 1fr;
  }

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

  .workflow-rail,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .privacy-band,
  .support-hero,
  .faq-section,
  .document-card {
    padding: 24px;
  }

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

  .site-footer,
  .compact-footer {
    grid-template-columns: 1fr;
  }

  .copyright {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .brand-link span {
    font-size: 1.35rem;
  }

  .nav-links {
    font-size: 0.82rem;
  }

  .nav-cta {
    display: none;
  }

  .product-name {
    font-size: 3.05rem;
  }

  .hero-copy h1,
  .section-heading h2,
  .privacy-band h2,
  .support-hero h1,
  .document-card h1 {
    font-size: 1.86rem;
  }

  .hero-lede,
  .section-heading p,
  .privacy-band p,
  .support-hero p {
    font-size: 1rem;
  }

  .button {
    width: 100%;
    max-width: 460px;
  }

  .hero-actions,
  .proof-strip {
    max-width: 360px;
  }

  .hero-copy h1,
  .hero-lede {
    max-width: 360px;
  }

  .proof-strip,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 0;
    overflow: visible;
  }

  .phone-frame {
    position: relative;
    left: auto;
    top: auto;
    width: 294px;
    min-height: 565px;
    padding: 12px;
    margin: 32px auto 0;
    transform: none;
  }

  .app-screen {
    min-height: 510px;
    padding: 24px 14px 14px;
  }

  .target-number span {
    font-size: 4.55rem;
  }

  .widget-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(78%, 212px);
    margin: -56px auto 0;
    padding: 14px;
    border-radius: 24px;
  }

  .widget-target span {
    font-size: 3.05rem;
  }

  .feature-card {
    min-height: 0;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 430px) {
  .nav-links {
    gap: 13px;
    font-size: 0.78rem;
  }

  .hero-copy h1,
  .hero-lede,
  .hero-actions,
  .proof-strip,
  .button {
    max-width: 342px;
  }

  .hero-copy h1 {
    font-size: 1.86rem;
  }

  .product-name {
    font-size: 3.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
