@font-face {
  font-family: "Reportio Sans";
  src: url("../fonts/ReportioSans-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Reportio Sans";
  src: url("../fonts/ReportioSans-Demi.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Reportio Serif";
  src: url("../fonts/ReportioSerif-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --bg: #f6f4ee;
  --surface: #ffffff;
  --ink: #07140d;
  --muted: #627166;
  --line: #dedbd1;
  --green: #167333;
  --green-2: #35d160;
  --green-soft: #e7f6e8;
  --field: #35d160;
  --field-dark: #167333;
  --facility: #4f86e8;
  --facility-dark: #244fba;
  --inventory: #e8696b;
  --inventory-dark: #b83a40;
  --guest: #9374e0;
  --guest-dark: #6541bd;
  --lime: #d8ff73;
  --cream: #fffaf0;
  --dark: #07120b;
  --blue-soft: #eaf1ff;
  --red-soft: #fff0ef;
  --purple-soft: #f4efff;
  --shadow: 0 28px 90px rgba(7, 18, 11, .18);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Reportio Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  font-size: 17px;
  letter-spacing: -.01em;
}

body.nav-open {
  overflow: hidden;
}

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

p, h1, h2, h3, figure {
  margin: 0;
}

button, input, select {
  font: inherit;
}

.container {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 96px 0;
}

.compact-top {
  padding-top: 24px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1220px, calc(100% - 28px));
  margin: 26px auto 0;
  padding: 9px 10px 9px 12px;
  background: rgba(255, 250, 240, .86);
  border: 1px solid rgba(222, 219, 209, .86);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  box-shadow: 0 16px 50px rgba(7, 18, 11, .10);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -.02em;
  font-size: 17px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  box-shadow: inset 0 0 0 1px rgba(7, 18, 11, .12), 0 10px 20px rgba(22, 115, 51, .18);
}

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

.site-nav a,
.nav-dropdown > button {
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  color: #34483b;
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.site-nav a:hover,
.nav-dropdown > button:hover,
.nav-dropdown.open > button {
  background: var(--green-soft);
  color: var(--green);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  min-width: 270px;
  padding: 10px;
  border: 1px solid rgba(7, 18, 11, .10);
  border-radius: 20px;
  background: rgba(255, 250, 240, .96);
  box-shadow: 0 24px 70px rgba(7, 18, 11, .18);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease;
}

.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
}

.menu-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.menu-dot.field {
  background: var(--field);
}

.menu-dot.facility {
  background: var(--facility);
}

.menu-dot.inventory {
  background: var(--inventory);
}

.menu-dot.guest {
  background: var(--guest);
}

.site-nav .nav-cta {
  color: #fff;
  background: var(--dark);
}

.site-nav .nav-cta:hover {
  color: #fff;
  background: var(--green);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: calc(100vh - 34px);
  padding-top: 78px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 16%, rgba(53, 209, 96, .30), transparent 25%),
    radial-gradient(circle at 14% 80%, rgba(216, 255, 115, .32), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, #f6f4ee 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  height: auto;
  background:
    linear-gradient(rgba(7, 18, 11, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 18, 11, .045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 30%, #000, transparent 75%);
  pointer-events: none;
}

.hero.hero-dark {
  color: #fff;
  background:
    radial-gradient(circle at 78% 12%, rgba(216, 255, 115, .24), transparent 30%),
    radial-gradient(circle at 18% 84%, rgba(53, 209, 96, .16), transparent 28%),
    linear-gradient(145deg, #06110a 0%, #0a1b10 58%, #102b19 100%);
}

.hero.hero-dark::before {
  background:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 26%, #000, transparent 78%);
}

.hero.hero-dark .hero-lead {
  color: #fff;
}

.hero.hero-dark .hero-text,
.hero.hero-dark .hero-proof-card p {
  color: rgba(255, 255, 255, .72);
}

.hero.hero-dark .button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
}

.hero.hero-dark .hero-points span,
.hero.hero-dark .hero-proof-card {
  color: #fff;
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .07);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 74px;
  align-items: center;
}

.eyebrow {
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow.light {
  color: rgba(255, 255, 255, .78);
}

h1 {
  max-width: 760px;
  font-size: clamp(72px, 8.7vw, 142px);
  line-height: .78;
  letter-spacing: -.095em;
  font-weight: 900;
}

h1 span {
  display: block;
}

h2 {
  font-size: clamp(38px, 4.8vw, 74px);
  line-height: .92;
  letter-spacing: -.072em;
  font-weight: 900;
}

h3 {
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 900;
}

.hero-lead {
  max-width: 640px;
  margin-top: 34px;
  font-size: clamp(24px, 2.5vw, 35px);
  line-height: 1.08;
  letter-spacing: -.055em;
  color: #14251a;
  font-weight: 700;
}

.hero-text {
  max-width: 580px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -.01em;
  cursor: pointer;
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: inset 0 0 0 1px rgba(7, 18, 11, .12), 0 18px 36px rgba(22, 115, 51, .18);
}

.button-primary:hover {
  background: #c9ff42;
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, .72);
  border-color: rgba(7, 18, 11, .13);
  backdrop-filter: blur(14px);
}

.button-dark {
  width: 100%;
  color: #fff;
  background: var(--ink);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.hero-points span {
  padding: 9px 13px;
  border: 1px solid rgba(7, 18, 11, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .56);
  color: #3b4d42;
  font-size: 13px;
  font-weight: 900;
}

.hero-proof-card {
  max-width: 520px;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(7, 18, 11, .10);
  border-radius: 18px;
  background: rgba(255, 255, 255, .48);
  box-shadow: 0 18px 46px rgba(7, 18, 11, .08);
  backdrop-filter: blur(18px);
}

.hero-proof-card strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.035em;
}

.hero-proof-card p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 15px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -24px -18px 42px 44px;
  z-index: -1;
  border-radius: 42px;
  background:
    radial-gradient(circle at 74% 18%, rgba(216, 255, 115, .72), transparent 30%),
    linear-gradient(135deg, #0c1b12, #167333);
  box-shadow: 0 34px 90px rgba(7, 18, 11, .22);
  transform: rotate(-2deg);
}

.visual-label {
  position: absolute;
  top: -18px;
  right: 36px;
  z-index: 4;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 18px 36px rgba(7, 18, 11, .16);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.browser-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 32px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 34px 90px rgba(7, 18, 11, .24);
  backdrop-filter: blur(18px);
}

.browser-top {
  display: flex;
  gap: 7px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(7, 18, 11, .08);
  background: #111f16;
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d8ff73;
  opacity: .9;
}

.dashboard-preview {
  padding: 24px;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.preview-header small,
.report-row small,
.asset-card small,
.phone-card small,
.review-card small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.preview-header strong {
  display: block;
  margin-top: 4px;
  font-size: 38px;
  letter-spacing: -.04em;
  font-weight: 900;
}

.status-pill {
  height: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-size: 12px;
  font-weight: 850;
}

.report-row {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 14px;
  border: 1px solid rgba(7, 18, 11, .08);
  border-radius: 16px;
  background: #fff;
  margin-top: 10px;
  box-shadow: 0 8px 24px rgba(7, 18, 11, .045);
}

.report-row strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
}

.report-row em {
  padding: 6px 9px;
  border-radius: 999px;
  color: #415046;
  background: #edf4ec;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.report-row.urgent .dot {
  background: #e2614d;
}

.photo-slot {
  display: grid;
  place-items: center;
  min-height: 220px;
  border: 1px dashed rgba(7, 18, 11, .24);
  border-radius: var(--radius);
  color: #405246;
  background:
    radial-gradient(circle at 70% 14%, rgba(216, 255, 115, .48), transparent 26%),
    linear-gradient(135deg, rgba(22, 115, 51, .12), transparent 42%),
    repeating-linear-gradient(45deg, rgba(7, 18, 11, .035) 0 10px, transparent 10px 20px),
    #fbf8ef;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
}

.hero-photo {
  margin-top: 18px;
  min-height: 188px;
}

.case-visual {
  position: relative;
  min-height: 640px;
  isolation: isolate;
}

.case-visual::before {
  content: "";
  position: absolute;
  inset: 16px -20px 70px 76px;
  z-index: -1;
  border-radius: 46px;
  background:
    radial-gradient(circle at 78% 14%, rgba(216, 255, 115, .70), transparent 30%),
    linear-gradient(135deg, #123d20, #06110a);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .32);
  transform: rotate(-2deg);
}

.case-photo-slot {
  display: grid;
  place-items: center;
  min-height: 410px;
  margin: 42px 26px 0 0;
  border: 1px dashed rgba(255, 255, 255, .24);
  border-radius: 34px;
  color: rgba(255, 255, 255, .70);
  background:
    radial-gradient(circle at 72% 14%, rgba(216, 255, 115, .22), transparent 28%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .055) 0 10px, transparent 10px 20px),
    rgba(255, 255, 255, .045);
  text-align: center;
  font-size: 14px;
  font-weight: 900;
}

.case-card {
  position: absolute;
  left: 0;
  right: 92px;
  bottom: 22px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 6%, rgba(216, 255, 115, .18), transparent 28%),
    rgba(8, 22, 13, .92);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
  backdrop-filter: blur(18px);
}

.case-top,
.case-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.case-top span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.case-top strong {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.case-card h3 {
  margin-top: 18px;
  max-width: 520px;
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: .88;
  letter-spacing: -.07em;
}

.case-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, .68);
}

.case-location {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 18px;
  background: rgba(255, 255, 255, .055);
}

.case-location > span {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, transparent 46%, rgba(7, 18, 11, .26) 47% 53%, transparent 54%),
    linear-gradient(0deg, transparent 46%, rgba(7, 18, 11, .26) 47% 53%, transparent 54%),
    var(--lime);
}

