:root {
  --ink: #101715;
  --muted: #5e6a67;
  --line: #dbe4df;
  --paper: #f4f7f5;
  --white: #ffffff;
  --steel: #e6efeb;
  --field: #edf4f0;
  --forest: #004b32;
  --moss: #0f6a4a;
  --copper: #e63946;
  --teal: #0e8f6a;
  --yellow: #d4af37;
  --danger: #e63946;
  --charcoal: #121614;
  --radius: 8px;
  --shadow: 0 24px 60px rgba(18, 22, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.site-shell {
  min-height: 100vh;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(18, 22, 20, 0.94);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--white);
}

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #121614;
  border-radius: 14px;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.62), 0 0 24px rgba(0, 75, 50, 0.42), 0 12px 30px rgba(0, 0, 0, 0.34);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.14) contrast(1.1) brightness(1.14);
}

.brand-name {
  font-family: Oxanium, Space Grotesk, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(95deg, #ffffff 0%, #ffffff 58%, #d4af37 118%);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.16);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.btn-primary {
  background: var(--danger);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(230, 57, 70, 0.26);
}

.btn-secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.btn-copper {
  background: var(--copper);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(230, 57, 70, 0.26);
  animation: ctaPulse 2.8s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 10px 26px rgba(230, 57, 70, 0.24);
  }

  50% {
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.42);
  }
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 4vw, 56px);
}

