:root {
  --bg: #080d0e;
  --bg-2: #101617;
  --panel: rgba(18, 25, 26, 0.78);
  --panel-strong: rgba(23, 31, 33, 0.94);
  --line: rgba(184, 210, 209, 0.18);
  --line-bright: rgba(137, 230, 220, 0.45);
  --text: #f2f6f5;
  --muted: #a6b5b4;
  --dim: #6f7e7d;
  --teal: #63e5d8;
  --teal-2: #1d847d;
  --amber: #c3a462;
  --steel: #abb8bb;
  --shadow: rgba(0, 0, 0, 0.48);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 70% 6%, rgba(99, 229, 216, 0.14), transparent 26rem),
    radial-gradient(circle at 14% 20%, rgba(195, 164, 98, 0.08), transparent 22rem),
    linear-gradient(135deg, #050808, #121819 46%, #090d0e);
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(30deg, rgba(255,255,255,0.025) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.025) 87.5%, rgba(255,255,255,0.025)),
    linear-gradient(150deg, rgba(255,255,255,0.025) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.025) 87.5%, rgba(255,255,255,0.025)),
    linear-gradient(30deg, rgba(255,255,255,0.025) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.025) 87.5%, rgba(255,255,255,0.025)),
    linear-gradient(150deg, rgba(255,255,255,0.025) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.025) 87.5%, rgba(255,255,255,0.025));
  background-position: 0 0, 0 0, 28px 49px, 28px 49px;
  background-size: 56px 98px;
  opacity: 0.45;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(8, 13, 14, 0.16), rgba(8, 13, 14, 0.82));
}

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

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

.consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 0.65rem !important;
  color: var(--muted) !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  line-height: 1.5;
}

.consent input {
  width: auto;
  margin-top: 0.18rem;
}

.consent a,
.article-copy a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.concierge {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 50;
}

.concierge-launch {
  min-width: 108px;
  min-height: 48px;
  border: 1px solid var(--line-bright);
  color: #041010;
  background: linear-gradient(135deg, #9afff5, #55d8cc 52%, #c8ad6b);
  font-weight: 900;
  box-shadow: 0 0 34px rgba(99, 229, 216, 0.28);
  cursor: pointer;
}

.concierge-panel {
  position: absolute;
  right: 0;
  bottom: 62px;
  display: none;
  width: min(420px, calc(100vw - 2rem));
  max-height: min(720px, calc(100vh - 6rem));
  border: 1px solid var(--line-bright);
  background: rgba(8, 13, 14, 0.96);
  box-shadow: 0 26px 90px rgba(0,0,0,0.55), 0 0 40px rgba(99, 229, 216, 0.13);
  overflow: hidden;
}

.concierge.is-open .concierge-panel {
  display: block;
}

.concierge-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(22, 31, 32, 0.92), rgba(8, 13, 14, 0.92));
}

.concierge-header strong,
.concierge-header span {
  display: block;
}

.concierge-header span {
  margin-top: 0.2rem;
  color: var(--teal);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.concierge-header button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,0.04);
  font-size: 1.35rem;
  cursor: pointer;
}

.concierge-body {
  display: grid;
  gap: 0.75rem;
  max-height: 300px;
  padding: 1rem;
  overflow-y: auto;
}

.concierge-message {
  max-width: 88%;
  padding: 0.85rem;
  border: 1px solid var(--line);
  color: var(--text);
  line-height: 1.5;
  font-size: 0.9rem;
}

.concierge-message.bot {
  background: rgba(255,255,255,0.045);
}

.concierge-message.user {
  justify-self: end;
  border-color: rgba(99, 229, 216, 0.34);
  background: rgba(99, 229, 216, 0.1);
}

.concierge-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.concierge-links a,
.concierge-actions button {
  border: 1px solid var(--line);
  color: var(--teal);
  background: rgba(99, 229, 216, 0.07);
  padding: 0.55rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 900;
}

.concierge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0 1rem 1rem;
}

.concierge-actions button {
  cursor: pointer;
}

.concierge-input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  padding: 1rem;
  border-top: 1px solid var(--line);
}

.concierge-input input {
  min-height: 44px;
}

.concierge-input button {
  min-height: 44px;
  border: 1px solid var(--line-bright);
  color: var(--text);
  background: rgba(99, 229, 216, 0.1);
  font-weight: 900;
}

.concierge-note {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--dim);
  font-size: 0.72rem;
  line-height: 1.4;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 78px;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 13, 14, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: max-content;
}

