﻿/* ============================================================
   Build With Less AI Minimal Stylesheet
   No frameworks. System fonts. Mobile-first.
   ============================================================ */

/* --- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
               Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background: #fafaf8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Layout ----------------------------------------------- */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* --- Header ----------------------------------------------- */
.site-header {
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(216, 210, 197, 0.78);
  margin-bottom: 2.5rem;
  background: rgba(250, 250, 248, 0.92);
  box-shadow: 0 10px 32px rgba(34, 40, 34, 0.05);
}

.site-header .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.site-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  letter-spacing: 0;
}

.site-title:hover { color: #2d6a4f; }

.site-nav {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  align-items: center;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.36rem 0.72rem;
  border: 1px solid #ded8cc;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 6px 16px rgba(28, 35, 30, 0.05);
  font-size: 0.9rem;
  color: #373d38;
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.site-nav a:hover,
.site-nav a:focus {
  color: #1f5d42;
  border-color: #b8cfc1;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.95) inset, 0 10px 24px rgba(30, 82, 57, 0.11);
  text-decoration: none;
  transform: translateY(-1px);
}

/* --- Typography ------------------------------------------- */
h1 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  margin-bottom: 1rem;
  color: #111;
}

h2 {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 2.5rem 0 0.75rem;
  color: #1a1a1a;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.75rem 0 0.5rem;
  color: #333;
}

p { margin-bottom: 1.25rem; }

a {
  color: #2d6a4f;
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover { color: #1b4332; }

strong { font-weight: 600; color: #111; }

blockquote {
  border-left: 3px solid #2d6a4f;
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: #f0f4f1;
  border-radius: 0 4px 4px 0;
  font-style: italic;
  color: #444;
}

hr {
  border: none;
  border-top: 1px solid #e8e8e4;
  margin: 2rem 0;
}

/* --- Lists ------------------------------------------------ */
ul, ol { margin: 0.75rem 0 1.25rem 1.5rem; }
li { margin-bottom: 0.5rem; }

/* --- Code ------------------------------------------------- */
code {
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
  background: #f0f0ec;
  font-size: 0.9em;
}

pre {
  max-width: 100%;
  overflow-x: auto;
  margin: 1.25rem 0;
  padding: 0.9rem 1rem;
  border: 1px solid #e0e0dc;
  border-radius: 6px;
  background: #f5f5f2;
  line-height: 1.5;
  -webkit-overflow-scrolling: touch;
}

pre code {
  display: block;
  padding: 0;
  border-radius: 0;
  background: transparent;
  white-space: pre;
}

/* --- Tables ----------------------------------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.9rem;
}

th, td {
  text-align: left;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid #e0e0dc;
}

th {
  font-weight: 600;
  background: #f5f5f2;
  color: #333;
}

/* --- Images ----------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* --- Buttons / CTA ---------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}

.btn-primary {
  background: #2d6a4f;
  color: #fff;
  border: 2px solid #2d6a4f;
}

.btn-primary:hover {
  background: #1b4332;
  border-color: #1b4332;
  color: #fff;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: #2d6a4f;
  border: 2px solid #2d6a4f;
}

.btn-outline:hover {
  background: #2d6a4f;
  color: #fff;
  text-decoration: none;
}

/* --- Hero (homepage) -------------------------------------- */
.hero {
  padding: 2rem 0 1.5rem;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  color: #444;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* --- Path Cards (homepage / start-here) ------------------- */
.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.path-card {
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: 8px;
  padding: 1.5rem;
}

.path-card h3 { margin-top: 0; font-size: 1.15rem; }

.path-card p { font-size: 0.9rem; color: #555; margin-bottom: 1rem; }

.path-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #2d6a4f;
  margin-bottom: 0.5rem;
}

/* --- Trust Strip (homepage) ------------------------------- */
.trust-strip {
  background: #f0f4f1;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.trust-strip ul { margin: 0.5rem 0 0 1.25rem; }
.trust-strip li { font-size: 0.9rem; color: #444; }

/* --- Article Meta ----------------------------------------- */
.article-meta {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 1.5rem;
}

/* --- Footer ----------------------------------------------- */
.site-footer {
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid #e8e8e4;
  font-size: 0.85rem;
  color: #888;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

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

.site-footer a:hover { color: #2d6a4f; }

/* --- 404 -------------------------------------------------- */
.error-page { text-align: center; padding: 4rem 0; }
.error-page h1 { font-size: 3rem; margin-bottom: 0.5rem; }
.error-page p { font-size: 1.05rem; color: #555; max-width: 480px; margin: 0 auto 1.5rem; }

/* --- Section Nav ------------------------------------------ */
.section-intro {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 1.5rem;
}

.article-list { list-style: none; margin-left: 0; }

.article-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0ec;
}

.article-list li:last-child { border-bottom: none; }

.article-list a {
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
}

.article-list a:hover { text-decoration: underline; }

.article-list .list-desc {
  display: block;
  font-size: 0.85rem;
  color: #777;
  margin-top: 0.15rem;
  font-weight: 400;
}

/* --- Disclaimer Box --------------------------------------- */
.disclaimer-box {
  background: #fff8e6;
  border: 1px solid #f0d88a;
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: #6b5a20;
}

.disclaimer-box strong { color: #6b5a20; }

/* --- Contact Form ------------------------------------------ */
.contact-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.25rem 0 2.25rem;
  align-items: start;
}

.contact-form,
.contact-direct {
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 10px 28px rgba(34, 40, 34, 0.05);
}

.contact-direct {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(260px, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.contact-direct p {
  margin-bottom: 0;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  display: block;
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #27352d;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin: 0 0 1rem;
  padding: 0.72rem 0.8rem;
  border: 1px solid #d7d1c6;
  border-radius: 6px;
  background: #fff;
  color: #1a1a1a;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 9rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(45, 106, 79, 0.22);
  border-color: #2d6a4f;
}

.contact-form .btn {
  width: auto;
  border-radius: 6px;
}

.form-note {
  margin: 0.8rem 0 0;
  font-size: 0.85rem;
  color: #666;
}

.contact-direct h3 {
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.status-panel {
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 10px 28px rgba(34, 40, 34, 0.05);
}

.status-panel p:last-child {
  margin-bottom: 0;
}

/* --- Homepage Wide Layout --------------------------------- */
.home-container,
.site-header .container,
.site-footer .container {
  max-width: 1120px;
}

.home-container {
  margin: 0 auto;
  padding: 0 1.25rem;
}

.home-hero {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid #e8e8e4;
  background: #fbfbf7;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: #8a5b25;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-size: 3rem;
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 1.25rem;
}

.hero-lede {
  color: #3f4640;
  font-size: 1.08rem;
  max-width: 520px;
}

.proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.proof-points span {
  border: 1px solid #d8d2c5;
  border-radius: 999px;
  background: #fff;
  color: #555044;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.38rem 0.7rem;
}

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

.browser-frame,
.metric-card {
  background: #fff;
  border: 1px solid #d8d2c5;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(24, 34, 28, 0.12);
  overflow: hidden;
}

.browser-frame {
  margin: 0;
}

.frame-top {
  display: flex;
  gap: 0.38rem;
  padding: 0.65rem 0.8rem;
  background: #f2eee6;
  border-bottom: 1px solid #e2dacd;
}

.frame-top span {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: #9a8d7c;
}

.frame-top span:nth-child(1) { background: #ff5f57; }
.frame-top span:nth-child(2) { background: #ffbd2e; }
.frame-top span:nth-child(3) { background: #28c840; }

.main-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
  object-position: top left;
  border-radius: 0;
}

.metric-card {
  position: absolute;
  right: 1.2rem;
  bottom: 0;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 1rem;
  width: min(520px, 86%);
  padding: 0.85rem;
  align-items: center;
}

.metric-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top left;
  border-radius: 6px;
}

.metric-card strong,
.metric-card span {
  display: block;
}

.metric-card strong {
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}

.metric-card span {
  color: #5e635e;
  font-size: 0.82rem;
  line-height: 1.55;
}

.home-section {
  padding: 3.5rem 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 1.4rem;
}

.bridge-note {
  margin-top: 0.4rem;
  color: #545b55;
  font-size: 0.96rem;
  max-width: 660px;
}

.section-heading h2,
.proof-layout h2 {
  margin-top: 0;
  font-size: 2rem;
  line-height: 1.2;
}

.home-path-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.feature-card {
  min-height: 300px;
  padding: 1.65rem;
}

.feature-card h3 {
  font-size: 1.35rem;
}

.feature-card p {
  font-size: 0.96rem;
  line-height: 1.7;
}

.text-link {
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.proof-section {
  padding-top: 1.5rem;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 2.2rem;
  align-items: start;
}

.proof-layout p {
  color: #4d544f;
  font-size: 1rem;
  max-width: 540px;
}

.proof-layout .trust-strip {
  margin: 0;
}

.action-section {
  padding-top: 1.5rem;
}

.action-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 2rem;
  align-items: start;
}

.action-layout h2 {
  margin-top: 0;
  font-size: 2rem;
  line-height: 1.2;
}

.action-layout p {
  color: #4d544f;
  max-width: 620px;
}

.action-links {
  display: grid;
  gap: 0.8rem;
  padding: 1.25rem;
  border: 1px solid #e0dbcf;
  border-radius: 8px;
  background: #fff;
}

.data-shot {
  margin: 1.75rem 0;
}

.data-shot img {
  display: block;
  width: 100%;
  border: 1px solid #d8d2c5;
  box-shadow: 0 14px 38px rgba(24, 34, 28, 0.1);
}

.data-shot figcaption {
  margin-top: 0.55rem;
  color: #666;
  font-size: 0.84rem;
}

.stats-table {
  margin-top: 1.25rem;
}

.stats-table td,
.stats-table th {
  vertical-align: top;
}

.stats-grid,
.service-grid {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

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

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

.stat-card,
.service-card,
.cta-panel {
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: 8px;
  padding: 1.35rem;
  box-shadow: 0 10px 28px rgba(34, 40, 34, 0.04);
}

.stat-card strong {
  display: block;
  margin: 0.15rem 0 0.4rem;
  font-size: 1.2rem;
}

.stat-card p,
.service-card p {
  margin-bottom: 0;
  color: #555;
  font-size: 0.92rem;
}

.stat-label {
  color: #8a5b25;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card h2,
.cta-panel h2 {
  margin-top: 0;
}

.service-card ul {
  margin-bottom: 0;
}

.cta-panel {
  margin: 1.75rem 0;
}

.subscribe-section {
  padding-top: 1rem;
}

.subscribe-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  margin: 1.75rem 0;
  padding: 1.35rem;
  border: 1px solid #d8d2c5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(34, 40, 34, 0.06);
}

.subscribe-panel h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.subscribe-panel p {
  margin-bottom: 0;
  color: #555;
  font-size: 0.94rem;
}

.inline-subscribe {
  margin-top: 2rem;
}

.updates-list {
  list-style: none;
  margin-left: 0;
}

.updates-list li {
  padding: 1rem 0;
  border-bottom: 1px solid #eeeeea;
}

.updates-list li:last-child {
  border-bottom: none;
}

.updates-list time {
  display: block;
  color: #777;
  font-size: 0.82rem;
  margin-bottom: 0.15rem;
}


/* --- Tools Directory -------------------------------------- */
.tools-hero {
  background: #eef4f0;
  border-bottom: 1px solid #dde6df;
  padding: 3.75rem 0 3rem;
}

.tools-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 2rem;
  align-items: end;
}

.tools-hero h1 {
  max-width: 780px;
  margin: 0.35rem 0 1rem;
  font-size: 2.75rem;
  line-height: 1.08;
}

.tools-summary,
.tools-roadmap {
  background: #fff;
  border: 1px solid #dce3dd;
  border-radius: 8px;
  padding: 1.35rem;
}

.tools-summary strong,
.tools-summary span {
  display: block;
}

.tools-summary span {
  margin-top: 0.45rem;
  color: #555;
  font-size: 0.92rem;
}

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

.tool-card {
  background: #fff;
  border: 1px solid #e1e5df;
  border-radius: 8px;
  padding: 1.45rem;
  box-shadow: 0 12px 30px rgba(34, 40, 34, 0.05);
}

.tool-card-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.tool-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
}

.tool-card p {
  color: #4f5752;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  padding: 0.2rem 0.55rem;
  border: 1px solid #d5dfd8;
  border-radius: 999px;
  color: #315a43;
  background: #f3f8f5;
  font-size: 0.76rem;
  font-weight: 700;
}

.tool-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 1.25rem;
}

.tool-meta span {
  border: 1px solid #e4e1d8;
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  color: #5a5f59;
  font-size: 0.78rem;
}

.tool-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.tools-roadmap-section {
  padding-top: 0;
}

.tools-roadmap {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.tools-roadmap h2 {
  margin-top: 0.35rem;
}

.tools-roadmap ul {
  margin: 0;
}

/* --- Responsive ------------------------------------------- */
@media (max-width: 640px) {
  html { font-size: 16px; }

  .site-header .container { flex-direction: column; align-items: flex-start; }

  .hero h1 { font-size: 1.7rem; }

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

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

  .contact-panel { grid-template-columns: 1fr; }

  .subscribe-panel {
    grid-template-columns: 1fr;
  }

  .site-footer .container { flex-direction: column; text-align: center; }

  .container { padding: 0 1rem; }

  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
}

@media (max-width: 920px) {
  .home-hero {
    padding: 2.5rem 0 2rem;
  }

  .hero-layout,
  .proof-layout,
  .action-layout,
  .tools-hero-layout,
  .tools-roadmap {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 680px;
  }

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

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

  .metric-card {
    position: static;
    width: 100%;
    margin-top: 0.9rem;
  }
}

@media (max-width: 640px) {
  .home-container {
    padding: 0 1rem;
  }

  .home-path-grid {
    grid-template-columns: 1fr;
  }

  .tool-grid {
    grid-template-columns: 1fr;
  }

  .tools-hero h1 {
    font-size: 2rem;
  }

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

  .metric-card {
    grid-template-columns: 1fr;
  }

  .metric-card img {
    aspect-ratio: 16 / 9;
  }

  .home-section {
    padding: 2.5rem 0;
  }

  .section-heading h2,
  .proof-layout h2,
  .action-layout h2 {
    font-size: 1.55rem;
  }
}


