:root {
  --black: #101820;
  --black-2: #071109;
  --green: #009b3a;
  --green-2: #006b2f;
  --gold: #fed100;
  --gold-2: #f6b900;
  --ivory: #fffdf3;
  --page: #f4f7ee;
  --panel: #fffef8;
  --muted: #657061;
  --line: #d9dfcd;
  --shadow: 0 22px 60px rgba(16, 24, 32, 0.14);
  --focus: 0 0 0 3px rgba(254, 209, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.08) 0 12%, transparent 12% 100%),
    linear-gradient(90deg, rgba(0, 155, 58, 0.07) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(16, 24, 32, 0.08) 0 1px, transparent 1px 100%),
    var(--page);
  background-size: auto, 38px 38px, 38px 38px, auto;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

a:focus-visible,
button:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

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

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(255, 253, 243, 0.12);
  background: rgba(7, 17, 9, 0.92);
  color: var(--ivory);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.header-cta,
.primary-action,
.secondary-action,
.proof-row span,
.eyebrow,
.product-topbar,
.board-head button {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--ivory);
  font-weight: 900;
  text-decoration: none;
}

.brand-mark,
.rail-logo {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(145deg, transparent 0 42%, var(--gold) 42% 58%, transparent 58% 100%),
    linear-gradient(35deg, transparent 0 42%, var(--gold) 42% 58%, transparent 58% 100%),
    linear-gradient(135deg, var(--green) 0 50%, var(--black) 50% 100%);
  color: var(--ivory);
  font-size: 0.82rem;
  font-weight: 900;
}

.site-nav {
  gap: 6px;
}

.site-nav a,
.header-cta {
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 8px;
  color: rgba(255, 253, 243, 0.74);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.header-cta:hover {
  color: var(--ivory);
  background: rgba(0, 155, 58, 0.24);
}

.header-cta {
  gap: 8px;
  border: 1px solid rgba(254, 209, 0, 0.36);
  color: var(--gold);
}

svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero,
.section-shell,
.launch-section,
.showcase,
.compare-section,
.pricing-section,
.faq-section,
.value-band,
.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(34px, 5vw, 56px) 0 22px;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.eyebrow {
  width: fit-content;
  gap: 8px;
  margin-bottom: 0;
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  padding: 8px 10px;
  border: 1px solid rgba(0, 155, 58, 0.2);
  border-radius: 999px;
  background: rgba(255, 253, 243, 0.8);
}

h1 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.75rem, 5vw, 4.05rem);
  line-height: 0.92;
  font-weight: 900;
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 0;
  color: #405040;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-action,
.secondary-action {
  min-height: 50px;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.primary-action {
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--ivory);
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.18);
}

.primary-action:hover {
  background: var(--green-2);
  border-color: var(--green-2);
}

.secondary-action {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--black);
}

.secondary-action:hover {
  border-color: rgba(0, 155, 58, 0.35);
  background: #fafff4;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.proof-row span {
  gap: 8px;
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid rgba(16, 24, 32, 0.11);
  border-radius: 8px;
  background: rgba(255, 254, 248, 0.78);
  color: #384338;
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-product {
  border: 1px solid rgba(16, 24, 32, 0.18);
  border-radius: 8px;
  background: var(--black);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-topbar {
  justify-content: space-between;
  gap: 14px;
  min-height: 54px;
  padding: 0 16px;
  color: rgba(255, 253, 243, 0.7);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-topbar strong {
  color: var(--ivory);
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(254, 209, 0, 0.12);
}

.product-shell {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  min-height: 365px;
  background:
    linear-gradient(135deg, rgba(0, 155, 58, 0.2), transparent 48%),
    #f6f8ef;
}

.product-rail {
  padding: 14px 12px;
  background: #071109;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 16px;
  color: rgba(255, 253, 243, 0.74);
}

.rail-logo {
  width: 38px;
  height: 38px;
}

.product-board {
  padding: 16px;
  display: grid;
  gap: 12px;
  align-content: start;
}

.board-head {
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.board-head span,
.workspace-grid span,
.pipeline-preview span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.board-head h2 {
  margin: 4px 0 0;
  font-size: 1.5rem;
}

.board-head button {
  min-height: 38px;
  gap: 7px;
  border: 0;
  border-radius: 8px;
  padding: 0 12px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}

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

.workspace-grid article,
.pipeline-preview div {
  min-height: 84px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  display: grid;
  align-content: space-between;
}

.workspace-grid article:nth-child(1),
.workspace-grid article:nth-child(4) {
  box-shadow: inset 4px 0 0 var(--green);
}

.workspace-grid article:nth-child(2) {
  box-shadow: inset 4px 0 0 var(--gold);
}

.workspace-grid article:nth-child(3) {
  box-shadow: inset 4px 0 0 var(--black);
}

.workspace-grid strong {
  font-size: 1.05rem;
}

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

.pipeline-preview div {
  min-height: 86px;
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(254, 209, 0, 0.18) 0 5px, transparent 5px 100%),
    linear-gradient(135deg, var(--black) 0%, #17251b 100%);
}

.pipeline-preview span {
  color: rgba(255, 253, 243, 0.68);
}

.pipeline-preview strong {
  color: var(--gold);
  font-size: 1.7rem;
}

.value-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.value-band article {
  min-height: 140px;
  padding: 18px;
  border: 1px solid rgba(16, 24, 32, 0.16);
  border-radius: 8px;
  background: var(--panel);
  display: grid;
  align-content: space-between;
  box-shadow: 0 14px 36px rgba(16, 24, 32, 0.08);
}

.value-band span,
.pricing-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.value-band strong {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.05;
}

.value-band small {
  color: var(--muted);
  line-height: 1.5;
}

.section-shell,
.launch-section,
.showcase,
.pricing-section,
.faq-section {
  padding: clamp(52px, 8vw, 92px) 0;
}

.section-heading {
  max-width: 790px;
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.section-heading h2,
.launch-section h2,
.showcase h2,
.pricing-section h2,
.faq-section h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
}

.section-heading p:last-child {
  margin-bottom: 0;
  font-size: 1.04rem;
}

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

.feature-grid article,
.launch-steps article,
.faq-grid article {
  min-height: 220px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 16px 38px rgba(16, 24, 32, 0.07);
}

.feature-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
}

.feature-grid i,
.showcase-copy .eyebrow i,
.section-heading .eyebrow i {
  color: var(--green);
}

.feature-grid article:nth-child(3n) i,
.section-heading .eyebrow:nth-child(1) i {
  color: var(--gold-2);
}

.feature-grid h3,
.launch-steps h3,
.faq-grid h3 {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.feature-grid p,
.launch-steps p,
.faq-grid p,
.pricing-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.launch-section {
  display: grid;
}

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

.launch-steps article {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  position: relative;
  overflow: hidden;
}

.launch-steps article:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--green);
}

.launch-steps article:nth-child(2n):before {
  background: var(--gold);
}

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

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.showcase-copy {
  display: grid;
  gap: 16px;
}

.showcase-copy h2,
.showcase-copy p {
  margin-bottom: 0;
}

.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.swatch {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.swatch.black {
  background: var(--black);
  color: var(--ivory);
}

.swatch.green {
  background: var(--green);
  color: #fff;
}

.swatch.gold {
  background: var(--gold);
  color: var(--black);
}

.swatch.ivory {
  border: 1px solid var(--line);
  background: var(--ivory);
  color: var(--black);
}

.site-preview {
  position: relative;
  min-height: 480px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--black);
}

.site-preview img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.site-preview:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.72), rgba(16, 24, 32, 0.08)),
    linear-gradient(135deg, rgba(0, 155, 58, 0.5), transparent 52%);
}