.brand strong {
  display: block;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 48px;
  color: var(--text);
  background: linear-gradient(145deg, #0b1011, #263032);
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  filter: drop-shadow(0 0 14px rgba(99, 229, 216, 0.34));
}

.brand-mark span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 35px;
  color: #d8fffb;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: radial-gradient(circle, rgba(99, 229, 216, 0.38), rgba(12, 26, 27, 0.95));
  clip-path: inherit;
  box-shadow: inset 0 0 0 1px rgba(242,246,245,0.28);
}

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

.site-nav a {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-nav a:hover {
  color: var(--text);
}

.ghost-link {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  color: var(--steel);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.78rem 1.05rem;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-cta,
.button.primary {
  color: #041010;
  background: linear-gradient(135deg, #9afff5, #55d8cc 52%, #c8ad6b);
  box-shadow: 0 0 28px rgba(99, 229, 216, 0.18);
}

.button.secondary {
  color: var(--text);
  border-color: var(--line-bright);
  background: rgba(99, 229, 216, 0.08);
}

.button.text {
  color: var(--teal);
  padding-inline: 0;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 34px rgba(99, 229, 216, 0.25);
}

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

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

main {
  overflow: hidden;
}

section {
  padding: clamp(4rem, 8vw, 7.5rem) clamp(1rem, 5vw, 4.5rem);
}

.section-grid,
.split-section,
.conversion-section,
.dashboard-preview,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 1280px;
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 78px);
  padding-top: clamp(3rem, 7vw, 6rem);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.9rem;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 800px;
  margin-bottom: 1.25rem;
  font-size: clamp(3.2rem, 8vw, 7.6rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 4.2vw, 4.5rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.35rem;
}

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

.hero-subhead {
  max-width: 760px;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.7rem;
}

.trust-strip span,
.matrix-grid span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: var(--steel);
  padding: 0.6rem 0.85rem;
  font-size: 0.84rem;
}

.command-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 580px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 45%, rgba(99, 229, 216, 0.17), transparent 14rem),
    linear-gradient(145deg, rgba(31, 42, 44, 0.64), rgba(9, 14, 15, 0.96));
  box-shadow: 0 26px 80px rgba(0,0,0,0.36), inset 0 0 0 1px rgba(255,255,255,0.035);
  overflow: hidden;
}

.command-visual::before {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(99, 229, 216, 0.13);
  content: "";
}

.command-visual::after {
  position: absolute;
  inset: -40%;
  content: "";
  background: linear-gradient(110deg, transparent 38%, rgba(99, 229, 216, 0.08), transparent 62%);
  animation: scanSweep 7s linear infinite;
}

.visual-header,
.exchange-ticker {
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(6, 11, 12, 0.72);
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.visual-header {
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.7rem 0.85rem;
}

.visual-header strong {
  color: var(--teal);
}

.exchange-ticker {
  right: 1.25rem;
  bottom: 1.25rem;
  flex-wrap: wrap;
  max-width: 82%;
  padding: 0.65rem;
}

.exchange-ticker span {
  padding: 0.35rem 0.55rem;
  background: rgba(255,255,255,0.04);
}

.honeycomb {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 62px);
  grid-auto-rows: 54px;
  justify-content: center;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.6));
}

.honeycomb span {
  display: grid;
  place-items: center;
  width: 68px;
  height: 60px;
  margin: -2px;
  color: rgba(242,246,245,0.7);
  background: linear-gradient(145deg, #20282a, #090d0e);
  border: 2px solid rgba(197, 209, 211, 0.26);
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  font-size: 0.56rem;
  font-weight: 900;
}

.honeycomb .core {
  color: #eafffc;
  font-size: 1rem;
  background: radial-gradient(circle, rgba(99, 229, 216, 0.55), #152426 68%);
  border-color: rgba(236, 242, 242, 0.7);
  box-shadow: 0 0 28px rgba(99, 229, 216, 0.45), inset 0 0 20px rgba(99, 229, 216, 0.18);
}

.honeycomb .active {
  color: #cffdf8;
  border-color: rgba(99, 229, 216, 0.48);
  background: radial-gradient(circle, rgba(29, 132, 125, 0.5), #101819 70%);
}

.flow-card {
  position: absolute;
  z-index: 2;
  min-width: 148px;
  padding: 0.9rem;
  border: 1px solid var(--line);
  background: rgba(7, 12, 13, 0.72);
  box-shadow: 0 16px 30px rgba(0,0,0,0.34);
}

.signal-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.signal-lines span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34%;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(99, 229, 216, 0.7), transparent);
  box-shadow: 0 0 18px rgba(99, 229, 216, 0.32);
  opacity: 0.7;
}

.signal-lines span:nth-child(1) { transform: rotate(24deg); }
.signal-lines span:nth-child(2) { transform: rotate(146deg); }
.signal-lines span:nth-child(3) { transform: rotate(212deg); }
.signal-lines span:nth-child(4) { transform: rotate(326deg); }

.metrics-bar,
.exchange-preview {
  max-width: 1280px;
  margin: 0 auto;
}

.metrics-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
}