.case-location strong,
.case-meta strong {
  display: block;
  font-weight: 900;
  letter-spacing: -.025em;
}

.case-location small,
.case-meta small,
.qr-tile small {
  display: block;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 800;
}

.case-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.case-flow em {
  padding: 9px 8px;
  border-radius: 999px;
  color: #d9eadc;
  background: rgba(255, 255, 255, .08);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.case-flow em:last-child {
  color: var(--ink);
  background: var(--lime);
}

.case-meta {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.qr-tile {
  position: absolute;
  right: -2px;
  bottom: 80px;
  width: 184px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 24px;
  color: #fff;
  background: rgba(255, 255, 255, .10);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .26);
  backdrop-filter: blur(18px);
}

.qr-tile .qr-placeholder {
  width: 86px;
  height: 86px;
  margin: 0 0 12px;
  background: #fff;
}

.qr-tile .qr-placeholder span {
  background: var(--ink);
}

.qr-tile strong {
  display: block;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -.04em;
}

.qr-tile small {
  margin-top: 6px;
}

.photo-slot.large {
  min-height: 430px;
}

.photo-slot.small {
  min-height: 190px;
}

.phone-card {
  position: absolute;
  right: -18px;
  bottom: 26px;
  width: 226px;
  padding: 20px 18px;
  border: 8px solid var(--dark);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 32px 78px rgba(7, 18, 11, .32);
  text-align: center;
}

.phone-notch {
  width: 62px;
  height: 8px;
  margin: -8px auto 18px;
  border-radius: 999px;
  background: #0b1710;
}

.phone-card p {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.phone-card strong {
  display: block;
  margin: 6px 0 14px;
  font-size: 20px;
  letter-spacing: -.04em;
}

.qr-placeholder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  width: 116px;
  height: 116px;
  margin: 0 auto 14px;
  padding: 12px;
  border-radius: 18px;
  background: var(--ink);
}

.qr-placeholder span {
  border-radius: 6px;
  background: #fff;
}

.quote-strip {
  border: 0;
  background: var(--dark);
  color: #fff;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.quote-grid figure {
  position: relative;
  min-height: 248px;
  padding: 34px 30px;
  border-left: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 86% 10%, rgba(216, 255, 115, .16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, 0));
}

.quote-grid figure:first-child {
  border-left: 0;
}

blockquote {
  margin: 0;
  margin-top: 62px;
  font-family: "Reportio Serif", Georgia, serif;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.04;
  letter-spacing: -.035em;
  font-style: italic;
  font-weight: 400;
}

.quote-no {
  position: absolute;
  top: 28px;
  left: 28px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

figcaption {
  margin-top: 14px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.split {
  display: grid;
  grid-template-columns: .86fr 1fr;
  gap: 96px;
  align-items: start;
}

.copy-stack {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.throughline {
  padding: 0 0 110px;
}

.throughline-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(7, 18, 11, .10);
  border-radius: 30px;
  background: #fffaf0;
  box-shadow: 0 24px 70px rgba(7, 18, 11, .10);
}

.throughline-step {
  min-height: 250px;
  padding: 28px;
  border-left: 1px solid var(--line);
}

.throughline-step:first-child {
  border-left: 0;
}

.throughline-step span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.throughline-step strong {
  display: block;
  margin-top: 46px;
  font-size: 34px;
  letter-spacing: -.065em;
  font-weight: 900;
}

.throughline-step p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
}

.friction-section {
  background: var(--dark);
  color: #fff;
}

.friction-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.friction-section .eyebrow {
  color: var(--lime);
}

.friction-section h2 {
  max-width: 720px;
  color: #fff;
}

.friction-cards {
  display: grid;
  gap: 12px;
}

.friction-cards article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 0%, rgba(216, 255, 115, .12), transparent 32%),
    rgba(255, 255, 255, .055);
}

.friction-cards strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 900;
}

.friction-cards p {
  margin-top: 10px;
  color: rgba(255, 255, 255, .68);
  font-size: 16px;
}

.modules-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 8%, rgba(216, 255, 115, .26), transparent 26%),
    #fffaf0;
  color: var(--ink);
}

.modules-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 18, 11, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 18, 11, .045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 50% 20%, #000, transparent 78%);
  pointer-events: none;
}

.modules-section > .container {
  position: relative;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 18px;
  color: color-mix(in srgb, currentColor 62%, transparent);
  font-size: 20px;
  line-height: 1.42;
}

.section-heading.compact {
  max-width: 720px;
}

.module-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.module-nav a {
  padding: 10px 14px;
  border: 1px solid rgba(7, 18, 11, .10);
  border-radius: 999px;
  color: #405246;
  background: rgba(255, 255, 255, .62);
  font-size: 14px;
  font-weight: 900;
}

.module-nav a:hover {
  color: var(--ink);
  background: var(--lime);
}

.module-nav a.field:hover {
  background: var(--field);
}

.module-nav a.facility:hover {
  background: var(--facility);
  color: #fff;
}

.module-nav a.inventory:hover {
  background: var(--inventory);
  color: #fff;
}

.module-nav a.guest:hover {
  background: var(--guest);
  color: #fff;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.module-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 16px 42px rgba(7, 18, 11, .055);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.module-card > * {
  position: relative;
  z-index: 2;
}

.module-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(216, 255, 115, .16);
}

.module-field::after {
  background: color-mix(in srgb, var(--field) 28%, transparent);
}

.module-facility::after {
  background: color-mix(in srgb, var(--facility) 30%, transparent);
}

.module-inventory::after {
  background: color-mix(in srgb, var(--inventory) 30%, transparent);
}

.module-guest::after {
  background: color-mix(in srgb, var(--guest) 34%, transparent);
}

.module-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 58px rgba(7, 18, 11, .12);
  background: #fff;
}

.module-field:hover {
  border-color: color-mix(in srgb, var(--field) 70%, transparent);
}

.module-facility:hover {
  border-color: color-mix(in srgb, var(--facility) 70%, transparent);
}

