* {
  box-sizing: border-box;
}

:root {
  color: #142019;
  background: #fbfaf5;
  font-family: "Outfit", "Aptos", "Segoe UI", system-ui, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  min-width: 320px;
  margin: 0;
  color: #142019;
  background:
    linear-gradient(90deg, rgba(20, 32, 25, 0.045) 1px, transparent 1px),
    #fbfaf5;
  background-size: 72px 72px;
}

a {
  color: inherit;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 14px clamp(16px, 5vw, 64px);
  background: rgba(251, 250, 245, 0.92);
  border-bottom: 1px solid rgba(20, 32, 25, 0.12);
  backdrop-filter: blur(16px);
}

.brand,
.site-nav a,
.cta-row a,
.link-grid a,
.footer a {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 11px;
  border-radius: 8px;
  color: #3d4a3f;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(20, 32, 25, 0.08);
}

.nav-cta,
.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 8px;
  font-weight: 950;
}

.nav-cta,
.primary {
  color: #fffaf0;
  background: #142019;
}

.secondary {
  border: 1px solid rgba(20, 32, 25, 0.14);
  background: rgba(255, 255, 255, 0.7);
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 74px) 0 72px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
}

.kicker {
  margin: 0 0 14px;
  color: #806038;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  font-size: clamp(38px, 5.6vw, 68px);
  line-height: 1;
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.lede {
  max-width: 720px;
  margin: 22px 0 0;
  color: #4b594d;
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.45;
}

.hero-card,
.panel {
  border: 1px solid rgba(20, 32, 25, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.8);
  box-shadow: 0 24px 60px rgba(20, 32, 25, 0.08);
}

.hero-card {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.lead-form {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

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

.field-full {
  grid-column: 1 / -1;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #183726;
  font-weight: 850;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 12px 13px;
  color: #17241a;
  background: #fffdf8;
  border: 1px solid rgba(24, 55, 38, 0.22);
  border-radius: 8px;
  font: inherit;
}

.lead-form textarea {
  min-height: 170px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(214, 177, 109, 0.28);
  border-color: rgba(24, 55, 38, 0.52);
  box-shadow: 0 0 0 1px rgba(24, 55, 38, 0.18);
}

.lead-form button {
  min-height: 52px;
  color: #fffaf0;
  background: #183726;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(24, 55, 38, 0.18);
}

.lead-form button:hover {
  background: #102418;
  transform: translateY(-1px);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #4d5b50;
  font-size: 15px;
  font-weight: 850;
}

.form-status[data-state="error"] {
  color: #9a2e1d;
}

.contact-form {
  padding: clamp(18px, 2.6vw, 28px);
  border: 1px solid rgba(24, 55, 38, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.contact-section {
  margin-top: 30px;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 36, 24, 0.2);
  border-radius: 8px;
  background: #102418;
  box-shadow: 0 30px 90px rgba(16, 36, 24, 0.16);
}

.contact-intro {
  min-height: 100%;
  padding: clamp(28px, 4.5vw, 56px);
  color: #fffaf0;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 250, 240, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 20% 0%, rgba(205, 235, 165, 0.18), transparent 28%),
    #102418;
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.contact-intro h2 {
  margin: 0;
  max-width: 440px;
  color: #fffaf0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.95;
}

.contact-intro p:not(.kicker) {
  max-width: 430px;
  color: rgba(255, 250, 240, 0.76);
}

.contact-intro .kicker {
  color: #d6b16d;
}

.contact-proof {
  display: grid;
  gap: 10px;
  margin-top: clamp(24px, 4vw, 42px);
}

.contact-proof span {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
  color: rgba(255, 250, 240, 0.78);
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.06);
  font-size: 14px;
  font-weight: 800;
}

.contact-proof strong {
  color: #fffaf0;
  font-size: 18px;
  line-height: 1;
}

.contact-card .contact-form {
  min-height: 100%;
  margin-top: 0;
  padding: clamp(24px, 4vw, 44px);
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 253, 248, 0.98)),
    #fffdf8;
}

.contact-note {
  margin: 0;
  color: #5a665c;
  font-size: 14px;
}

.product-showcase {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(20, 32, 25, 0.16);
  border-radius: 8px;
  background: #102418;
  box-shadow: 0 30px 80px rgba(20, 32, 25, 0.16);
}

.product-showcase img {
  display: block;
  width: 100%;
}

.browser-shot img {
  height: clamp(340px, 42vw, 520px);
  object-fit: cover;
  object-position: top center;
}

.phone-shot {
  width: min(100%, 390px);
  justify-self: end;
}

.phone-shot img {
  height: clamp(520px, 58vw, 700px);
  object-fit: cover;
  object-position: top center;
}

.shot-caption {
  margin: 0;
  padding: 12px 14px;
  color: rgba(255, 250, 240, 0.82);
  background: #102418;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.app-visual {
  overflow: hidden;
  border: 1px solid rgba(20, 32, 25, 0.15);
  border-radius: 8px;
  background: #17241a;
  box-shadow: 0 28px 70px rgba(20, 32, 25, 0.16);
}

.app-visual-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  color: rgba(255, 250, 240, 0.76);
  border-bottom: 1px solid rgba(255, 250, 240, 0.12);
  font-size: 13px;
  font-weight: 900;
}

.app-visual-body {
  display: grid;
  gap: 14px;
  padding: clamp(16px, 3vw, 24px);
  background:
    linear-gradient(135deg, rgba(218, 180, 108, 0.14), transparent 36%),
    #fffdf7;
}

.shot-tabs,
.mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shot-tabs span,
.mini-actions span,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  color: #183726;
  border: 1px solid rgba(24, 55, 38, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 950;
}

.shot-tabs span:first-child,
.status-pill {
  color: #fffaf0;
  background: #183726;
}

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

.metric {
  min-height: 88px;
  padding: 14px;
  border: 1px solid rgba(20, 32, 25, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.metric span {
  display: block;
  color: #6a765f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin-top: 8px;
  color: #142019;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
}

.review-list,
.club-list,
.workflow-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.review-list li,
.club-list li,
.workflow-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  color: #314035;
  border: 1px solid rgba(20, 32, 25, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.workflow-list li {
  grid-template-columns: auto minmax(0, 1fr);
}

.workflow-list em,
.club-list em {
  color: #6a765f;
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}

.step-dot {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fffaf0;
  border-radius: 8px;
  background: #183726;
  font-size: 13px;
  font-weight: 950;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(20, 32, 25, 0.14);
  border-radius: 8px;
  background: rgba(20, 32, 25, 0.14);
}

.price-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: clamp(20px, 2.4vw, 28px);
  background: #fffdf7;
}

.price-card.featured {
  background: #183726;
  color: #fffaf0;
}

.price-card h2,
.price-card p {
  margin: 0;
}

.price-card p,
.price-card li {
  color: inherit;
}

.price-card ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin: 0;
}

.price {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 950;
  line-height: 0.95;
}

.price small {
  font-size: 16px;
  font-weight: 850;
}

.price-card .primary {
  align-self: end;
}

.price-card.featured .primary {
  color: #183726;
  background: #fffaf0;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(20, 32, 25, 0.14);
  border-radius: 8px;
  background: rgba(20, 32, 25, 0.14);
}

.legal-grid a {
  display: grid;
  gap: 8px;
  min-height: 128px;
  padding: 22px;
  background: #fffdf7;
  text-decoration: none;
}

.legal-grid strong {
  font-size: 20px;
}

.legal-grid span {
  color: #536050;
  line-height: 1.4;
}

.hero-card strong {
  font-size: 26px;
  line-height: 1;
}

.hero-card p,
.panel p,
.feature p,
.note {
  color: #536050;
  line-height: 1.5;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.section {
  margin-top: clamp(34px, 6vw, 72px);
}

.feature-grid,
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(20, 32, 25, 0.14);
  border-radius: 8px;
  background: rgba(20, 32, 25, 0.14);
}

.feature,
.link-grid a,
.panel {
  padding: clamp(22px, 3vw, 34px);
  background: #fffdf7;
}

.feature span {
  color: #806038;
  font-family: "JetBrains Mono", "Cascadia Mono", monospace;
  font-size: 12px;
  font-weight: 900;
}

.feature strong,
.link-grid a {
  display: block;
  margin-top: 10px;
  font-size: 21px;
  font-weight: 950;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: start;
}

.venue-hero {
  align-items: start;
}

.venue-page {
  max-width: 100vw;
  overflow-x: hidden;
}

.venue-page main,
.venue-page .footer {
  width: min(1120px, calc(100vw - 32px));
}

.venue-page .hero-card,
.venue-page .panel,
.venue-page .contact-card {
  min-width: 0;
}

.venue-offer-card {
  background:
    linear-gradient(135deg, rgba(24, 55, 38, 0.98), rgba(20, 32, 25, 0.96)),
    #183726;
  color: #fffaf0;
}

.venue-offer-card p {
  color: rgba(255, 250, 240, 0.76);
}

.venue-offer-label {
  width: fit-content;
  padding: 7px 10px;
  color: #183726;
  border-radius: 8px;
  background: #d6b16d;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.venue-offer-card dl {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin: 4px 0 0;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.14);
}

.venue-offer-card dl div {
  display: grid;
  grid-template-columns: minmax(86px, 0.42fr) minmax(0, 1fr);
  gap: 10px;
  padding: 12px;
  background: rgba(255, 250, 240, 0.06);
}

.venue-offer-card dt,
.venue-offer-card dd {
  margin: 0;
}

.venue-offer-card dt {
  color: rgba(255, 250, 240, 0.56);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.venue-offer-card dd {
  color: #fffaf0;
  font-weight: 900;
}

.venue-story,
.venue-calculator {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
}

.venue-story > div:first-child p,
.venue-calc-copy p {
  color: #536050;
  font-size: 18px;
  line-height: 1.56;
}

.venue-proof-list {
  display: grid;
  gap: 12px;
}

.venue-proof-list article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 8px 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(20, 32, 25, 0.13);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.82);
}

.venue-proof-list span {
  grid-row: span 2;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fffaf0;
  border-radius: 8px;
  background: #183726;
  font-size: 13px;
  font-weight: 950;
}

.venue-proof-list strong {
  color: #142019;
  font-size: 20px;
  line-height: 1.1;
}

.venue-proof-list p {
  margin: 0;
  color: #536050;
  line-height: 1.45;
}

.venue-calculator {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(20, 32, 25, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.92), rgba(255, 253, 247, 0.8)),
    #fffdf7;
  box-shadow: 0 24px 70px rgba(20, 32, 25, 0.08);
}