.metrics-bar article {
  min-height: 126px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.045);
}

.metrics-bar span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text);
  font-size: clamp(1.35rem, 2.5vw, 2.3rem);
  font-weight: 900;
  line-height: 1;
}

.metrics-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.flow-card small,
.flow-card span {
  display: block;
  color: var(--dim);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.flow-card strong {
  display: block;
  margin: 0.28rem 0;
}

.flow-one { left: 7%; top: 18%; }
.flow-two { right: 7%; top: 22%; }
.flow-three { right: 11%; bottom: 17%; }

.audience-section,
.process-section,
.matrix-section,
.departments-section,
.offer-section,
.command-layer,
.forms-section,
.faq-section {
  max-width: 1280px;
  margin: 0 auto;
}

.section-intro,
.section-heading p {
  max-width: 760px;
}

.process-grid,
.audience-grid,
.agent-grid,
.matrix-grid,
.department-grid,
.offer-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

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

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

.process-grid article,
.audience-grid article,
.panel,
.agent-grid article,
.booking-card,
.contact-card,
.dashboard-panel,
.site-form,
.contact-list {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0,0,0,0.24);
}

.process-grid article {
  min-height: 260px;
  padding: 1.25rem;
}

.audience-grid article {
  min-height: 230px;
  padding: 1.35rem;
  background: linear-gradient(145deg, rgba(22, 30, 31, 0.86), rgba(8, 13, 14, 0.82));
}

.process-grid article span {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
}

.audience-grid article span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
}

.split-section {
  border-top: 1px solid var(--line);
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.panel {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.5rem 0;
  padding: 0;
  color: var(--text);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "◆";
}

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

.matrix-grid span {
  min-height: 84px;
  display: flex;
  align-items: center;
  color: var(--text);
  font-weight: 800;
}

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

.department-grid article {
  min-height: 190px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(20, 28, 29, 0.9), rgba(7, 12, 13, 0.82));
  box-shadow: 0 18px 50px rgba(0,0,0,0.2);
}

.department-grid strong,
.department-grid span {
  display: block;
}

.department-grid strong {
  margin-bottom: 0.65rem;
  color: var(--text);
  font-size: 1.05rem;
}

.department-grid span {
  color: var(--muted);
  line-height: 1.65;
}

.offer-section {
  padding-top: 0;
}

.offer-grid {
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.72fr));
  align-items: stretch;
}

.offer-main,
.pricing-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0,0,0,0.24);
}

.offer-main {
  padding: clamp(1.3rem, 3vw, 2rem);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  padding: 1.25rem;
  background: linear-gradient(145deg, rgba(18, 25, 26, 0.9), rgba(7, 12, 13, 0.82));
}

.pricing-card.featured {
  border-color: var(--line-bright);
  box-shadow: 0 0 36px rgba(99, 229, 216, 0.12), 0 18px 50px rgba(0,0,0,0.26);
}

.pricing-card span {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-card strong {
  display: block;
  margin: 0.9rem 0 0.55rem;
  color: var(--text);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
}

.pricing-card h3 {
  margin: 0 0 0.8rem;
  color: var(--steel);
  font-size: 1.2rem;
}

.pricing-card small {
  display: block;
  color: var(--dim);
  line-height: 1.55;
}

.mini-list {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
  list-style: none;
}

.mini-list li {
  position: relative;
  padding-left: 1rem;
}

.mini-list li::before {
  position: absolute;
  left: 0;
  color: var(--amber);
  content: "•";
}

.pricing-card.bronze {
  border-color: rgba(195, 164, 98, 0.28);
}

.pricing-card.silver {
  border-color: rgba(171, 184, 187, 0.42);
}

.pricing-card.gold {
  border-color: rgba(195, 164, 98, 0.62);
  box-shadow: 0 0 34px rgba(195, 164, 98, 0.1), 0 18px 50px rgba(0,0,0,0.26);
}

.process-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1rem;
  border: 1px solid var(--line);
  background: var(--line);
}