.module-inventory:hover {
  border-color: color-mix(in srgb, var(--inventory) 70%, transparent);
}

.module-guest:hover {
  border-color: color-mix(in srgb, var(--guest) 70%, transparent);
}

.module-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: #fff;
  background: var(--field);
  margin-bottom: 18px;
}

.module-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.module-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.module-facility .module-icon {
  background: var(--facility);
}

.module-inventory .module-icon {
  background: var(--inventory);
}

.module-guest .module-icon {
  background: var(--guest);
}

.module-card h3 {
  margin-top: 12px;
  font-size: 23px;
}

.module-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  flex: 1;
}

.module-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--field-dark);
  background: color-mix(in srgb, var(--field) 15%, #fff);
  font-size: 13px;
  font-weight: 900;
}

.module-link span {
  margin-left: 6px;
  transition: transform .2s ease;
}

.module-card:hover .module-link span {
  transform: translateX(4px);
}

.module-facility .module-link {
  color: var(--facility-dark);
  background: color-mix(in srgb, var(--facility) 14%, #fff);
}

.module-inventory .module-link {
  color: var(--inventory-dark);
  background: color-mix(in srgb, var(--inventory) 14%, #fff);
}

.module-guest .module-link {
  color: var(--guest-dark);
  background: color-mix(in srgb, var(--guest) 15%, #fff);
}

.module-page {
  --module-color: var(--field);
  --module-dark: var(--field-dark);
  --module-soft: rgba(53, 209, 96, .14);
}

.theme-field-page {
  --module-color: var(--field);
  --module-dark: var(--field-dark);
  --module-soft: rgba(53, 209, 96, .16);
  background: #f6f4ee;
}

.theme-facility-page {
  --module-color: var(--facility);
  --module-dark: var(--facility-dark);
  --module-soft: rgba(79, 134, 232, .14);
  background: #f6f8ff;
}

.theme-inventory-page {
  --module-color: var(--inventory);
  --module-dark: var(--inventory-dark);
  --module-soft: rgba(232, 105, 107, .15);
  background: #fff6f3;
}

.theme-guest-page {
  --module-color: var(--guest);
  --module-dark: var(--guest-dark);
  --module-soft: rgba(147, 116, 224, .15);
  background: #f7f2ff;
}

.module-page .brand-mark,
.module-page .button-primary {
  background: var(--module-color);
  color: #fff;
}

.module-page .eyebrow,
.module-page .site-nav a:hover,
.module-page .nav-dropdown > button:hover,
.module-page .nav-dropdown.open > button {
  color: var(--module-dark);
}

.module-page .module-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 34px);
  background:
    radial-gradient(circle at 78% 16%, color-mix(in srgb, var(--module-color) 30%, transparent), transparent 25%),
    radial-gradient(circle at 12% 86%, color-mix(in srgb, var(--module-color) 18%, transparent), transparent 30%),
    linear-gradient(180deg, #fffaf0 0%, color-mix(in srgb, var(--module-color) 8%, #f6f4ee) 100%);
}

.module-page .module-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(7, 18, 11, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 18, 11, .045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 30%, #000, transparent 75%);
  pointer-events: none;
}

.module-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 76px;
  align-items: center;
}

.module-visual {
  position: relative;
  isolation: isolate;
}

.module-visual::before {
  content: "";
  position: absolute;
  inset: -26px -18px 40px 44px;
  z-index: -1;
  border-radius: 42px;
  background:
    radial-gradient(circle at 74% 18%, color-mix(in srgb, var(--module-color) 74%, #fff), transparent 30%),
    linear-gradient(135deg, var(--dark), var(--module-dark));
  box-shadow: 0 34px 90px rgba(7, 18, 11, .22);
  transform: rotate(-2deg);
}

.floating-proof-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(360px, calc(100% - 48px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(145deg, var(--module-dark), var(--dark));
  box-shadow: 0 28px 64px rgba(7, 18, 11, .30);
}

.floating-proof-card small {
  display: block;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.floating-proof-card strong {
  display: block;
  margin-top: 10px;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -.05em;
}

.floating-proof-card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, .76);
}

.module-deep-section {
  background: #fffaf0;
}

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

.module-deep-grid article {
  min-height: 430px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid color-mix(in srgb, var(--module-color) 30%, rgba(7, 18, 11, .10));
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% 10%, color-mix(in srgb, var(--module-color) 20%, transparent), transparent 28%),
    #fff;
  box-shadow: 0 20px 60px rgba(7, 18, 11, .08);
}

.module-deep-grid span,
.module-info-grid span {
  background: var(--module-dark);
}

.module-deep-grid span {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.module-deep-grid h2 {
  margin-top: 54px;
}

.module-deep-grid p {
  max-width: 620px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.42;
}

.module-feature-section {
  background: color-mix(in srgb, var(--module-color) 8%, #f6f4ee);
}

.module-info-grid.wide {
  grid-template-columns: repeat(3, 1fr);
}

.module-info-grid.wide article {
  position: relative;
  overflow: hidden;
  padding-top: 108px;
}

.module-info-grid.wide article::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  height: 64px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 24px 28px, #fff 0 7px, transparent 8px),
    radial-gradient(circle at calc(100% - 26px) 26px, rgba(255, 255, 255, .7) 0 9px, transparent 10px),
    linear-gradient(135deg, color-mix(in srgb, var(--module-color) 88%, #fff), var(--module-dark));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .24), 0 14px 28px color-mix(in srgb, var(--module-color) 20%, transparent);
}

.module-info-grid.wide article::after {
  content: "";
  position: absolute;
  top: 42px;
  left: 54px;
  width: calc(100% - 108px);
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
}

.module-proof-band {
  padding: 80px 0;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--module-color) 44%, transparent), transparent 32%),
    linear-gradient(145deg, var(--dark), var(--module-dark));
}

.proof-band-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: end;
}

.proof-band-grid h2 {
  max-width: 780px;
}

.proof-band-grid p {
  color: rgba(255, 255, 255, .74);
  font-size: 21px;
  line-height: 1.38;
}

.theme-guest-page {
  background: #fff8f0;
}

.theme-guest-page .module-hero {
  color: #fff;
  background: #080f0a;
}

.theme-guest-page .module-hero::before {
  background:
    linear-gradient(90deg, rgba(8, 15, 10, .86), rgba(8, 15, 10, .34) 46%, rgba(8, 15, 10, .05)),
    radial-gradient(circle at 74% 10%, rgba(147, 116, 224, .20), transparent 34%);
  mask-image: none;
  z-index: 1;
}

.theme-guest-page .module-hero .container {
  position: relative;
  z-index: 2;
}

.theme-guest-page .module-hero .eyebrow,
.theme-guest-page .module-hero .hero-lead {
  color: rgba(255, 255, 255, .78);
}

.theme-guest-page .module-hero .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .10);
}

.guest-hero-visual::before {
  display: none;
}

.guest-photo {
  display: block;
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 32px 88px rgba(7, 18, 11, .22);
}

.guest-hero-photo {
  height: min(660px, 72vh);
  min-height: 500px;
  border-radius: 0;
  box-shadow: none;
}

.guest-showcase {
  background: #fff8f0;
}

.section-heading.compact > p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 19px;
}

.guest-image-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 16px;
  margin-top: 38px;
}

.guest-image-card {
  overflow: hidden;
  border: 1px solid rgba(7, 18, 11, .10);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(7, 18, 11, .08);
}

.guest-image-card.large {
  grid-row: span 2;
}

.guest-image-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.guest-image-card.large img {
  height: 566px;
}

.guest-image-card div {
  padding: 22px;
}

.guest-image-card span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--guest-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.guest-image-card h3 {
  margin-top: 14px;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.05em;
}

.guest-image-card p {
  margin-top: 10px;
  color: var(--muted);
}