.venue-calc-panel {
  display: grid;
  gap: 14px;
}

.venue-calc-panel label {
  display: grid;
  gap: 8px;
  color: #183726;
  font-weight: 900;
}

.venue-calc-panel input {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: #142019;
  border: 1px solid rgba(24, 55, 38, 0.22);
  border-radius: 8px;
  background: #fffdf8;
  font: inherit;
  font-size: 18px;
  font-weight: 900;
}

.venue-calc-panel input:focus {
  outline: 3px solid rgba(214, 177, 109, 0.28);
  border-color: rgba(24, 55, 38, 0.52);
}

.venue-calc-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 4px;
  border: 1px solid rgba(20, 32, 25, 0.14);
  border-radius: 8px;
  background: rgba(20, 32, 25, 0.14);
}

.venue-calc-results div {
  min-height: 126px;
  padding: 16px;
  background: #183726;
}

.venue-calc-results span {
  display: block;
  min-height: 34px;
  color: rgba(255, 250, 240, 0.68);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.25;
  text-transform: uppercase;
}

.venue-calc-results strong {
  display: block;
  margin-top: 12px;
  color: #fffaf0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 0.96;
}

.venue-deliverables .feature {
  min-height: 230px;
}

.venue-workflow .panel h2,
.venue-boundary-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.6vw, 44px);
}