.site-preview-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  width: min(330px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid rgba(255, 253, 243, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 243, 0.92);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.site-preview-card span {
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-preview-card strong {
  display: block;
  margin: 8px 0 14px;
  font-size: 1.5rem;
  line-height: 1.08;
}

.site-preview-card button {
  min-height: 42px;
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: var(--black);
  color: var(--ivory);
  font-weight: 900;
}

.compare-section {
  padding-top: clamp(48px, 7vw, 84px);
}

.comparison-table {
  overflow: hidden;
  border: 1px solid rgba(16, 24, 32, 0.14);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.comparison-table > div {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 14px;
  align-items: center;
  min-height: 66px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.comparison-table > div:last-child {
  border-bottom: 0;
}

.comparison-table .table-head {
  background: var(--black);
  color: var(--ivory);
  font-weight: 900;
}

.comparison-table strong {
  color: var(--green-2);
}

.comparison-table em {
  color: var(--muted);
  font-style: normal;
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.46fr) minmax(260px, 0.46fr);
  gap: 16px;
  align-items: stretch;
}

.pricing-copy {
  display: grid;
  align-content: center;
  gap: 14px;
}

.pricing-copy h2,
.pricing-copy p {
  margin-bottom: 0;
}

.pricing-card {
  min-height: 330px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(254, 209, 0, 0.18), transparent 45%),
    var(--panel);
  display: grid;
  align-content: space-between;
  gap: 16px;
  box-shadow: 0 16px 40px rgba(16, 24, 32, 0.08);
}

.pricing-card strong {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
}

.pricing-card.alt {
  background:
    linear-gradient(135deg, rgba(0, 155, 58, 0.16), transparent 52%),
    var(--black);
  color: var(--ivory);
}

.pricing-card.alt span,
.pricing-card.alt p {
  color: rgba(255, 253, 243, 0.7);
}

.pricing-card.alt .secondary-action {
  background: rgba(255, 253, 243, 0.96);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.site-footer {
  min-height: 96px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .hero,
  .showcase,
  .pricing-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .launch-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .site-nav a {
    flex: 0 0 auto;
  }

  .header-cta span {
    display: none;
  }

  .hero,
  .section-shell,
  .launch-section,
  .showcase,
  .compare-section,
  .pricing-section,
  .faq-section,
  .value-band,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 14px;
  }

  h1 {
    font-size: 2.75rem;
    line-height: 0.95;
  }

  .hero-lede {
    font-size: 0.95rem;
  }

  .hero-actions a {
    width: 100%;
    min-height: 46px;
  }

  .hero-product {
    display: none;
  }

  .proof-row {
    display: none;
  }

  .product-shell {
    grid-template-columns: 1fr;
  }

  .product-rail {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-content: center;
    min-height: 64px;
  }

  .workspace-grid,
  .pipeline-preview,
  .value-band,
  .feature-grid,
  .launch-steps,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .comparison-table .table-head {
    display: none;
  }

  .site-preview,
  .site-preview img {
    min-height: 380px;
  }

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