.process-ribbon span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0.8rem;
  color: var(--steel);
  background: rgba(8, 13, 14, 0.9);
  font-size: 0.85rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.command-layer {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.exchange-preview {
  padding-top: 0;
}

.exchange-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(99, 229, 216, 0.12), transparent 22rem),
    rgba(5, 10, 11, 0.58);
}

.board-column {
  min-height: 360px;
  border: 1px solid var(--line);
  background: rgba(13, 20, 21, 0.72);
  padding: 1rem;
}

.board-title {
  margin-bottom: 1rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.packet-card {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}

.packet-card small {
  color: var(--dim);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.packet-card strong {
  color: var(--text);
}

.packet-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.packet-card.active-packet {
  border-color: var(--line-bright);
  box-shadow: 0 0 24px rgba(99, 229, 216, 0.12);
}

.packet-card.verified {
  border-color: rgba(195, 164, 98, 0.48);
}

@keyframes scanSweep {
  from { transform: translateX(-24%) rotate(0deg); }
  to { transform: translateX(24%) rotate(0deg); }
}

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

.agent-grid article {
  min-height: 150px;
  padding: 1.25rem;
  background: linear-gradient(145deg, rgba(21, 29, 30, 0.92), rgba(8, 14, 15, 0.82));
}

.agent-grid strong,
.agent-grid span {
  display: block;
}

.agent-grid strong {
  margin-bottom: 0.5rem;
  color: var(--teal);
  letter-spacing: 0.12em;
}

.agent-grid span {
  color: var(--muted);
}

.submission-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 0;
}

.submission-strip article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 96px;
  padding: 1.25rem;
  background: rgba(255,255,255,0.045);
}

.submission-strip span {
  color: var(--muted);
}

.submission-strip a {
  color: var(--teal);
  font-weight: 900;
}

.conversion-section {
  align-items: stretch;
}

.booking-card,
.contact-card {
  padding: clamp(1.4rem, 3.4vw, 2.6rem);
}

.booking-card small {
  display: block;
  margin-top: 0.85rem;
  color: var(--dim);
}

.forms-section.compact {
  padding-top: 0;
}

.faq-section {
  padding-top: 0;
}

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

.faq-grid details {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 1.1rem 1.25rem;
}

.faq-grid summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
}

.faq-grid p {
  margin: 0.8rem 0 0;
}

.site-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  padding: clamp(1.1rem, 3vw, 2rem);
}

.site-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--steel);
  font-size: 0.86rem;
  font-weight: 800;
}

.site-form .full,
.site-form button {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(184, 210, 209, 0.22);
  border-radius: 0;
  background: rgba(5, 10, 11, 0.86);
  color: var(--text);
  padding: 0.85rem 0.9rem;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--line-bright);
  box-shadow: 0 0 0 3px rgba(99, 229, 216, 0.1);
}

textarea {
  resize: vertical;
}

.dashboard-preview {
  border-top: 1px solid var(--line);
}

.dashboard-panel {
  min-height: 360px;
  padding: 1rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 58% 20%, rgba(99, 229, 216, 0.13), transparent 12rem),
    rgba(13, 20, 21, 0.92);
}

.panel-top {
  height: 56px;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(99, 229, 216, 0.18), rgba(255,255,255,0.035));
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
  margin: 1rem 0;
}

.panel-grid span {
  min-height: 96px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
}

.panel-lines {
  display: grid;
  gap: 0.6rem;
}

.panel-lines span {
  height: 15px;
  width: 100%;
  background: linear-gradient(90deg, rgba(99, 229, 216, 0.35), rgba(255,255,255,0.04));
}

.panel-lines span:nth-child(2) { width: 78%; }
.panel-lines span:nth-child(3) { width: 54%; }

.contact-section {
  align-items: start;
}

.contact-list {
  display: grid;
}

.contact-list a {
  padding: 1.2rem;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-weight: 900;
}

.contact-list a:last-child {
  border-bottom: 0;
}

.page-hero,
.page-section,
.page-cta,
.article-section,
.booking-page,
.contact-page {
  max-width: 1180px;
  margin: 0 auto;
}

