@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&family=Plus+Jakarta+Sans:wght@700;800&display=swap");

:root {
  --yellow: #ffc72c;
  --yellow-strong: #f6bf22;
  --gold: #775a00;
  --black: #000000;
  --charcoal: #1b1c1c;
  --ink: #1b1c1c;
  --muted: #4f4633;
  --secondary: #5f5e5e;
  --line: rgba(0, 0, 0, 0.1);
  --line-strong: #817661;
  --cream: #fdfbf0;
  --surface: #fbf9f8;
  --surface-low: #f5f3f3;
  --surface-container: #efeded;
  --white: #ffffff;
  --panel: #ffffff;
  --success: #22c55e;
  --info: #3b82f6;
  --shadow: 4px 4px 0 rgba(0, 0, 0, 0.92);
  --soft-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  --radius-sm: 4px;
  --radius: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
.brand,
.price {
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, sans-serif;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 251, 240, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 72px;
  padding: 0 24px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand img {
  height: 38px;
  width: auto;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--black);
}

.nav-toggle {
  background: var(--yellow);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--charcoal);
  display: none;
  font-weight: 800;
  padding: 10px 12px;
}

.button {
  align-items: center;
  background: var(--yellow);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--charcoal);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  box-shadow: 3px 3px 0 var(--black);
  transform: translate(-1px, -1px);
}

.button.secondary {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.button.light {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.eyebrow {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #fff4c6 0%, var(--cream) 72%);
  background-size: 24px 24px, auto;
  overflow: hidden;
  padding: 86px 24px 64px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  margin: 0 auto;
  max-width: var(--max);
}

.hero h1,
.page-hero h1 {
  font-size: 64px;
  letter-spacing: 0;
  line-height: 72px;
  margin: 0;
}

.hero p,
.page-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 28px;
  margin: 22px 0 0;
  max-width: 660px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
  margin-top: 28px;
}

.dashboard {
  background: #303031;
  border: 2px solid var(--black);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  color: var(--white);
  overflow: hidden;
  padding: 16px;
}

.dashboard-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  background: var(--yellow);
  border-radius: 999px;
  height: 9px;
  opacity: 0.9;
  width: 9px;
}

.dashboard-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}

.metric,
.task-column,
.mini-panel {
  background: #1f2020;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 14px;
}

.metric strong {
  color: var(--yellow);
  display: block;
  font-size: 1.45rem;
  line-height: 1.1;
}

.metric span,
.task-card span,
.mini-panel span {
  color: #bdbdbd;
  font-size: 0.82rem;
}

.taskboard-preview {
  display: grid;
  gap: 10px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
}

.task-column h4 {
  color: var(--yellow);
  font-size: 0.82rem;
  margin: 0 0 10px;
}

.task-card {
  background: #303031;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  margin-top: 8px;
  min-height: 68px;
  padding: 10px;
}

.section,
.page-hero {
  padding: 80px 24px;
}

.section.dark {
  background: #303031;
  color: var(--white);
}

.section.yellow {
  background: var(--yellow);
  border-bottom: 1px solid var(--gold);
  border-top: 1px solid var(--gold);
}

.container {
  margin: 0 auto;
  max-width: var(--max);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.45fr);
  margin-bottom: 34px;
}

.section-heading h2,
.cta-band h2 {
  font-size: 48px;
  letter-spacing: 0;
  line-height: 56px;
  margin: 0;
}

.section-heading p,
.card p,
.price-card p,
.faq-item p,
.legal p,
.legal li {
  color: var(--muted);
}

.dark .section-heading p,
.dark .card p,
.dark .feature-list li {
  color: #c9c9c9;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card,
.price-card,
.faq-item,
.legal-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--soft-shadow);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.section.dark .price-card {
  background: #1f2020;
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card:hover,
.price-card:hover {
  border-color: var(--gold);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.92);
  transform: translate(-2px, -2px);
}

.section.dark .price-card:hover {
  border-color: var(--yellow-strong);
  box-shadow: 4px 4px 0 var(--yellow);
}

.dark .card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.14);
  color: var(--charcoal);
}

.dark .card p {
  color: var(--muted);
}