.guest-response-section,
.staff-feedback-section {
  background:
    radial-gradient(circle at 84% 12%, rgba(147, 116, 224, .18), transparent 28%),
    #f7f2ff;
}

.staff-feedback-section {
  background:
    radial-gradient(circle at 16% 12%, rgba(147, 116, 224, .18), transparent 28%),
    #fffaf0;
}

.guest-split {
  display: grid;
  grid-template-columns: .86fr 1fr;
  gap: 70px;
  align-items: center;
}

.guest-split.reverse {
  grid-template-columns: 1fr .86fr;
}

.guest-split.reverse > div {
  order: 2;
}

.guest-split h2 {
  max-width: 700px;
}

.guest-split p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.42;
}

.guest-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 30px;
}

.guest-stat-row div {
  padding: 18px;
  border: 1px solid rgba(7, 18, 11, .10);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
}

.guest-stat-row strong {
  display: block;
  color: var(--guest-dark);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.05em;
}

.guest-stat-row span {
  display: block;
  margin-top: 8px;
  color: #46594d;
  font-size: 13px;
  font-weight: 800;
}

.guest-manager-card {
  position: relative;
}

.guest-manager-card .review-card {
  right: 22px;
  bottom: 22px;
}

.guest-manager-card .guest-photo,
.staff-photo {
  min-height: 520px;
}

.module-detail {
  border-top: 1px solid rgba(7, 18, 11, .10);
  --module-color: var(--field);
  --module-dark: var(--field-dark);
  --module-soft: rgba(53, 209, 96, .14);
}

.alt-bg {
  background: #fffaf0;
}

.guest-band {
  background:
    radial-gradient(circle at 18% 10%, rgba(216, 255, 115, .35), transparent 28%),
    linear-gradient(180deg, #fffaf0, #eef8eb);
}

.theme-field {
  --module-color: var(--field);
  --module-dark: var(--field-dark);
  --module-soft: rgba(53, 209, 96, .16);
  background:
    radial-gradient(circle at 88% 8%, rgba(53, 209, 96, .22), transparent 28%),
    #f6f4ee;
}

.theme-facility {
  --module-color: var(--facility);
  --module-dark: var(--facility-dark);
  --module-soft: rgba(79, 134, 232, .14);
  background:
    radial-gradient(circle at 12% 10%, rgba(79, 134, 232, .20), transparent 28%),
    #f6f8ff;
}

.theme-inventory {
  --module-color: var(--inventory);
  --module-dark: var(--inventory-dark);
  --module-soft: rgba(232, 105, 107, .15);
  background:
    radial-gradient(circle at 86% 12%, rgba(232, 105, 107, .20), transparent 28%),
    #fff6f3;
}

.theme-guest {
  --module-color: var(--guest);
  --module-dark: var(--guest-dark);
  --module-soft: rgba(147, 116, 224, .15);
}

.detail-grid {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 76px;
  align-items: center;
}

.detail-grid.reverse {
  grid-template-columns: 1fr .82fr;
}

.detail-grid.reverse .detail-copy {
  order: 2;
}

.detail-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.42;
}

.module-detail .eyebrow {
  color: var(--module-dark);
}

.module-detail h2 {
  max-width: 760px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #24362a;
  font-weight: 900;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--module-color);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.module-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.module-info-grid article {
  min-height: 210px;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--module-color) 32%, rgba(7, 18, 11, .10));
  border-radius: 18px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--module-color) 12%, #fff), rgba(255, 255, 255, .72));
  box-shadow: 0 14px 34px rgba(7, 18, 11, .06);
}

.module-info-grid span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--module-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.module-info-grid p {
  margin-top: 14px;
  color: #34463a;
  font-size: 15px;
  line-height: 1.42;
  font-weight: 700;
}

.module-detail .photo-slot {
  border-color: color-mix(in srgb, var(--module-color) 46%, transparent);
  background:
    radial-gradient(circle at 70% 14%, color-mix(in srgb, var(--module-color) 38%, transparent), transparent 26%),
    linear-gradient(135deg, color-mix(in srgb, var(--module-color) 13%, transparent), transparent 42%),
    repeating-linear-gradient(45deg, rgba(7, 18, 11, .035) 0 10px, transparent 10px 20px),
    #fbf8ef;
}

.asset-visual,
.guest-visual {
  position: relative;
}

.asset-card {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 2;
  width: min(330px, calc(100% - 56px));
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--module-color) 30%, rgba(7, 18, 11, .10));
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 26px 60px rgba(7, 18, 11, .18);
}

.asset-card strong {
  display: block;
  margin-top: 4px;
  font-size: 26px;
  letter-spacing: -.04em;
  font-weight: 900;
}

.asset-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.mini-history {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.mini-history span {
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--module-dark);
  background: color-mix(in srgb, var(--module-color) 16%, #fff);
  font-size: 12px;
  font-weight: 800;
}

.review-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(330px, calc(100% - 48px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(145deg, var(--guest-dark), var(--dark));
  box-shadow: 0 28px 64px rgba(7, 18, 11, .30);
}

.review-card strong {
  display: block;
  font-size: 18px;
}

.review-card p {
  margin: 10px 0;
  color: rgba(255, 255, 255, .9);
}

.review-card small {
  color: rgba(255, 255, 255, .68);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.benefit-grid div,
.use-grid article {
  padding: 22px;
  border: 1px solid rgba(7, 18, 11, .10);
  border-radius: 20px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 12px 34px rgba(7, 18, 11, .055);
}

.benefit-grid strong {
  display: block;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.benefit-grid p,
.use-grid p,
.team-grid p {
  margin-top: 8px;
  color: var(--muted);
}

.use-cases {
  background: #fffaf0;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.use-grid h3 {
  font-size: 19px;
}

.use-grid article {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.use-photo {
  display: block;
  width: 100%;
  height: 172px;
  object-fit: cover;
  background: var(--green-soft);
}

.use-body {
  padding: 22px;
}

.team-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(53, 209, 96, .18), transparent 25%),
    #f1f5ed;
}

.team-grid {
  display: grid;
  grid-template-columns: .86fr 1fr;
  gap: 60px;
  align-items: start;
}

.team-grid > div:first-child p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.role-list {
  display: grid;
  gap: 10px;
}

.role-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(7, 18, 11, .12);
}

.role-list strong {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -.035em;
}

.role-list span {
  color: var(--muted);
}

.cta-section {
  padding: 112px 0;
  background: #fffaf0;
}

.cta-card {
  overflow: hidden;
  position: relative;
  padding: clamp(38px, 7vw, 86px);
  border-radius: 36px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 0%, rgba(216, 255, 115, .45), transparent 32%),
    radial-gradient(circle at 16% 84%, rgba(53, 209, 96, .20), transparent 28%),
    linear-gradient(145deg, #07120b, #123e20 68%, #167333);
  box-shadow: var(--shadow);
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 70% 20%, #000, transparent 70%);
  pointer-events: none;
}

.cta-card > * {
  position: relative;
}

.cta-card h2 {
  max-width: 850px;
}

.cta-card p {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .84);
  font-size: 21px;
  line-height: 1.4;
}

.cta-card small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, .66);
}

.demo-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  margin-top: 34px;
}

.demo-form label {
  display: grid;
  gap: 8px;
}

.demo-form span {
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.demo-form input,
.demo-form select {
  width: 100%;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 16px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  padding: 0 14px;
  outline: none;
}

.demo-form select option {
  color: var(--ink);
}

.demo-form input::placeholder {
  color: rgba(255, 255, 255, .54);
}

.demo-form .button {
  align-self: end;
  height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  background: var(--lime);
  color: var(--ink);
}

.site-footer {
  color: #b7c8bb;
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  padding: 58px 0 34px;
}

.footer-brand {
  color: #fff;
}

.footer-grid p {
  max-width: 390px;
  margin-top: 14px;
  color: #7e8f83;
}

.footer-grid strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
}

