:root {
  --ink: #17211d;
  --muted: #5e6a63;
  --panel: #fbfaf4;
  --paper: #f5f1e6;
  --line: #d7d0bd;
  --field: #fffdf7;
  --green: #0f5d48;
  --green-2: #6da68b;
  --lime: #d7f277;
  --amber: #f4c75d;
  --rust: #9b4f2f;
  --shadow: 0 28px 80px rgba(23, 33, 29, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(215, 242, 119, 0.42), transparent 24rem),
    radial-gradient(circle at 92% 8%, rgba(109, 166, 139, 0.28), transparent 22rem),
    linear-gradient(180deg, #f8f4e9 0%, #f2ead9 42%, #f8f4e9 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(23, 33, 29, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 33, 29, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 70%);
}

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

p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 8vw, 7.2rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2.2rem, 4.6vw, 4.6rem);
  max-width: 13ch;
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.site-header {
  position: sticky;
  top: 2.35rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(23, 33, 29, 0.1);
  background: rgba(248, 244, 233, 0.84);
  backdrop-filter: blur(18px);
}

.launch-banner {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0.58rem 1rem;
  color: #fffdf7;
  background: var(--rust);
  font-size: 0.82rem;
  font-weight: 760;
  text-align: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, var(--lime) 0 14%, transparent 15%),
    repeating-radial-gradient(circle at 32% 35%, transparent 0 6px, rgba(15, 93, 72, 0.62) 7px 8px, transparent 9px 14px),
    var(--panel);
  box-shadow: inset 0 0 0 4px rgba(255, 253, 247, 0.92);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a:hover,
.header-cta:hover {
  color: var(--green);
}

.header-cta {
  border: 1px solid rgba(23, 33, 29, 0.18);
  border-radius: 999px;
  padding: 0.72rem 1rem;
  font-weight: 720;
  background: rgba(255, 253, 247, 0.62);
}

.section-pad {
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1rem, 4vw, 3.5rem);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(21rem, 0.78fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 74px);
}

.hero-copy {
  display: grid;
  gap: 1.45rem;
}

.eyebrow {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 43rem;
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.3rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  font-weight: 780;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fffdf7;
  background: var(--ink);
  box-shadow: 0 18px 40px rgba(23, 33, 29, 0.22);
}

.button.primary:hover {
  background: var(--green);
}

.button:disabled,
.button[disabled] {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
  box-shadow: none;
}

.button.secondary {
  border: 1px solid rgba(23, 33, 29, 0.16);
  background: rgba(255, 253, 247, 0.68);
}

.trust-note {
  max-width: 38rem;
  color: #6a5d43;
  font-size: 0.94rem;
}

.access-map {
  display: grid;
  place-items: center;
}

.map-frame {
  position: relative;
  width: min(100%, 35rem);
  min-height: 42rem;
  overflow: hidden;
  border: 1px solid rgba(23, 33, 29, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(255, 253, 247, 0.88), rgba(232, 223, 201, 0.8)),
    var(--panel);
  box-shadow: var(--shadow);
}

.contour-lines {
  position: absolute;
  inset: -18%;
  opacity: 0.72;
  background:
    repeating-radial-gradient(ellipse at 64% 34%, transparent 0 14px, rgba(15, 93, 72, 0.18) 15px 17px, transparent 18px 28px),
    repeating-radial-gradient(ellipse at 28% 74%, transparent 0 18px, rgba(155, 79, 47, 0.16) 19px 21px, transparent 22px 34px),
    linear-gradient(120deg, rgba(215, 242, 119, 0.45), transparent 42%);
  transform: rotate(-11deg);
}

.map-frame::before,
.map-frame::after {
  content: "";
  position: absolute;
  z-index: 1;
  background: rgba(23, 33, 29, 0.2);
  transform-origin: center;
}

.map-frame::before {
  left: 23%;
  top: 34%;
  width: 52%;
  height: 1px;
  transform: rotate(19deg);
}

.map-frame::after {
  left: 47%;
  top: 36%;
  width: 1px;
  height: 39%;
  transform: rotate(-16deg);
}

.map-node {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 0.28rem;
  width: 11rem;
  padding: 1rem;
  border: 1px solid rgba(23, 33, 29, 0.18);
  border-radius: 1.15rem;
  background: rgba(255, 253, 247, 0.86);
  box-shadow: 0 16px 40px rgba(23, 33, 29, 0.13);
}