.venue-demo-card .contact-proof strong {
  font-size: 20px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 46px;
  color: #536050;
  border-top: 1px solid rgba(20, 32, 25, 0.12);
}

.footer span {
  margin-right: auto;
  color: #142019;
  font-weight: 950;
}

@media (max-width: 880px) {
  .site-nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero,
  .split,
  .venue-story,
  .venue-calculator {
    grid-template-columns: 1fr;
  }

  .phone-shot {
    width: min(100%, 360px);
    justify-self: start;
  }

  .browser-shot img {
    height: 360px;
  }

  .phone-shot img {
    height: 620px;
  }

  .feature-grid,
  .link-grid,
  .metric-grid,
  .price-grid,
  .legal-grid,
  .venue-calc-results {
    grid-template-columns: 1fr;
  }

  .venue-calculator {
    padding: 20px;
  }

  .venue-page .b2c-public-nav {
    max-width: 100vw;
    overflow: hidden;
  }

  .venue-page .b2c-public-links,
  .venue-page .b2c-store-pills {
    min-width: 0;
  }

  .venue-page .cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .venue-page .cta-row a {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .venue-offer-card dl div,
  .venue-proof-list article {
    grid-template-columns: 1fr;
  }

  .venue-proof-list span {
    grid-row: auto;
  }

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

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

  .contact-intro {
    padding: 24px;
  }

  .contact-intro h2 {
    max-width: min(100%, 340px);
    font-size: clamp(34px, 10vw, 44px);
  }

  .contact-card .contact-form {
    padding: 22px;
  }

  .contact-proof span {
    grid-template-columns: 70px minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .venue-page main,
  .venue-page .footer {
    width: min(calc(100vw - 32px), 358px);
  }

  .venue-page .hero-card,
  .venue-page .venue-calculator,
  .venue-page .contact-card {
    width: 100%;
    max-width: 100%;
  }

  .venue-offer-card p,
  .venue-boundary-panel p,
  .venue-calc-copy p,
  .venue-story > div:first-child p {
    overflow-wrap: anywhere;
  }
}