.footer-grid a:not(.brand) {
  display: block;
  margin-top: 9px;
  color: #91a495;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #5f7465;
  font-size: 13px;
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

@media (max-width: 980px) {
  /* Header ima backdrop-filter pa je containing block za pozicionirane
     potomke — menu anchoramo ABSOLUTE na sam header (top:100%), ne fixed
     na viewport. Tako je uvijek poravnat sa širinom headera, bez magic
     brojeva, i ostaje zalijepljen uz sticky header pri scrollu. */
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    max-height: calc(100vh - 120px);
    max-height: calc(100dvh - 120px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fffaf0;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-toggle {
    display: block;
    position: relative;
  }

  .nav-toggle span {
    transition: transform .2s ease, opacity .2s ease;
  }

  body.nav-open .nav-toggle span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .site-nav a {
    padding: 14px;
  }

  .nav-dropdown > button {
    width: 100%;
    padding: 14px;
    text-align: left;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 4px 0 8px;
    padding: 6px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: grid;
    /* Ponistava translate(-50%,0) iz desktop open-pravila, koje inace na
       mobitelu gura otvoreni meni pola sirine ulijevo / izvan ekrana. */
    transform: none;
  }

  .hero-grid,
  .module-hero-grid,
  .friction-grid,
  .split,
  .detail-grid,
  .detail-grid.reverse,
  .team-grid,
  .module-deep-grid,
  .proof-band-grid,
  .guest-split,
  .guest-split.reverse,
  .guest-image-grid {
    grid-template-columns: 1fr;
  }

  .detail-grid.reverse .detail-copy {
    order: 0;
  }

  .guest-split.reverse > div {
    order: 0;
  }

  .hero-visual,
  .case-visual {
    min-height: auto;
  }

  .hero-visual::before {
    inset: 26px -10px 22px 22px;
  }

  .case-visual::before {
    inset: 40px -10px 46px 28px;
  }

  .case-photo-slot {
    min-height: 340px;
    margin: 26px 0 0;
  }

  .case-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -68px 22px 0 0;
  }

  .qr-tile {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(220px, 100%);
    margin: -28px 0 0 auto;
  }

  .phone-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -30px 24px 0 auto;
  }

  .quote-grid,
  .throughline-card,
  .module-grid,
  .use-grid,
  .module-info-grid,
  .module-info-grid.wide {
    grid-template-columns: repeat(2, 1fr);
  }

  .module-visual::before {
    inset: 26px -10px 22px 22px;
  }

  .quote-grid figure:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .throughline-step:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .throughline-step:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .demo-form {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .section-pad {
    padding: 70px 0;
  }

  .hero {
    padding-top: 62px;
  }

  h1 {
    font-size: 72px;
  }

  .hero.hero-dark h1 {
    font-size: 64px;
  }

  .hero-lead {
    font-size: 25px;
  }

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

  .report-row {
    grid-template-columns: 12px 1fr;
  }

  .case-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-card {
    margin-right: 0;
    padding: 20px;
  }

  .case-card h3 {
    font-size: 36px;
  }

  .report-row em {
    grid-column: 2;
    width: fit-content;
  }

  .quote-grid,
  .throughline-card,
  .module-grid,
  .benefit-grid,
  .use-grid,
  .module-info-grid,
  .module-info-grid.wide,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .module-deep-grid article {
    min-height: 0;
  }

  .floating-proof-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -56px 18px 0;
  }

  .guest-hero-photo {
    height: 480px;
    min-height: 480px;
  }

  .guest-image-card.large {
    grid-row: auto;
  }

  .guest-image-card.large img,
  .guest-image-card img {
    height: 360px;
  }

  .guest-stat-row {
    grid-template-columns: 1fr;
  }

  .guest-manager-card .review-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -62px 18px 0;
  }

  .quote-grid figure,
  .quote-grid figure:first-child,
  .throughline-step,
  .throughline-step:first-child {
    border-left: 0;
  }

  .quote-grid figure + figure {
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .throughline-step + .throughline-step {
    border-top: 1px solid var(--line);
  }

  .throughline-step strong {
    margin-top: 28px;
  }

  .module-card {
    min-height: 240px;
  }

  .module-card h3 {
    margin-top: 58px;
  }

  .photo-slot.large {
    min-height: 300px;
  }

  .guest-photo,
  .guest-manager-card .guest-photo,
  .staff-photo {
    min-height: 0;
  }

  .guest-hero-photo {
    height: 380px;
    min-height: 380px;
  }

  .guest-image-card.large img,
  .guest-image-card img {
    height: 245px;
  }

  .role-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

/* ============================================================
   Homepage hero (v4) — pozadinska slika + status panel
   ============================================================ */
.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(6, 17, 10, .92) 0%, rgba(6, 17, 10, .74) 42%, rgba(6, 17, 10, .40) 100%),
    radial-gradient(circle at 80% 12%, rgba(216, 255, 115, .14), transparent 40%);
}

/* sadrzaj iznad slike i overlaya */
.hero-universal .hero-grid {
  position: relative;
  z-index: 2;
}

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

.hero-status-panel {
  align-self: center;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 6%, rgba(216, 255, 115, .14), transparent 30%),
    rgba(8, 22, 13, .62);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.hero-status-panel h3 {
  margin-top: 18px;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.platform-status-list {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.platform-status-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 14px;
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-weight: 800;
}

.platform-status-list .dot {
  flex: none;
}

.dot.field    { background: var(--field); }
.dot.facility { background: var(--facility); }
.dot.inventory { background: var(--inventory); }
.dot.guest    { background: var(--guest); }

/* ============================================================
   Platform gallery (v4)
   ============================================================ */
.platform-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.platform-gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--dark);
  box-shadow: 0 16px 42px rgba(7, 18, 11, .10);
  transition: transform .24s ease, box-shadow .24s ease;
}

.platform-gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
  transition: transform .4s ease, opacity .24s ease;
}

.platform-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 17, 10, 0) 30%, rgba(6, 17, 10, .92) 100%);
}

.platform-gallery-card div {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 20px;
  color: #fff;
}

.platform-gallery-card span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.platform-gallery-card strong {
  display: block;
  margin-top: 12px;
  font-size: 17px;
  line-height: 1.15;
  letter-spacing: -.03em;
  font-weight: 900;
}

.platform-gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 58px rgba(7, 18, 11, .22);
}

.platform-gallery-card:hover img {
  transform: scale(1.05);
  opacity: .92;
}

