:root {
  --bg: #f7f4ef;
  --surface: #fffaf3;
  --surface-strong: #ffffff;
  --text: #17211d;
  --muted: #61706a;
  --border: #ded8cb;
  --accent: #356d5b;
  --accent-strong: #244f42;
  --accent-soft: #dcebe5;
  --success: #255a3f;
  --success-bg: #e0f2e8;
  --warning: #826000;
  --warning-bg: #fff6d5;
  --shadow: 0 18px 45px rgba(23, 33, 29, 0.08);
  --radius: 22px;
  --container: 1120px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: var(--accent-strong);
  text-underline-offset: 0.18em;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(53, 109, 91, 0.38);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  margin: 0 0 0.45em;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 5.8rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
  font-size: 1.28rem;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2rem, 780px);
}

.skip-link {
  position: absolute;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-150%);
  padding: 0.75rem 1rem;
  background: var(--text);
  color: #ffffff;
  border-radius: 999px;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(222, 216, 203, 0.72);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 2.75rem;
  color: var(--text);
  font-weight: 850;
  text-decoration: none;
}

.brand-logo-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--text);
  border-radius: 0.75rem;
  flex-shrink: 0;
  box-shadow: 0 7px 16px rgba(23, 33, 29, 0.12);
}

.brand-logo {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  display: inline-flex;
  padding: 0.55rem 0.7rem;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 650;
  text-decoration: none;
  border-radius: 999px;
}

.site-nav a:hover {
  color: var(--text);
  background: var(--accent-soft);
}

.hero {
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.eyebrow,
.card-kicker {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 780px;
  color: var(--accent-strong);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 740;
  line-height: 1.2;
}

.hero-text,
.section-heading p,
.narrow p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--accent-strong);
  color: #ffffff;
}

.button-secondary {
  background: var(--surface-strong);
  border-color: var(--border);
  color: var(--text);
}

.button-secondary:hover {
  background: var(--accent-soft);
  color: var(--text);
}

.hero-card,
.tool-card,
.cta-box {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: clamp(1.4rem, 4vw, 2rem);
}

.check-list {
  padding-left: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.7rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-strong);
  font-weight: 900;
}

.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.section-alt {
  background: rgba(255, 250, 243, 0.75);
  border-block: 1px solid rgba(222, 216, 203, 0.68);
}

.section-heading {
  margin-bottom: 1.6rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.tool-card {
  overflow: hidden;
}

.tool-preview {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 150px;
  display: grid;
  place-items: center;
  background:
          linear-gradient(135deg, rgba(53, 109, 91, 0.16), rgba(255, 250, 243, 0.86)),
          repeating-linear-gradient(45deg, rgba(53, 109, 91, 0.1) 0 1px, transparent 1px 16px);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tool-preview span {
  position: relative;
  z-index: 2;
  padding: 0.45rem 0.7rem;
  background: rgba(255, 250, 243, 0.72);
  border: 1px solid rgba(53, 109, 91, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.tool-preview-icon {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.tool-preview-icon-left {
  left: 1.05rem;
  bottom: 0.45rem;
  width: 4.6rem;
  height: 4.6rem;
  opacity: 0.22;
  transform: rotate(-10deg);
}

.tool-preview-money {
  background:
          linear-gradient(135deg, rgba(53, 109, 91, 0.18), rgba(255, 250, 243, 0.92)),
          repeating-linear-gradient(45deg, rgba(53, 109, 91, 0.08) 0 1px, transparent 1px 16px);
}

.tool-preview-planning {
  background:
          linear-gradient(135deg, rgba(130, 96, 0, 0.10), rgba(255, 250, 243, 0.92)),
          repeating-linear-gradient(45deg, rgba(130, 96, 0, 0.08) 0 1px, transparent 1px 16px);
}

.tool-preview-icon-timeline {
  left: 50%;
  top: 0.75rem;
  width: 86%;
  height: auto;
  opacity: 0.16;
  transform: translateX(-50%) rotate(-2deg);
}

.tool-preview-icon-todo {
  right: 0.85rem;
  bottom: -0.75rem;
  width: 5.4rem;
  height: 5.4rem;
  opacity: 0.14;
  transform: rotate(7deg);
}

.tool-body {
  padding: 1.4rem;
}

.tool-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.38rem 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 780;
  line-height: 1;
}

.badge-live {
  background: var(--success-bg);
  color: var(--success);
}

.badge-planned {
  background: var(--warning-bg);
  color: var(--warning);
}

.section-cta {
  background: var(--accent-strong);
  color: #ffffff;
}

.section-cta .eyebrow,
.section-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
  padding: clamp(1.4rem, 4vw, 2rem);
}

.cta-box .button-primary {
  background: #ffffff;
  color: var(--accent-strong);
}

.site-footer {
  padding: 3rem 0;
  background: #111916;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a {
  color: #ffffff;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: start;
}

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

.footer-muted {
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 860px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem 0;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero-grid,
  .card-grid,
  .cta-box,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .cta-box .button {
    justify-self: start;
  }
}

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

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

  .button {
    width: 100%;
  }
}