:root {
  --ink: #17231d;
  --muted: #5b675f;
  --line: #dce5dc;
  --soft: #f6f8f4;
  --white: #ffffff;
  --green: #2f7d46;
  --blue: #275f9f;
  --gold: #d69e2e;
  --red: #b44b3f;
  --shadow: 0 18px 45px rgba(23, 35, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(16px, 4vw, 48px);
  background: rgba(246, 248, 244, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

nav a {
  padding: 8px 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 28px;
  align-items: center;
  padding: 44px 0 28px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 6vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.85rem, 3.8vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
}

.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.55;
}

.hero-actions,
.contact-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.try-page {
  background:
    linear-gradient(180deg, rgba(246, 248, 244, 0.92), rgba(246, 248, 244, 1)),
    radial-gradient(circle at 18% 12%, rgba(47, 125, 70, 0.12), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(39, 95, 159, 0.1), transparent 30%);
}

.try-hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 22px;
  align-items: center;
  padding: 52px 0 30px;
}

.try-summary {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 18px;
}

.try-summary h2 {
  font-size: 1.65rem;
}

.try-summary ul {
  margin: 0;
  padding-left: 20px;
}

.try-summary li {
  color: var(--muted);
  line-height: 1.45;
  margin: 9px 0;
}

.demo-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  border-top: 1px solid var(--line);
}

.demo-steps article {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 16px;
}

.demo-steps span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.demo-steps p {
  color: var(--muted);
  line-height: 1.45;
}

.try-form {
  max-width: 880px;
}

.button,
button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
}

.button.primary,
button[type="submit"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button-light {
  background: #eef3ee;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.proof-strip span,
.system-checks span {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 7px 10px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.product-panel {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 16px;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.panel-top span {
  color: var(--muted);
  font-weight: 800;
}

.status-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.status-row article {
  border: 1px solid var(--line);
  background: #f9fbf8;
  padding: 12px;
}

.status-row span,
.status-row small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-row strong {
  display: block;
  margin: 4px 0;
  font-size: 1.65rem;
}

.board-preview {
  display: grid;
  gap: 8px;
}

.board-preview div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-left: 5px solid var(--gold);
  background: #fffaf0;
  padding: 10px;
}

.board-preview div:nth-child(2) {
  border-left-color: var(--blue);
  background: #f0f6ff;
}

.board-preview div:nth-child(3) {
  border-left-color: var(--red);
  background: #fff3f2;
}

.board-preview div:nth-child(4) {
  border-left-color: var(--green);
  background: #f1fbf4;
}

.board-preview span {
  color: var(--muted);
  font-weight: 800;
}

.system-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.section {
  padding: 64px 0;
}

.intro-band,
.split,
.story,
.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.intro-band p,
.split p,
.story p,
.demo-section p,
.contact-band p {
  color: var(--muted);
  line-height: 1.55;
}

.section-head {
  max-width: 780px;
  margin-bottom: 22px;
}

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

.feature-grid article,
.beta-card,
.story-facts article,
.interest-form,
.demo-notes {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 16px;
}

.feature-grid span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-grid p,
.beta-card li,
.demo-notes li {
  color: var(--muted);
  line-height: 1.45;
}

.beta-card ul,
.demo-notes ol {
  margin: 0;
  padding-left: 20px;
}

.story-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.story-facts strong,
.story-facts span {
  display: block;
}

.story-facts strong {
  font-size: 1.7rem;
}

.story-facts span {
  color: var(--muted);
  margin-top: 4px;
}

.demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 14px;
  align-items: start;
}

.interest-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fbfcfb;
  color: var(--ink);
  padding: 10px;
}

textarea {
  resize: vertical;
}

.wide,
.form-actions,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding: 20px clamp(16px, 4vw, 48px);
  color: var(--muted);
}

footer strong {
  color: var(--ink);
}

@media (max-width: 900px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
  }

  .hero,
  .try-hero,
  .intro-band,
  .split,
  .story,
  .demo-grid,
  .feature-grid,
  .demo-steps {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  main {
    width: min(100% - 20px, 1180px);
  }

  .status-row,
  .story-facts,
  .interest-form {
    grid-template-columns: 1fr;
  }

  .wide,
  .form-actions,
  .form-status {
    grid-column: auto;
  }

  h1 {
    font-size: 2.25rem;
  }
}