.platform-gallery-card.facility span { background: var(--facility); color: #fff; }
.platform-gallery-card.inventory span { background: var(--inventory); color: #fff; }
.platform-gallery-card.guest span { background: var(--guest); color: #fff; }

/* ============================================================
   Guest pricing / self-serve (v4)
   ============================================================ */
.guest-pricing {
  background:
    radial-gradient(circle at 84% 10%, rgba(147, 116, 224, .16), transparent 30%),
    #fff8f0;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 38px;
  align-items: stretch;
}

.tier-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(7, 18, 11, .12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(7, 18, 11, .06);
}

.tier-card.featured {
  border-color: var(--guest);
  box-shadow: 0 26px 64px rgba(101, 65, 189, .18);
}

.tier-badge {
  display: inline-flex;
  width: fit-content;
  padding: 6px 11px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--guest) 16%, #fff);
  color: var(--guest-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.tier-card.featured .tier-badge {
  background: var(--guest);
  color: #fff;
}

.tier-name {
  margin-top: 18px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.tier-price {
  margin-top: 10px;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1;
}

.tier-price small {
  font-size: 15px;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0;
}

.tier-card > p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
}

.tier-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.tier-list li {
  position: relative;
  padding-left: 28px;
  color: #24362a;
  font-size: 15px;
  font-weight: 700;
}

.tier-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--guest);
}

.tier-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.tier-card .button {
  margin-top: auto;
  width: 100%;
}

.tier-note {
  margin-top: 22px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

/* ============================================================
   Responsive (v4 dodaci)
   ============================================================ */
@media (max-width: 980px) {
  .hero-status-panel { margin-top: 8px; }
  .platform-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .platform-gallery-grid { grid-template-columns: 1fr; }
  .hero-status-panel { padding: 20px; }
  .tier-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Language switcher (EN / HR)
   ============================================================ */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 4px;
  padding: 3px;
  border: 1px solid rgba(7, 18, 11, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .5);
}

.lang-switcher a {
  padding: 6px 9px;
  border-radius: 999px;
  color: #34483b;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.lang-switcher a:hover {
  background: var(--green-soft);
  color: var(--green);
}

.lang-switcher a.active {
  color: #fff;
  background: var(--ink);
}

.module-page .lang-switcher a.active {
  background: var(--module-color);
}

@media (max-width: 980px) {
  .site-nav .lang-switcher {
    align-self: flex-start;
    margin: 8px 0 0 14px;
  }
}

/* ============================================================
   Enterprise band + pricing definitions + FAQ
   ============================================================ */
.tier-enterprise {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: center;
  margin-top: 16px;
  padding: 32px 36px;
  border: 1px solid rgba(7, 18, 11, .12);
  border-radius: 24px;
  background: linear-gradient(145deg, var(--guest-dark), var(--dark));
  color: #fff;
}
.tier-enterprise h3 {
  font-size: 26px;
  letter-spacing: -.045em;
}
.tier-enterprise > div p {
  margin-top: 10px;
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
}
.tier-enterprise ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.tier-enterprise li {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  font-size: 13px;
  font-weight: 800;
}
.tier-enterprise .button {
  justify-self: end;
  white-space: nowrap;
}

.pricing-defs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.pricing-defs div {
  padding: 18px 20px;
  border: 1px solid rgba(7, 18, 11, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
}
.pricing-defs strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--guest-dark);
}
.pricing-defs p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.faq {
  background: #fffaf0;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 38px;
  align-items: start;
}
.faq-item {
  border: 1px solid rgba(7, 18, 11, .1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(7, 18, 11, .05);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 22px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -.02em;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--guest) 16%, #fff);
  color: var(--guest-dark);
  font-size: 20px;
  font-weight: 700;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 880px) {
  .tier-enterprise { grid-template-columns: 1fr; }
  .tier-enterprise .button { justify-self: start; }
  .pricing-defs { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Billing toggle (monthly/yearly) + button & card dynamics
   ============================================================ */
.billing-toggle-wrap {
  text-align: center;
  margin: -18px 0 0;
}
.billing-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(7, 18, 11, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
}
.billing-toggle button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #34483b;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease;
}
.billing-toggle button.active {
  background: var(--guest);
  color: #fff;
}
.billing-toggle button span {
  padding: 3px 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--guest) 18%, #fff);
  color: var(--guest-dark);
  font-size: 11px;
  font-weight: 900;
}
.billing-toggle button.active span {
  background: rgba(255, 255, 255, .22);
  color: #fff;
}

.button {
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, filter .18s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary:hover {
  box-shadow: 0 20px 38px rgba(22, 115, 51, .26);
}
.module-page .button-primary:hover {
  background: var(--module-dark);
  box-shadow: 0 16px 34px color-mix(in srgb, var(--module-color) 40%, transparent);
}
.module-page .button-secondary:hover {
  background: #fff;
  border-color: var(--module-color);
  color: var(--module-dark);
}
.tier-card {
  transition: transform .2s ease, box-shadow .2s ease;
}
.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 58px rgba(7, 18, 11, .13);
}
.tier-card.featured:hover {
  box-shadow: 0 30px 70px color-mix(in srgb, var(--guest) 26%, transparent);
}
.faq-item summary {
  transition: color .15s ease;
}
.faq-item summary:hover {
  color: var(--guest-dark);
}

/* ============================================================
   Hero fills to the very top, behind the floating header
   ============================================================ */
.hero,
.module-page .module-hero {
  margin-top: -90px;
}
.hero {
  padding-top: 168px;
}
.module-page .module-hero {
  padding-top: 186px;
}
@media (max-width: 680px) {
  .hero {
    padding-top: 120px;
  }
  .module-page .module-hero {
    padding-top: 130px;
  }
}

/* Module hero eyebrow: more air under it + crisp on dark guest hero */
.module-hero .eyebrow {
  font-size: 12px;
  margin-bottom: 26px;
}
.theme-guest-page .module-hero .eyebrow {
  color: #fff;
}

/* ============================================================
   Feature cards: real icons instead of the decorative slider
   (Dojmovi pilot — roll out to other modules after approval)
   ============================================================ */
.theme-guest-page .module-info-grid.wide article {
  padding-top: 22px;
}
.theme-guest-page .module-info-grid.wide article::before,
.theme-guest-page .module-info-grid.wide article::after {
  content: none;
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, color-mix(in srgb, var(--module-color) 90%, #fff), var(--module-dark));
  box-shadow: 0 12px 24px color-mix(in srgb, var(--module-color) 22%, transparent);
}
.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   Feature cards: real per-feature icon tile (replaces slider)
   ============================================================ */
.feature-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, color-mix(in srgb, var(--module-color) 86%, #fff), var(--module-dark));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22), 0 14px 28px color-mix(in srgb, var(--module-color) 24%, transparent);
}
.feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.module-info-grid.wide article:has(.feature-icon) {
  padding-top: 18px;
}
.module-info-grid.wide article:has(.feature-icon)::before,
.module-info-grid.wide article:has(.feature-icon)::after {
  content: none;
}

/* "How it works" flow (throughline) reused on module pages */
.module-page .throughline {
  padding: 96px 0;
}
.module-page .throughline-step span {
  color: var(--module-dark);
}

/* ============================================================
   CTA card themed to the current module
   ============================================================ */
.module-page .cta-card {
  background:
    radial-gradient(circle at 85% 0%, color-mix(in srgb, var(--module-color) 48%, transparent), transparent 34%),
    radial-gradient(circle at 16% 84%, color-mix(in srgb, var(--module-color) 22%, transparent), transparent 30%),
    linear-gradient(145deg, var(--dark), var(--module-dark) 68%, var(--module-color));
}
.module-page .cta-card .button-primary {
  background: #fff;
  color: var(--module-dark);
}
.module-page .cta-card .button-primary:hover {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
}
.module-page .cta-card .button-secondary {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .32);
  color: #fff;
}
.module-page .cta-card .button-secondary:hover {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}

/* Two-column check-list (photo-light sections) */
.check-list.two-col {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 44px;
  max-width: 880px;
}
@media (max-width: 680px) {
  .check-list.two-col {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Module pages (Field / Facility / Inventory): layout that was
   MISSING from the stylesheet. Constrains photos (fixes the
   page-wide horizontal scrollbar), turns the showcase into a
   3-step FLOW, and lays out the split / stat sections.
   Themed per module via --module-color / --module-dark.
   ============================================================ */
.module-hero-grid > * { min-width: 0; }
.module-hero-grid img { max-width: 100%; }

.field-photo,
.facility-photo,
.inventory-photo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 32px 88px rgba(7, 18, 11, .18);
}
.field-hero-photo,
.facility-hero-photo,
.inventory-hero-photo {
  height: min(560px, 64vh);
  min-height: 440px;
}

/* Showcase = 3-step flow (e.g. location → routing → resolution) */
.field-showcase,
.facility-showcase,
.inventory-showcase {
  background: color-mix(in srgb, var(--module-color) 5%, #fffaf0);
}
.field-image-grid,
.facility-image-grid,
.inventory-image-grid {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  align-items: stretch;
}
.field-image-card,
.facility-image-card,
.inventory-image-card {
  counter-increment: step;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(7, 18, 11, .10);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(7, 18, 11, .08);
}
.field-image-card.large,
.facility-image-card.large,
.inventory-image-card.large { grid-row: auto; }
.field-image-card img,
.facility-image-card img,
.inventory-image-card img,
.field-image-card.large img,
.facility-image-card.large img,
.inventory-image-card.large img {
  display: block;
  width: 100%;
  height: 196px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}
.field-image-card > div,
.facility-image-card > div,
.inventory-image-card > div {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px;
}
.field-image-card span,
.facility-image-card span,
.inventory-image-card span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--module-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.field-image-card span::before,
.facility-image-card span::before,
.inventory-image-card span::before {
  content: counter(step, decimal-leading-zero) " · ";
  opacity: .7;
}
.field-image-card h3,
.facility-image-card h3,
.inventory-image-card h3 {
  margin-top: 14px;
  font-size: 24px;
  line-height: 1.04;
  letter-spacing: -.04em;
}
.field-image-card p,
.facility-image-card p,
.inventory-image-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

/* Split sections (proof / map / portfolio / history) */
.field-split,
.facility-split,
.inventory-split {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 64px;
  align-items: center;
}
.field-split.reverse,
.facility-split.reverse,
.inventory-split.reverse { grid-template-columns: 1fr .9fr; }
.field-split.reverse > div:first-child,
.facility-split.reverse > div:first-child,
.inventory-split.reverse > div:first-child { order: 2; }
.field-split h2,
.facility-split h2,
.inventory-split h2 { max-width: 640px; }
.field-split p:not(.eyebrow),
.facility-split p:not(.eyebrow),
.inventory-split p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.42;
}

.field-stat-row,
.facility-stat-row,
.inventory-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 30px;
}
.field-stat-row div,
.facility-stat-row div,
.inventory-stat-row div {
  padding: 18px;
  border: 1px solid rgba(7, 18, 11, .10);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
}
.field-stat-row strong,
.facility-stat-row strong,
.inventory-stat-row strong {
  display: block;
  color: var(--module-dark);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.05em;
}
.field-stat-row span,
.facility-stat-row span,
.inventory-stat-row span {
  display: block;
  margin-top: 8px;
  color: #46594d;
  font-size: 13px;
  font-weight: 800;
}

.field-proof-card,
.facility-proof-card,
.inventory-proof-card { position: relative; }
.field-proof-card .field-photo,
.facility-proof-card .facility-photo,
.inventory-proof-card .inventory-photo { min-height: 440px; }
.map-photo,
.portfolio-photo,
.history-photo { min-height: 440px; }

.module-page .review-card {
  background: linear-gradient(145deg, var(--module-dark), var(--dark));
}

@media (max-width: 980px) {
  .field-image-grid,
  .facility-image-grid,
  .inventory-image-grid { grid-template-columns: 1fr; }
  .field-image-card img,
  .facility-image-card img,
  .inventory-image-card img,
  .field-image-card.large img,
  .facility-image-card.large img,
  .inventory-image-card.large img { height: 220px; }
  .field-split, .field-split.reverse,
  .facility-split, .facility-split.reverse,
  .inventory-split, .inventory-split.reverse { grid-template-columns: 1fr; gap: 32px; }
  .field-split.reverse > div:first-child,
  .facility-split.reverse > div:first-child,
  .inventory-split.reverse > div:first-child { order: 0; }
  .field-hero-photo, .facility-hero-photo, .inventory-hero-photo { height: 360px; min-height: 360px; }
  .map-photo, .portfolio-photo, .history-photo,
  .field-proof-card .field-photo,
  .facility-proof-card .facility-photo,
  .inventory-proof-card .inventory-photo { min-height: 300px; }
}
@media (max-width: 680px) {
  .field-stat-row, .facility-stat-row, .inventory-stat-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ============================================================
   Module 05 — Reportio Stocktake (annual inventory count)
   Amber theme. Additive; mirrors the field/facility/inventory
   module-page layout, themed via --module-color.
   ============================================================ */
:root {
  --stocktake: #dd9b2e;
  --stocktake-dark: #9a6410;
}

.menu-dot.stocktake { background: var(--stocktake); }

.theme-stocktake-page {
  --module-color: var(--stocktake);
  --module-dark: var(--stocktake-dark);
  --module-soft: rgba(221, 155, 46, .15);
  background: #fdf8ee;
}

/* Homepage integration hooks (module nav + grid card + gallery + dot) */
.module-nav a.stocktake:hover { background: var(--stocktake); color: #fff; }
.module-stocktake::after { background: color-mix(in srgb, var(--stocktake) 30%, transparent); }
.module-stocktake:hover { border-color: color-mix(in srgb, var(--stocktake) 70%, transparent); }
.module-stocktake .module-icon { background: var(--stocktake); }
.module-stocktake .module-link {
  color: var(--stocktake-dark);
  background: color-mix(in srgb, var(--stocktake) 15%, #fff);
}
.platform-gallery-card.stocktake span { background: var(--stocktake); color: #fff; }
.dot.stocktake { background: var(--stocktake); }

/* Showcase / split / stat / photo — token-driven mirror of inventory-* */
.stocktake-photo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 32px 88px rgba(7, 18, 11, .18);
}
.stocktake-hero-photo {
  height: min(560px, 64vh);
  min-height: 440px;
}
.stocktake-showcase {
  background: color-mix(in srgb, var(--module-color) 5%, #fffaf0);
}
.stocktake-image-grid {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  align-items: stretch;
}
.stocktake-image-card {
  counter-increment: step;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(7, 18, 11, .10);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(7, 18, 11, .08);
}
.stocktake-image-card.large { grid-row: auto; }
.stocktake-image-card img,
.stocktake-image-card.large img {
  display: block;
  width: 100%;
  height: 196px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}
.stocktake-image-card > div {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px;
}
.stocktake-image-card span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--module-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.stocktake-image-card span::before {
  content: counter(step, decimal-leading-zero) " · ";
  opacity: .7;
}
.stocktake-image-card h3 {
  margin-top: 14px;
  font-size: 24px;
  line-height: 1.04;
  letter-spacing: -.04em;
}
.stocktake-image-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}
.stocktake-split {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 64px;
  align-items: center;
}
.stocktake-split.reverse { grid-template-columns: 1fr .9fr; }
.stocktake-split.reverse > div:first-child { order: 2; }
.stocktake-split h2 { max-width: 640px; }
.stocktake-split p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.42;
}
.stocktake-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 30px;
}
.stocktake-stat-row div {
  padding: 18px;
  border: 1px solid rgba(7, 18, 11, .10);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
}
.stocktake-stat-row strong {
  display: block;
  color: var(--module-dark);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.05em;
}
.stocktake-stat-row span {
  display: block;
  margin-top: 8px;
  color: #46594d;
  font-size: 13px;
  font-weight: 800;
}
.stocktake-proof-card { position: relative; }
.stocktake-proof-card .stocktake-photo { min-height: 440px; }
.stocktake-history-section { background: color-mix(in srgb, var(--module-color) 6%, #fffaf0); }
.stocktake-history-section .history-photo { min-height: 440px; }

@media (max-width: 980px) {
  .stocktake-image-grid { grid-template-columns: 1fr; }
  .stocktake-image-card img,
  .stocktake-image-card.large img { height: 220px; }
  .stocktake-split, .stocktake-split.reverse { grid-template-columns: 1fr; gap: 32px; }
  .stocktake-split.reverse > div:first-child { order: 0; }
  .stocktake-hero-photo { height: 360px; min-height: 360px; }
  .stocktake-proof-card .stocktake-photo,
  .stocktake-history-section .history-photo { min-height: 300px; }
}
@media (max-width: 680px) {
  .stocktake-stat-row { grid-template-columns: 1fr; }
}

/* Homepage now has 5 modules — widen module grid + gallery on desktop only.
   Smaller breakpoints keep the existing 2-col / 1-col rules above. */
@media (min-width: 981px) {
  .module-grid { grid-template-columns: repeat(5, 1fr); }
  .platform-gallery-grid { grid-template-columns: repeat(5, 1fr); }
}

/* Brand now carries page context (Reportio <module>) — keep it on one line,
   slightly smaller on phones so longer names still fit the pill header. */
.brand { white-space: nowrap; }
@media (max-width: 600px) {
  .brand { font-size: 15px; gap: 8px; }
}

/* Hero workflow grid (5 module entry points inside the dark hero) */
.hero-problem-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.hero-problem {
  display: block;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-left: 3px solid var(--field);
  border-radius: 16px;
  background: rgba(255, 255, 255, .05);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.hero-problem:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .09);
}

.hero-problem span {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}

.hero-problem strong {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -.03em;
  color: #fff;
}

.hero-problem p {
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255, 255, 255, .66);
}

.hero-problem.field { border-left-color: var(--field); }
.hero-problem.facility { border-left-color: var(--facility); }
.hero-problem.inventory { border-left-color: var(--inventory); }
.hero-problem.stocktake { border-left-color: var(--stocktake); }
.hero-problem.guest { border-left-color: var(--guest); }

.hero-problem.field span { color: var(--field); }
.hero-problem.facility span { color: #8fb4ff; }
.hero-problem.inventory span { color: #f1908f; }
.hero-problem.stocktake span { color: var(--stocktake); }
.hero-problem.guest span { color: #b6a0ec; }

@media (max-width: 1080px) {
  .hero-problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 430px) {
  .hero-problem-grid {
    grid-template-columns: 1fr;
  }
}

/* === Reorganized homepage hero: compact full-width bands === */
.hero-universal {
  min-height: auto;
}

.hero-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-shell .eyebrow {
  margin-bottom: 0;
}

.hero-head {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px 54px;
  align-items: end;
}

.hero-head h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(50px, 6vw, 96px);
  line-height: .9;
}

.hero-head-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 6px;
}

.hero-head-side .hero-lead {
  max-width: 520px;
  margin-top: 0;
  font-size: clamp(20px, 1.9vw, 27px);
  line-height: 1.12;
}

.hero-head-side .hero-actions,
.hero-head-side .hero-points {
  margin-top: 0;
}

.hero-shell > .hero-text {
  max-width: 940px;
  margin-top: 0;
  font-size: 19px;
}

/* Live workflow band (full width) */
.hero-live {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  background: rgba(255, 255, 255, .05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero-live-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
}

.hero-live-head span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-live-head strong {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  letter-spacing: -.04em;
  color: #fff;
}

.hero-live-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.hero-live-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .82);
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-live-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.hero-live-flow em {
  padding: 9px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #d9eadc;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.hero-live-flow em:last-child {
  color: var(--ink);
  background: var(--lime);
}

@media (max-width: 900px) {
  .hero-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
  }
  .hero-head-side .hero-lead {
    max-width: none;
  }
  .hero-live-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .hero-live-list {
    grid-template-columns: 1fr;
  }
  .hero-live-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Full-width hero now sits over the whole photo — darken it evenly so white
   text stays readable across the entire width, and lock the stacking order. */
.hero-universal {
  position: relative;
}

.hero-universal .hero-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-universal .hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 16, 10, .92) 0%, rgba(6, 16, 10, .80) 48%, rgba(6, 16, 10, .90) 100%),
    radial-gradient(circle at 82% 12%, rgba(53, 209, 96, .14), transparent 42%);
}

.hero-universal .hero-shell {
  position: relative;
  z-index: 2;
}

/* === Lean homepage hero === */
.hero-lean {
  gap: 24px;
  min-height: 62vh;
  justify-content: center;
}

.hero-lean h1 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(48px, 7vw, 112px);
  line-height: .88;
}