.hero + .section {
  padding-top: clamp(32px, 5vw, 64px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(44px, 6.2vw, 72px);
  line-height: 1;
  letter-spacing: 0;
  font-family: Space Grotesk, Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
}

h2 {
  max-width: 840px;
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: 0;
  font-family: Space Grotesk, Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero {
  position: relative;
  min-height: calc(100svh - 150px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0 1px, transparent 1px 64px),
    radial-gradient(circle at 74% 24%, rgba(0, 75, 50, 0.52), transparent 32%),
    linear-gradient(90deg, rgba(18, 22, 20, 0.98) 0%, rgba(18, 22, 20, 0.88) 52%, rgba(18, 22, 20, 0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 44px clamp(18px, 4vw, 56px);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.42;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.proof-pill {
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 750;
}

.ops-backdrop {
  position: absolute;
  inset: 0 0 0 48%;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 14px;
  padding: 54px 44px 54px 0;
  opacity: 0.66;
  transform: rotate(-2deg) scale(1.04);
}

.ops-column {
  display: grid;
  gap: 14px;
  align-content: center;
}

.ops-panel {
  min-height: 124px;
  padding: 16px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius);
  background: rgba(0, 75, 50, 0.24);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.ops-panel strong,
.ops-panel span {
  display: block;
}

.ops-panel strong {
  margin-bottom: 8px;
  color: var(--white);
}

.ops-panel span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.meter {
  height: 8px;
  margin-top: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.meter i {
  display: block;
  height: 100%;
  width: var(--fill);
  background: var(--yellow);
}

.band {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.card-muted {
  background: var(--field);
}

.number {
  display: inline-grid;
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  box-shadow: inset 0 -3px 0 rgba(212, 175, 55, 0.45);
  border-radius: 7px;
  font-weight: 850;
}

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

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 99px;
  background: var(--danger);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.dashboard-showcase {
  grid-template-columns: minmax(260px, 0.7fr) minmax(620px, 1.3fr);
}

.dashboard-showcase h2 {
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1.12;
}

.product-surface {
  position: relative;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #18201d, #0f1513);
  box-shadow: var(--shadow);
}

.command-center {
  overflow: visible;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius) var(--radius) 0 0;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: rgba(212, 175, 55, 0.72);
}

.screen {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 0;
  background: #f8fbf9;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
}

.dashboard {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  min-height: 360px;
}

.dash-sidebar {
  padding: 20px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(0, 75, 50, 0.96), rgba(18, 22, 20, 0.96));
}

.status-dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-bottom: 14px;
  border-radius: 99px;
  background: var(--danger);
  box-shadow: 0 0 0 7px rgba(230, 57, 70, 0.16);
}

.dash-main {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.booking-widget {
  position: absolute;
  right: 34px;
  bottom: -46px;
  width: min(320px, calc(100% - 68px));
  display: grid;
  gap: 14px;
  padding: 18px;
  color: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: var(--radius);
  background: rgba(18, 22, 20, 0.82);
  box-shadow: 0 18px 40px rgba(18, 22, 20, 0.28);
  backdrop-filter: blur(18px);
}

.booking-widget strong,
.booking-widget span {
  display: block;
}

.booking-widget > div:first-child span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.time-slots span {
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.time-slots .selected {
  color: var(--yellow);
  border-color: var(--yellow);
  background: rgba(212, 175, 55, 0.12);
}

.booking-widget button {
  min-height: 40px;
  color: var(--white);
  border: 0;
  border-radius: var(--radius);
  background: var(--danger);
  font-weight: 900;
  cursor: pointer;
}

.assistant-trigger {
  position: absolute;
  right: 22px;
  top: 58px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 8px rgba(0, 75, 50, 0.24), 0 16px 34px rgba(18, 22, 20, 0.28);
  animation: assistantRing 2.4s ease-in-out infinite;
}

.assistant-trigger span {
  width: 28px;
  height: 28px;
  display: block;
  border-radius: 7px;
  background: url("fieldviper-logo.png") center / cover no-repeat;
}

@keyframes assistantRing {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(0, 75, 50, 0.2), 0 16px 34px rgba(18, 22, 20, 0.28);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(0, 75, 50, 0.34), 0 16px 34px rgba(18, 22, 20, 0.28);
  }
}

.dash-main .grid-3 {
  grid-template-columns: repeat(3, minmax(150px, 1fr));
}

.mini-stat {
  min-width: 0;
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--field);
}

.mini-stat b {
  display: block;
  font-size: 26px;
  line-height: 1;
}

.mini-stat span {
  display: block;
  max-width: 100%;
  margin-top: 8px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.22;
  text-wrap: balance;
}

.lead-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.lead-row > span:first-child {
  min-width: 0;
  line-height: 1.25;
  overflow-wrap: break-word;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 72px;
  min-height: 26px;
  max-width: 118px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--forest);
  background: #dcebe6;
  font-size: 12px;
  line-height: 1.05;
  font-weight: 850;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

.tag-hot {
  color: var(--white);
  background: var(--danger);
}

.tag-warm {
  color: #6c5313;
  background: #fff0be;
}

.cta-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 75, 50, 0.96), rgba(18, 22, 20, 1) 70%);
}

.cta-band .lead {
  color: rgba(255, 255, 255, 0.78);
}

.package {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price {
  font-size: 32px;
  font-weight: 900;
}

.price small {
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.feature-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-table th,
.feature-table td {
  padding: 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.feature-table th {
  background: var(--field);
}

.footer {
  padding: 42px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--charcoal);
}

.footer-inner {
  width: min(1180px, 100%);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
}

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

.field {
  display: grid;
  gap: 7px;
}

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

.field label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.field textarea {
  min-height: 104px;
  resize: vertical;
}

.notice {
  display: none;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid #b7dbc6;
  border-radius: var(--radius);
  background: #e8f6ee;
  color: #25563c;
  font-weight: 750;
}

.notice.show {
  display: block;
}

.demo-body {
  background: #eef4f6;
}

.demo-hero {
  min-height: 86vh;
  display: grid;
  align-items: center;
  padding: 64px clamp(18px, 4vw, 56px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 22, 20, 0.94), rgba(18, 22, 20, 0.72)),
    repeating-linear-gradient(135deg, #004b32 0 14px, #0f6a4a 14px 28px);
}

.demo-hero-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.demo-hero h1 {
  max-width: 800px;
}

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

.service-tile {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.intake-panel {
  position: sticky;
  top: 98px;
}

.chat-box {
  display: grid;
  gap: 10px;
}

.bubble {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--field);
}

.bubble.customer {
  justify-self: end;
  color: var(--white);
  background: var(--forest);
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.audit-score {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.score-control {
  display: inline-grid;
  grid-template-columns: repeat(5, 32px);
  gap: 6px;
}

.score-control button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  cursor: pointer;
}

.score-control button.active {
  color: var(--white);
  border-color: var(--forest);
  background: var(--forest);
}

.audit-output {
  min-height: 180px;
  white-space: pre-wrap;
}

@media (max-width: 900px) {
  .nav {
    align-items: center;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    inset: 65px 18px auto 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links a:hover {
    color: var(--forest);
  }

  .nav.open .nav-links {
    display: flex;
  }

  .nav-links .btn {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    background: rgba(18, 22, 20, 0.86);
  }

  .ops-backdrop {
    inset: 0;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    padding: 28px;
    opacity: 0.36;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .split,
  .dashboard-showcase,
  .dashboard,
  .service-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-showcase {
    gap: 28px;
  }

  .product-surface {
    padding: 10px;
    overflow: hidden;
  }

  .dashboard {
    min-height: 0;
  }

  .booking-widget,
  .assistant-trigger {
    position: static;
  }

  .booking-widget {
    width: auto;
    margin-top: 12px;
  }

  .assistant-trigger {
    margin: 12px 0 0 auto;
  }

  .dash-sidebar,
  .dash-main {
    padding: 20px;
  }

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

  .mini-stat {
    min-height: 104px;
    padding: 18px;
  }

  .lead-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .feature-table {
    display: block;
    overflow-x: auto;
  }

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

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

@media (max-width: 560px) {
  .nav {
    padding: 12px 14px;
  }

  h1 {
    font-size: 40px;
    line-height: 1;
  }

  h2 {
    font-size: 30px;
    line-height: 1.08;
  }

  h3 {
    font-size: 18px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-content,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .hero-content {
    padding-top: 56px;
    padding-bottom: 48px;
  }

  .ops-backdrop {
    display: none;
  }

  .hero::after {
    background: rgba(18, 22, 20, 0.94);
  }

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

  .hero-proof {
    gap: 8px;
  }

  .proof-pill {
    max-width: 100%;
    white-space: normal;
  }

  .card {
    padding: 20px;
  }

  .dash-sidebar,
  .dash-main {
    padding: 16px;
  }

  .dash-main {
    gap: 12px;
  }

  .dash-main .grid-3 {
    grid-template-columns: 1fr;
  }

  .mini-stat {
    min-height: 0;
    padding: 16px;
  }

  .mini-stat b {
    font-size: 24px;
  }

  .lead-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }

  .tag {
    justify-self: start;
    max-width: 100%;
  }

  .price {
    font-size: 27px;
    line-height: 1.12;
  }

  .timeline-row {
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-copper,
  .assistant-trigger {
    animation: none;
  }
}