.map-node span {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.map-node strong {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.map-node.users {
  top: 12%;
  left: 10%;
}

.map-node.core {
  top: 38%;
  left: 50%;
  width: 13rem;
  color: #fffdf7;
  background: var(--green);
  transform: translateX(-50%);
}

.map-node.core span {
  color: var(--lime);
}

.map-node.apps {
  top: 18%;
  right: 8%;
}

.map-node.network {
  bottom: 20%;
  left: 8%;
}

.map-node.boards {
  right: 9%;
  bottom: 10%;
}

.section-heading {
  display: grid;
  gap: 1.15rem;
  max-width: 58rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading.narrow {
  max-width: 48rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.problem-grid article {
  min-height: 11rem;
  padding: 1.2rem;
  border: 1px solid rgba(23, 33, 29, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 247, 0.6);
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  font-weight: 720;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 1rem;
  align-items: stretch;
}

.product-card,
.pricing-panel,
.request-form,
.fit-card,
.faq-list details,
.pillar-grid article {
  border: 1px solid rgba(23, 33, 29, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 247, 0.68);
}

.product-card {
  display: grid;
  gap: 1.3rem;
  padding: clamp(1.3rem, 3vw, 2.2rem);
}

.product-card.featured {
  color: #fffdf7;
  border-color: rgba(255, 253, 247, 0.18);
  background:
    radial-gradient(circle at 82% 12%, rgba(215, 242, 119, 0.24), transparent 16rem),
    var(--green);
  box-shadow: var(--shadow);
}

.product-card.featured p,
.product-card.featured li {
  color: rgba(255, 253, 247, 0.82);
}

.product-card.muted {
  background: rgba(251, 250, 244, 0.72);
}

.product-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.product-name {
  font-weight: 840;
  letter-spacing: -0.03em;
}

.tag {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 0.44rem 0.68rem;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.76rem;
  font-weight: 820;
}

.tag.ghost {
  border: 1px solid rgba(23, 33, 29, 0.16);
  background: transparent;
}

.check-list,
.fit-card ul,
.pricing-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li,
.fit-card li,
.pricing-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
  line-height: 1.55;
}

.check-list li::before,
.fit-card li::before,
.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: var(--green-2);
}

.product-card.featured .check-list li::before {
  background: var(--lime);
}

.guardrail {
  border-top: 1px solid rgba(23, 33, 29, 0.12);
  padding-top: 1rem;
  font-size: 0.92rem;
}

.product-card.featured .guardrail {
  border-color: rgba(255, 253, 247, 0.22);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.pillar-grid article {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  min-height: 17rem;
  padding: 1.2rem;
}

.pillar-grid span {
  color: var(--rust);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.pillar-grid h3 {
  font-size: 1.25rem;
}

.pillar-grid p {
  font-size: 0.95rem;
}

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

.fit-card {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.fit-card h3 {
  margin-bottom: 1.2rem;
}

.fit-card.good {
  background: rgba(244, 249, 222, 0.86);
}

.fit-card.not-yet {
  background: rgba(255, 246, 232, 0.82);
}

.fit-card.not-yet li::before {
  background: var(--rust);
}

.pricing-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.75fr);
  gap: 2rem;
  padding: clamp(1.4rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(23, 33, 29, 0.94), rgba(15, 93, 72, 0.94)),
    var(--ink);
  box-shadow: var(--shadow);
}

.pricing-panel h2,
.pricing-panel p,
.pricing-panel li {
  color: #fffdf7;
}

.pricing-panel p,
.pricing-panel li {
  opacity: 0.78;
}

.pricing-panel .eyebrow {
  color: var(--lime);
  opacity: 1;
}

.pricing-list li::before {
  background: var(--lime);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  padding: 1.1rem 1.25rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 780;
  letter-spacing: -0.025em;
}

.faq-list details p {
  margin-top: 0.85rem;
  max-width: 58rem;
}

.request {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(20rem, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.request-copy {
  position: sticky;
  top: 9rem;
  display: grid;
  gap: 1rem;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: rgba(255, 253, 247, 0.78);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 0.42rem;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 720;
}

label.wide,
.form-button,
.form-note {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 33, 29, 0.16);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1rem;
  color: var(--ink);
  background: var(--field);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(215, 242, 119, 0.76);
  border-color: var(--green);
}

.form-button {
  border: 0;
  cursor: pointer;
}

.form-note {
  color: #766b55;
  font-size: 0.88rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1rem, 4vw, 3.5rem);
  border-top: 1px solid rgba(23, 33, 29, 0.12);
}

.footer-brand {
  margin-bottom: 0.8rem;
}

.footer-note {
  max-width: 30rem;
  font-size: 0.88rem;
  text-align: right;
}

@media (max-width: 1080px) {
  .problem-grid,
  .pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-grid article:last-child,
  .pillar-grid article:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .hero,
  .product-grid,
  .pricing-panel,
  .request {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .map-frame {
    min-height: 34rem;
  }

  .request-copy {
    position: static;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-note {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 2.65rem;
    padding: 0.85rem 1rem;
  }

  .launch-banner {
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .header-cta {
    display: none;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .map-frame {
    min-height: 31rem;
    border-radius: var(--radius-md);
  }

  .map-node {
    width: 9.6rem;
    padding: 0.82rem;
  }

  .map-node.core {
    width: 11rem;
  }

  .map-node.apps,
  .map-node.boards {
    right: 4%;
  }

  .problem-grid,
  .pillar-grid,
  .fit-grid,
  .request-form {
    grid-template-columns: 1fr;
  }

  .problem-grid article:last-child,
  .pillar-grid article:last-child {
    grid-column: auto;
  }

  .problem-grid article,
  .pillar-grid article {
    min-height: auto;
  }
}

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