.hero-lean .hero-lead {
  max-width: 640px;
  margin-top: 0;
}

.hero-lean .hero-actions {
  margin-top: 8px;
}

/* === "What we solve" problem bands === */
.solve {
  background: #fffaf0;
}

.solve-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.solve-head > p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.solve-bands {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 44px;
}

.solve-band {
  --module-color: var(--field);
  --module-dark: var(--field-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
  padding: 34px;
  border: 1px solid color-mix(in srgb, var(--module-color) 24%, rgba(7, 18, 11, .08));
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 6%, color-mix(in srgb, var(--module-color) 13%, transparent), transparent 32%),
    #fff;
  box-shadow: 0 20px 60px rgba(7, 18, 11, .07);
}

.solve-band.field { --module-color: var(--field); --module-dark: var(--field-dark); }
.solve-band.facility { --module-color: var(--facility); --module-dark: var(--facility-dark); }
.solve-band.inventory { --module-color: var(--inventory); --module-dark: var(--inventory-dark); }
.solve-band.stocktake { --module-color: var(--stocktake); --module-dark: var(--stocktake-dark); }
.solve-band.guest { --module-color: var(--guest); --module-dark: var(--guest-dark); }
.solve-band.reverse .solve-media { order: 2; }

.solve-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--module-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.solve-eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--module-color);
}