.section.dark .price-card p {
  color: #d8d6ce;
}

.section.dark .price-card h3 {
  color: var(--white);
  font-size: 32px;
  line-height: 40px;
  margin: 0 0 18px;
}

.card h3,
.price-card h3,
.faq-item h3 {
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 10px;
}

.tag {
  background: #ffefbd;
  border: 1px solid var(--yellow-strong);
  border-radius: 999px;
  color: var(--gold);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 14px;
  padding: 5px 10px;
}

.price {
  color: var(--yellow);
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 18px;
}

.price small {
  color: #e4e2e2;
  font-size: 0.95rem;
  font-weight: 700;
}

.feature-list {
  list-style: none;
  margin: 20px 0 24px;
  padding: 0;
}

.feature-list li {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 12px;
  padding: 16px 0;
}

.feature-list li::before {
  background: var(--yellow);
  border: 1px solid var(--gold);
  border-radius: 999px;
  box-shadow: inset 0 0 0 3px var(--panel);
  content: "";
  flex: 0 0 auto;
  height: 14px;
  width: 14px;
}

.dark .feature-list li {
  border-color: rgba(255, 255, 255, 0.1);
}

.section.dark .price-card .feature-list {
  margin-top: 24px;
}

.section.dark .price-card .feature-list li::before {
  box-shadow: inset 0 0 0 3px #1f2020;
}

.section.dark .price-card .button {
  margin-top: auto;
}

.workflow {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}

.workflow-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
}

.workflow-step strong {
  background: var(--yellow);
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--charcoal);
  display: inline-grid;
  height: 34px;
  margin-bottom: 12px;
  place-items: center;
  width: 34px;
}

.mockup-band {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr;
}

.screenshot {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 12px;
}

.placeholder {
  background:
    linear-gradient(135deg, rgba(255, 199, 44, 0.28), transparent 42%),
    #303031;
  border: 2px solid var(--black);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  color: var(--white);
  min-height: 280px;
  padding: 22px;
}

.inventory-bars {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.bar {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  height: 12px;
  overflow: hidden;
}

.bar span {
  background: var(--yellow);
  display: block;
  height: 100%;
}

.cta-band {
  background: #303031;
  border: 2px solid var(--black);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  color: var(--white);
  padding: 48px;
}

.cta-band p {
  color: #d8d8d8;
  max-width: 680px;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #fff4c6 0%, var(--cream) 100%);
  background-size: 24px 24px, auto;
}

.page-hero .container {
  max-width: 980px;
}

.breadcrumbs {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.breadcrumbs a {
  text-decoration: none;
}

.support-table {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.support-row {
  background: var(--white);
  display: grid;
  gap: 18px;
  grid-template-columns: 0.7fr 1.3fr;
  padding: 18px 22px;
}

.support-row + .support-row {
  border-top: 1px solid var(--line);
}

.legal {
  max-width: 860px;
}

.legal h2 {
  margin-top: 42px;
}

.site-footer {
  background: #303031;
  color: var(--white);
  padding: 56px 24px 28px;
}

.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.4fr repeat(4, 1fr);
}

.site-footer a {
  color: #d7d7d7;
  display: block;
  margin: 8px 0;
  text-decoration: none;
}

.site-footer p {
  color: #bcbcbc;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #a8a8a8;
  margin-top: 36px;
  padding-top: 22px;
}

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

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

@media (max-width: 920px) {
  .hero-grid,
  .section-heading,
  .mockup-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid.three,
  .grid.two,
  .workflow,
  .taskboard-preview {
    grid-template-columns: 1fr;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    background: var(--cream);
    border-bottom: 1px solid rgba(5, 5, 5, 0.1);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 18px 24px 24px;
    position: absolute;
    right: 0;
    top: 72px;
  }

  .nav-links.open {
    display: flex;
  }
}

@media (max-width: 620px) {
  .hero,
  .section,
  .page-hero {
    padding: 56px 18px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 42px;
    line-height: 50px;
  }

  .section-heading h2,
  .cta-band h2 {
    font-size: 32px;
    line-height: 40px;
  }

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

  .cta-band {
    padding: 28px;
  }

  .support-row {
    grid-template-columns: 1fr;
  }
}