.page-hero {
  padding-top: clamp(5rem, 10vw, 8rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero p {
  max-width: 760px;
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
}

.page-section.two-column,
.page-section.three-column,
.article-section,
.booking-page,
.contact-page {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.page-section.two-column,
.article-section,
.booking-page,
.contact-page {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.step-list {
  display: grid;
  gap: 1rem;
}

.step-list article,
.page-cta,
.booking-embed {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0,0,0,0.24);
}

.step-list article {
  display: grid;
  grid-template-columns: 80px minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
}

.step-list span {
  color: var(--teal);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.step-list h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
}

.step-list p {
  margin: 0;
}

.page-cta,
.booking-embed {
  padding: clamp(1.3rem, 3vw, 2.4rem);
}

.booking-embed {
  min-height: 380px;
}

.article-copy {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: clamp(1.3rem, 3vw, 2.4rem);
}

.pricing-table {
  display: grid;
  border: 1px solid var(--line);
  background: var(--panel);
}

.pricing-table div {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1.4fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

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

.pricing-table strong {
  color: var(--teal);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-hero,
.market-dashboard,
.department-pulse,
.agent-attribution {
  max-width: 1320px;
  margin: 0 auto;
}

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  padding-top: clamp(5rem, 10vw, 8rem);
}

.pulse-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.pulse-summary article {
  min-height: 132px;
  padding: 1.1rem;
  background: rgba(10, 16, 17, 0.92);
}

.pulse-summary span {
  display: block;
  color: var(--teal);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
}

.pulse-summary p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.market-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: 1rem;
  padding-top: 0;
}

.dashboard-panel-wide,
.dashboard-side {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0,0,0,0.24);
  padding: 1rem;
}

.panel-heading h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.signal-feed {
  display: grid;
  gap: 0.65rem;
}

.signal-feed article {
  display: grid;
  grid-template-columns: minmax(180px, 1.2fr) auto auto auto auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
}

.signal-feed strong,
.signal-feed span,
.signal-feed small {
  display: block;
}

.signal-feed div span,
.signal-feed small {
  color: var(--dim);
  font-size: 0.74rem;
}

.signal-feed p {
  grid-column: 1 / -2;
  margin: 0;
  font-size: 0.86rem;
}

.status {
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status.new { color: var(--teal); }
.status.review { color: var(--amber); }
.status.qualified { color: #b8ffd9; }
.status.contacted { color: var(--steel); }
.status.archived { color: var(--dim); }

.pulse-pipeline {
  display: grid;
  gap: 0.65rem;
}

.pulse-pipeline article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}

.pulse-pipeline strong {
  color: var(--teal);
  font-size: 1.6rem;
}

.operator-actions {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.operator-actions button {
  min-height: 42px;
  border: 1px solid var(--line);
  color: var(--steel);
  background: rgba(255,255,255,0.035);
  font-weight: 900;
}

.traffic-section {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 0;
}

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

.traffic-grid article {
  min-height: 260px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(18, 25, 26, 0.88), rgba(7, 12, 13, 0.82));
  box-shadow: 0 18px 50px rgba(0,0,0,0.2);
}

.traffic-grid strong {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--teal);
  font-size: 1rem;
}

.traffic-grid p {
  margin: 0;
  font-size: 0.9rem;
}

.contact-form {
  margin-top: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(5, 9, 10, 0.92);
}

.site-footer strong,
.site-footer span,
.site-footer p {
  display: block;
  margin: 0;
}

.site-footer strong {
  color: var(--text);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.site-footer p {
  grid-column: 1 / -1;
  color: var(--dim);
  font-size: 0.84rem;
}

@media (max-width: 1080px) {
  .site-nav {
    position: fixed;
    top: 78px;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    background: rgba(8, 13, 14, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .section-grid,
  .split-section,
  .conversion-section,
  .dashboard-preview,
  .contact-section,
  .command-layer {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .audience-grid,
  .matrix-grid,
  .department-grid,
  .offer-grid,
  .metrics-bar,
  .exchange-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-main {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 0.82rem;
  }

  h1 {
    font-size: clamp(2.6rem, 16vw, 4.8rem);
  }

  .command-visual {
    min-height: 500px;
  }

  .honeycomb {
    transform: scale(0.78);
  }

  .flow-card {
    position: relative;
    inset: auto;
    width: calc(100% - 2rem);
    margin-top: 0.7rem;
  }

  .command-visual {
    align-content: center;
    padding: 1rem;
  }

  .process-grid,
  .audience-grid,
  .matrix-grid,
  .department-grid,
  .offer-grid,
  .metrics-bar,
  .exchange-board,
  .agent-grid,
  .faq-grid,
  .submission-strip,
  .process-ribbon,
  .site-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-form .full,
  .site-form button {
    grid-column: auto;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .page-section.two-column,
  .page-section.three-column,
  .article-section,
  .dashboard-hero,
  .market-dashboard,
  .traffic-grid,
  .booking-page,
  .contact-page,
  .step-list article {
    grid-template-columns: 1fr;
  }
}