.solve-copy h2 {
  margin-top: 16px;
  font-size: clamp(29px, 3.1vw, 44px);
  line-height: .98;
  letter-spacing: -.05em;
}

.solve-lead {
  max-width: 520px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.solve-for {
  max-width: 520px;
  margin-top: 14px;
  color: #46594d;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.4;
}

.solve-for span {
  margin-right: 7px;
  color: var(--module-dark);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.solve-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 12px 17px;
  border-radius: 999px;
  color: #fff;
  background: var(--module-dark);
  font-size: 14px;
  font-weight: 900;
}

.solve-link span { transition: transform .2s ease; }
.solve-link:hover span { transform: translateX(4px); }

.solve-media { position: relative; }

.solve-media img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 26px 70px rgba(7, 18, 11, .18);
}

.solve-proof {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(145deg, var(--module-dark), var(--dark));
  box-shadow: 0 20px 48px rgba(7, 18, 11, .32);
}

.solve-proof small {
  display: block;
  color: rgba(255, 255, 255, .66);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.solve-proof strong {
  display: block;
  margin-top: 7px;
  font-size: 18px;
  letter-spacing: -.03em;
  font-weight: 900;
}

.solve-proof p {
  margin-top: 6px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
}

@media (max-width: 900px) {
  .solve-band {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
  }
  /* Always stack copy first, then photo — same order for every band */
  .solve-band.reverse .solve-copy { order: 0; }
  .solve-band.reverse .solve-media { order: 1; }
  .solve-media img { height: 300px; }
  .solve-lead { max-width: none; }
}

/* Harmonize the guest (Feedback) module page hero with the other light module
   pages — it was the only dark hero. Override the dark theme-guest rules. */
.theme-guest-page .module-hero {
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 16%, color-mix(in srgb, var(--module-color) 30%, transparent), transparent 25%),
    radial-gradient(circle at 12% 86%, color-mix(in srgb, var(--module-color) 18%, transparent), transparent 30%),
    linear-gradient(180deg, #fffaf0 0%, color-mix(in srgb, var(--module-color) 8%, #f6f4ee) 100%);
}

.theme-guest-page .module-hero::before {
  background:
    linear-gradient(rgba(7, 18, 11, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 18, 11, .045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 30%, #000, transparent 75%);
  z-index: 0;
}

.theme-guest-page .module-hero .eyebrow {
  color: var(--module-dark);
}

.theme-guest-page .module-hero .hero-lead {
  color: #14251a;
}

.theme-guest-page .module-hero .button-secondary {
  color: var(--ink);
  border-color: rgba(7, 18, 11, .13);
  background: rgba(255, 255, 255, .72);
}

/* Restore the standard rounded hero photo + decorative block for guest */
.guest-hero-visual::before {
  display: block;
}

.guest-hero-photo {
  height: auto;
  min-height: 0;
  border-radius: 28px;
  box-shadow: 0 32px 88px rgba(7, 18, 11, .22);
}
