:root {
  --bg: #061016;
  --bg-2: #091821;
  --panel: rgba(10, 22, 29, 0.78);
  --panel-strong: rgba(12, 26, 34, 0.92);
  --line: rgba(226, 197, 139, 0.18);
  --line-cool: rgba(142, 186, 201, 0.18);
  --gold: #e9bf78;
  --gold-2: #ffd995;
  --cream: #f6efe4;
  --muted: #b8c4c8;
  --dim: #7e9098;
  --teal: #5fd0bd;
  --blue: #80d8ff;
  --plum: #b884ff;
  --danger: #f9a96e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(233, 191, 120, 0.08), transparent 32rem),
    linear-gradient(180deg, #040a0f 0%, var(--bg) 34%, #07131a 100%);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(233, 191, 120, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233, 191, 120, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 70%);
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: rgba(233, 191, 120, 0.32);
  color: #fff8ec;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border: 1px solid var(--gold);
  border-radius: 6px;
  background: #07131a;
  color: var(--cream);
  padding: 10px 14px;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(226, 197, 139, 0.14);
  background: rgba(4, 12, 17, 0.74);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1240px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(233, 191, 120, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.3), transparent 18px),
    linear-gradient(145deg, rgba(233, 191, 120, 0.16), rgba(127, 230, 255, 0.08)),
    #07131a;
  color: var(--gold);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 24px rgba(233, 191, 120, 0.1);
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
}

.brand-mark svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.8;
  filter: drop-shadow(0 0 8px rgba(127, 230, 255, 0.32));
}

.brand-mark svg:not(.lucide) {
  overflow: visible;
}

.brand-mark::before {
  content: "";
  width: 26px;
  height: 26px;
  display: block;
  background: url("diamond-gem.svg") center / contain no-repeat;
  filter: drop-shadow(0 0 9px rgba(127, 230, 255, 0.38));
}

.brand-mark > svg,
.brand-mark > i {
  display: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
}

.main-nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--gold-2);
  border-color: rgba(233, 191, 120, 0.6);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.1;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button svg {
  width: 17px;
  height: 17px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 12px;
}

.button-gold {
  background: linear-gradient(180deg, #ffdda3 0%, #e7b56e 100%);
  color: #1d1710;
  box-shadow: 0 14px 34px rgba(233, 191, 120, 0.2);
}

.button-dark,
.button-ghost {
  border-color: rgba(226, 197, 139, 0.28);
  background: rgba(6, 16, 22, 0.72);
  color: var(--cream);
}

.button-ghost {
  min-width: 76px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(226, 197, 139, 0.24);
  border-radius: 6px;
  background: rgba(6, 16, 22, 0.78);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--cream);
}

.hero-section {
  position: relative;
  min-height: min(790px, 78vh);
  display: flex;
  align-items: center;
  padding: 112px 0 48px;
  overflow: hidden;
  border-bottom: 1px solid rgba(226, 197, 139, 0.14);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 10, 15, 0.94) 0%, rgba(4, 10, 15, 0.72) 33%, rgba(4, 10, 15, 0.28) 58%, rgba(4, 10, 15, 0.82) 100%),
    linear-gradient(180deg, rgba(4, 10, 15, 0.48) 0%, rgba(4, 10, 15, 0.05) 42%, rgba(4, 10, 15, 0.92) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 56px;
}

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

.eyebrow,
.section-kicker {
  margin-bottom: 20px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(226, 197, 139, 0.24);
  border-radius: 999px;
  background: rgba(6, 16, 22, 0.72);
  padding: 8px 11px 8px 14px;
}

.eyebrow strong {
  border: 1px solid rgba(233, 191, 120, 0.32);
  border-radius: 999px;
  padding: 3px 8px;
  color: #1c1710;
  background: var(--gold);
  font-size: 10px;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
}

h1 {
  max-width: 640px;
  margin-bottom: 24px;
  font-size: 56px;
  color: #fff7e9;
}

.hero-lede {
  max-width: 600px;
  margin-bottom: 30px;
  color: #d7e0e2;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #dce6e8;
  font-size: 13px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
}

.hero-intel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin-top: 24px;
}

.hero-intel span {
  min-height: 78px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(226, 197, 139, 0.14);
  border-radius: 8px;
  background: rgba(5, 14, 20, 0.58);
  padding: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-intel strong {
  color: #fff8ec;
  font-size: 13px;
}

.hero-intel em {
  color: var(--dim);
  font-size: 11px;
  font-style: normal;
  line-height: 1.35;
}

.assistant-card {
  width: 100%;
  border: 1px solid rgba(226, 197, 139, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(10, 22, 29, 0.74), rgba(4, 12, 18, 0.62)),
    radial-gradient(circle at 18% 0%, rgba(127, 230, 255, 0.1), transparent 14rem);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(22px) saturate(1.25);
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.assistant-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 28%, transparent 72%, rgba(233, 191, 120, 0.08)),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 100% 34px;
  opacity: 0.48;
}

.assistant-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.assistant-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, 0.3), transparent 21px),
    linear-gradient(145deg, rgba(233, 191, 120, 0.18), rgba(127, 230, 255, 0.1)),
    rgba(6, 16, 22, 0.9);
  color: var(--gold);
  border: 1px solid rgba(233, 191, 120, 0.24);
}

.assistant-avatar::before {
  content: "";
  width: 31px;
  height: 31px;
  display: block;
  background: url("diamond-gem.svg") center / contain no-repeat;
  filter: drop-shadow(0 0 10px rgba(127, 230, 255, 0.36));
}

.assistant-avatar > svg,
.assistant-avatar > i {
  display: none;
}

.assistant-head h2 {
  margin-bottom: 0;
  font-family: inherit;
  font-size: 15px;
  font-weight: 750;
}

.assistant-head p {
  margin-bottom: 0;
  color: var(--teal);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(95, 208, 189, 0.12), 0 0 14px rgba(95, 208, 189, 0.8);
}

.assistant-live-bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.assistant-live-bar span {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(226, 197, 139, 0.13);
  border-radius: 6px;
  background: rgba(2, 8, 12, 0.28);
  color: #dfe9eb;
  font-size: 11px;
  font-weight: 750;
}

.assistant-live-bar svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.icon-button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(226, 197, 139, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.icon-button svg {
  width: 16px;
  height: 16px;
}

.chat-messages {
  position: relative;
  z-index: 1;
  height: 142px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 3px;
}

.chat-bubble {
  max-width: 86%;
  border-radius: 8px;
  padding: 11px 12px;
  color: #eaf2f3;
  font-size: 13px;
  line-height: 1.45;
  backdrop-filter: blur(10px);
}

.chat-bubble p {
  margin: 0;
}

.chat-bubble small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 217, 149, 0.86);
  font-size: 10px;
  line-height: 1.35;
}

.chat-bubble.bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.105);
}

.chat-bubble.user {
  align-self: flex-end;
  color: #1b1711;
  background: rgba(255, 217, 149, 0.92);
}

.chat-bubble.typing {
  min-width: 74px;
  display: inline-flex;
  gap: 5px;
}

.chat-bubble.typing i {
  width: 6px;
  height: 6px;
  display: block;
  border-radius: 50%;
  background: var(--gold-2);
  animation: typingPulse 1s ease-in-out infinite;
}

.chat-bubble.typing i:nth-child(2) {
  animation-delay: 0.14s;
}

.chat-bubble.typing i:nth-child(3) {
  animation-delay: 0.28s;
}

.assistant-status {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 14px;
}

.assistant-status span {
  min-height: 50px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(95, 208, 189, 0.14);
  border-radius: 6px;
  background: rgba(95, 208, 189, 0.07);
  color: #dbe8e8;
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
}

.assistant-status svg {
  width: 15px;
  height: 15px;
  color: var(--teal);
}

.quick-replies {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0;
}

.quick-replies button {
  min-height: 42px;
  border: 1px solid rgba(226, 197, 139, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--cream);
  text-align: left;
  padding: 0 10px;
  font-size: 12px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.quick-replies button:hover,
.quick-replies button:focus-visible {
  border-color: rgba(233, 191, 120, 0.52);
  background: rgba(233, 191, 120, 0.08);
}

.assistant-input {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 8px;
}

.assistant-input input,
.demo-form input,
.demo-form select,
.newsletter-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(226, 197, 139, 0.18);
  border-radius: 6px;
  background: rgba(2, 8, 12, 0.48);
  color: var(--cream);
  padding: 0 12px;
  outline: none;
}

.assistant-input input:focus,
.demo-form input:focus,
.demo-form select:focus,
.newsletter-form input:focus {
  border-color: rgba(233, 191, 120, 0.62);
  box-shadow: 0 0 0 3px rgba(233, 191, 120, 0.12);
}

.assistant-input button,
.newsletter-form button {
  width: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 6px;
  background: var(--gold-2);
  color: #1b1711;
}

.section {
  padding: 92px 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 38px;
  text-align: center;
}

.section-head.compact {
  max-width: 700px;
}

.section-head h2,
.section-copy h2,
.trust-layout h2,
.final-cta h2 {
  margin-bottom: 16px;
  color: #ffe5b7;
  font-size: 36px;
}

.section-head p,
.section-copy p,
.trust-layout p,
.final-cta p,
.price-card p,
.feature-card p,
.audience-card p {
  color: var(--muted);
}

.feature-section {
  background: linear-gradient(180deg, #07131a 0%, #081820 100%);
}

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

.feature-card,
.audience-card,
.price-card,
.testimonial-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(17, 35, 44, 0.74), rgba(9, 22, 30, 0.74));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.feature-card::before,
.audience-card::before,
.price-card::before,
.testimonial-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 217, 149, 0.62), transparent);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.feature-card:hover,
.audience-card:hover,
.price-card:hover,
.testimonial-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(233, 191, 120, 0.34);
  background: linear-gradient(180deg, rgba(20, 42, 52, 0.82), rgba(9, 22, 30, 0.8));
}

.feature-card:hover::before,
.audience-card:hover::before,
.price-card:hover::before,
.testimonial-grid article:hover::before {
  opacity: 1;
}

.feature-card {
  min-height: 186px;
  padding: 24px;
}

.feature-card > svg,
.audience-card > svg {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--gold);
  stroke-width: 1.6;
}

.feature-card h3,
.audience-card h3,
.workflow h3,
.price-card h3 {
  margin-bottom: 10px;
  color: #fff8ed;
  font-size: 20px;
  line-height: 1.2;
}

.feature-card p,
.audience-card p,
.workflow p,
.price-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.metrics-row div {
  min-height: 108px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(128, 216, 255, 0.1);
  border-radius: 8px;
  background: rgba(15, 40, 52, 0.72);
}

.metrics-row strong {
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
}

.metrics-row span {
  color: #d9e4e7;
  font-size: 13px;
}

.ngo-section,
.workflow-section,
.pricing-section {
  background: linear-gradient(180deg, #081820, #061016);
}

.split-layout,
.about-layout,
.trust-layout,
.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 52px;
  align-items: center;
}

.section-copy {
  max-width: 610px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.check-list span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #e7eef0;
}

.check-list svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex: 0 0 auto;
  margin-top: 3px;
}

.ops-panel {
  border: 1px solid rgba(226, 197, 139, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(14, 30, 39, 0.92), rgba(7, 17, 24, 0.92));
  box-shadow: var(--shadow);
  padding: 22px;
}

.ops-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--cream);
  font-weight: 800;
}

.ops-head strong {
  color: var(--teal);
  font-size: 12px;
}

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

.ops-list div {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  padding: 10px 12px;
}

.ops-list svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.ops-list span {
  color: #edf5f6;
  font-size: 14px;
}

.ops-list strong {
  color: var(--gold-2);
  font-size: 11px;
  text-transform: uppercase;
}

.audience-section {
  background: #061016;
}

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

.audience-card {
  scroll-margin-top: 102px;
  padding: 26px;
}

.mini-form {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.mini-form span {
  min-height: 38px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(226, 197, 139, 0.14);
  border-radius: 6px;
  background: rgba(3, 11, 16, 0.56);
  color: #dfe9eb;
  padding: 0 11px;
  font-size: 12px;
}

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

.workflow article {
  position: relative;
  min-height: 220px;
  border: 1px solid rgba(226, 197, 139, 0.18);
  border-radius: 8px;
  background: rgba(10, 24, 32, 0.72);
  padding: 24px 18px 20px;
}

.workflow article::after {
  content: "";
  position: absolute;
  top: 48px;
  right: -22px;
  width: 28px;
  height: 1px;
  background: rgba(233, 191, 120, 0.34);
}

.workflow article:last-child::after {
  display: none;
}

.workflow span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--dim);
  font-size: 12px;
  font-weight: 800;
}

.workflow svg {
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  color: var(--gold);
  stroke-width: 1.6;
}

.workflow p {
  color: var(--muted);
}

.trust-band {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  border-block: 1px solid rgba(226, 197, 139, 0.14);
  background:
    linear-gradient(90deg, rgba(5, 13, 19, 0.94), rgba(8, 26, 34, 0.78)),
    url("hero-diamond-support.png") center 58% / cover;
}

.trust-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
}

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

.trust-items span {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(226, 197, 139, 0.2);
  border-radius: 8px;
  background: rgba(4, 12, 18, 0.64);
  color: #edf5f7;
  padding: 0 16px;
  font-weight: 700;
}

.trust-items svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.dashboard-section {
  background: linear-gradient(180deg, #061016, #081821);
}

.dashboard-frame {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 610px;
  border: 1px solid rgba(226, 197, 139, 0.2);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(10, 23, 31, 0.92), rgba(7, 17, 24, 0.92));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dashboard-sidebar {
  border-right: 1px solid rgba(226, 197, 139, 0.12);
  background: rgba(4, 12, 17, 0.36);
  padding: 20px 14px;
}

.brand.mini {
  font-size: 12px;
  margin-bottom: 26px;
}

.brand.mini .brand-mark {
  width: 28px;
  height: 28px;
}

.dashboard-sidebar nav {
  display: grid;
  gap: 7px;
}

.dashboard-sidebar span {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  color: var(--muted);
  padding: 0 10px;
  font-size: 12px;
}

.dashboard-sidebar span.active {
  background: rgba(233, 191, 120, 0.1);
  color: var(--cream);
}

.dashboard-sidebar svg {
  width: 15px;
  height: 15px;
}

.dashboard-main {
  min-width: 0;
  padding: 22px;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 18px;
}

.dashboard-top span {
  color: var(--dim);
  font-size: 12px;
}

.dashboard-top h3 {
  margin-bottom: 0;
  color: #fff7e8;
  font-size: 24px;
}

.status-chip {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(95, 208, 189, 0.22);
  border-radius: 999px;
  background: rgba(95, 208, 189, 0.08);
  color: var(--teal) !important;
  padding: 0 12px;
}

.status-chip svg {
  width: 15px;
  height: 15px;
}

.insight-ribbon {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 74px;
  border: 1px solid rgba(233, 191, 120, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(233, 191, 120, 0.1), rgba(95, 208, 189, 0.06)),
    rgba(5, 15, 22, 0.72);
  margin-bottom: 14px;
  padding: 14px 16px;
}

.insight-ribbon div {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px 140px 1fr;
  align-items: center;
  gap: 12px;
}

.insight-ribbon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.insight-ribbon span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-ribbon strong {
  color: #edf5f6;
  font-size: 13px;
  font-weight: 700;
}

.insight-ribbon button {
  min-height: 38px;
  border: 1px solid rgba(226, 197, 139, 0.28);
  border-radius: 6px;
  background: rgba(6, 16, 22, 0.72);
  color: #fff8ec;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.dashboard-metrics div,
.dash-panel {
  border: 1px solid rgba(226, 197, 139, 0.12);
  border-radius: 8px;
  background: rgba(5, 15, 22, 0.72);
}

.dashboard-metrics div {
  min-height: 116px;
  padding: 16px;
}

.dashboard-metrics span {
  display: block;
  margin-bottom: 12px;
  color: var(--dim);
  font-size: 12px;
}

.dashboard-metrics strong {
  display: block;
  color: #fff8ec;
  font-size: 32px;
  line-height: 1;
}

.dashboard-metrics em {
  display: block;
  margin-top: 10px;
  color: var(--teal);
  font-size: 12px;
  font-style: normal;
}

.dashboard-metrics em.warning {
  color: var(--danger);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 14px;
}

.dash-panel {
  padding: 16px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.panel-head h4 {
  margin-bottom: 0;
  color: #fff8ec;
  font-size: 15px;
}

.panel-head span {
  color: var(--gold);
  font-size: 11px;
}

.line-chart {
  width: 100%;
  height: 220px;
  overflow: visible;
}

.grid-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.area {
  fill: url("#lineFill");
}

.line {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-blue {
  stroke: var(--blue);
}

.line-gold {
  stroke: var(--gold);
}

.line-teal {
  stroke: var(--teal);
}

.question-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.question-list li,
.ticket-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #dfe9ec;
  font-size: 13px;
}

.question-list strong {
  color: var(--muted);
}

.tickets-panel,
.campaign-panel {
  min-height: 210px;
}

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

.ticket-list div {
  min-height: 34px;
  align-items: center;
}

.ticket-list strong {
  border-radius: 999px;
  background: rgba(233, 191, 120, 0.1);
  color: var(--gold-2);
  padding: 3px 8px;
  font-size: 11px;
}

.donut-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 18px;
}

.donut {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--teal) 0 45%, var(--blue) 45% 75%, var(--gold) 75% 90%, var(--plum) 90% 100%);
  position: relative;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: #07131a;
}

.donut span {
  position: relative;
  z-index: 1;
  color: #fff8ec;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  line-height: 1.25;
}

.donut-row ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.donut-row li {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  align-items: center;
  gap: 8px;
  color: #dbe7e9;
  font-size: 12px;
}

.legend {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.legend.teal {
  background: var(--teal);
}

.legend.blue {
  background: var(--blue);
}

.legend.gold {
  background: var(--gold);
}

.legend.plum {
  background: var(--plum);
}

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

.price-card {
  display: flex;
  min-height: 442px;
  flex-direction: column;
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(233, 191, 120, 0.46);
  background: linear-gradient(180deg, rgba(37, 39, 34, 0.86), rgba(11, 24, 31, 0.9));
}

.plan-label {
  margin-bottom: 16px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  padding-left: 19px;
  color: #dfe9eb;
}

.price-card .button {
  margin-top: auto;
}

.about-section {
  background: #061016;
}

.about-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
}

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

.testimonial-grid article {
  min-height: 224px;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.testimonial-grid p {
  color: #dbe7e9;
  font-size: 13px;
}

.testimonial-grid span {
  margin-top: auto;
  color: #fff7e8;
  font-weight: 800;
}

.testimonial-grid strong {
  color: var(--dim);
  font-size: 12px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  border-block: 1px solid rgba(226, 197, 139, 0.14);
  background:
    linear-gradient(90deg, rgba(4, 10, 15, 0.96), rgba(7, 18, 24, 0.72), rgba(4, 10, 15, 0.92)),
    url("hero-diamond-support.png") center 72% / cover;
}

.page-main {
  padding-top: 72px;
}

.page-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(226, 197, 139, 0.14);
  background: #061016;
}

.page-hero.slim {
  min-height: 430px;
  text-align: center;
}

.page-hero.form-hero {
  min-height: calc(100vh - 72px);
  padding: 80px 0;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 10, 15, 0.96), rgba(4, 10, 15, 0.7), rgba(4, 10, 15, 0.9)),
    url("hero-diamond-support.png") center / cover;
  opacity: 0.9;
}

.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(233, 191, 120, 0.16), transparent 24rem),
    linear-gradient(180deg, rgba(4, 10, 15, 0.22), rgba(4, 10, 15, 0.92));
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 52px;
  align-items: center;
}

.page-hero h1,
.dashboard-page h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: #fff7e9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.08;
}

.page-hero p,
.dashboard-page .section-head p {
  max-width: 660px;
  color: #d7e0e2;
  font-size: 17px;
}

.center-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.center-copy .eyebrow {
  justify-self: center;
}

.center-copy h1,
.center-copy p {
  margin-left: auto;
  margin-right: auto;
}

.page-signal-card,
.journey-card,
.application-card,
.case-card {
  position: relative;
  border: 1px solid rgba(226, 197, 139, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(13, 30, 39, 0.9), rgba(6, 16, 22, 0.88));
  box-shadow: var(--shadow);
  padding: 26px;
}

.page-signal-card span,
.journey-card h2,
.application-card h2,
.case-card h2 {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-signal-card strong {
  display: block;
  margin-bottom: 10px;
  color: #fff8ec;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
}

.page-signal-card p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
}

.signal-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 8px;
  height: 74px;
}

.signal-bars i {
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, var(--gold-2), rgba(95, 208, 189, 0.55));
}

.signal-bars i:nth-child(1) {
  height: 38%;
}

.signal-bars i:nth-child(2) {
  height: 58%;
}

.signal-bars i:nth-child(3) {
  height: 78%;
}

.signal-bars i:nth-child(4) {
  height: 96%;
}

.capability-grid,
.process-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.capability-grid article,
.process-grid article,
.faq-grid article {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(17, 35, 44, 0.74), rgba(9, 22, 30, 0.74));
  padding: 26px;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.capability-grid article:hover,
.process-grid article:hover,
.faq-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(233, 191, 120, 0.34);
}

.capability-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--gold);
  stroke-width: 1.6;
}

.capability-grid h2,
.process-grid h2,
.faq-grid h2 {
  margin-bottom: 10px;
  color: #fff8ec;
  font-family: inherit;
  font-size: 20px;
  line-height: 1.25;
}

.capability-grid p,
.process-grid p,
.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.process-grid article span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--gold);
  font-weight: 850;
  letter-spacing: 0.14em;
}

.muted-section {
  background: linear-gradient(180deg, rgba(8, 24, 32, 0.96), rgba(6, 16, 22, 0.96));
}

.feature-table {
  display: grid;
  gap: 28px;
}

.table-card {
  overflow: hidden;
  border: 1px solid rgba(226, 197, 139, 0.18);
  border-radius: 8px;
  background: rgba(5, 15, 22, 0.72);
}

.table-card > div {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.1fr;
  gap: 18px;
  border-bottom: 1px solid rgba(226, 197, 139, 0.1);
  padding: 16px 18px;
}

.table-card > div:first-child {
  color: var(--gold-2);
  background: rgba(233, 191, 120, 0.07);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.table-card span {
  color: #dfe9eb;
  font-size: 14px;
}

.journey-card ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  counter-reset: journey;
  list-style: none;
}

.journey-card li {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #edf5f6;
}

.journey-card li::before {
  counter-increment: journey;
  content: counter(journey, decimal-leading-zero);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(233, 191, 120, 0.28);
  border-radius: 6px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 850;
}

.application-card,
.case-card {
  display: grid;
  gap: 11px;
}

.application-card span,
.case-card span {
  min-height: 42px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(226, 197, 139, 0.14);
  border-radius: 6px;
  background: rgba(2, 8, 12, 0.44);
  color: #dfe9eb;
  padding: 0 12px;
  font-size: 13px;
}

.quote-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(226, 197, 139, 0.2);
  border-radius: 8px;
  background: rgba(5, 15, 22, 0.72);
  padding: 34px;
}

.quote-band p {
  margin-bottom: 0;
  color: #ffe5b7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.2;
}

.roadmap {
  display: grid;
  gap: 24px;
}

.roadmap ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap li {
  min-height: 180px;
  border: 1px solid rgba(226, 197, 139, 0.18);
  border-radius: 8px;
  background: rgba(5, 15, 22, 0.72);
  padding: 24px;
}

.roadmap strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-2);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.dashboard-page {
  padding-top: 82px;
}

.dashboard-page .section-head h1 {
  margin-left: auto;
  margin-right: auto;
}

.compact-footer {
  border-top: 1px solid rgba(226, 197, 139, 0.12);
}

.demo-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(226, 197, 139, 0.22);
  border-radius: 8px;
  background: rgba(6, 16, 22, 0.78);
  box-shadow: var(--shadow);
  padding: 22px;
}

.demo-form label {
  display: grid;
  gap: 7px;
  color: #eaf2f3;
  font-size: 13px;
  font-weight: 700;
}

.demo-form select {
  appearance: none;
}

.form-note,
.newsletter-form span {
  min-height: 22px;
  margin: 0;
  color: var(--teal);
  font-size: 13px;
}

.site-footer {
  padding: 58px 0 28px;
  background: #050d12;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(2, minmax(130px, 0.7fr)) minmax(240px, 1fr);
  gap: 38px;
  padding-bottom: 34px;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 340px;
  color: var(--dim);
  font-size: 14px;
}

.site-footer nav,
.newsletter-form {
  display: grid;
  align-content: start;
  gap: 9px;
}

.site-footer h2 {
  margin: 0 0 7px;
  color: #fff7e8;
  font-family: inherit;
  font-size: 15px;
}

.site-footer a {
  color: var(--muted);
  font-size: 14px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold-2);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(226, 197, 139, 0.16);
  border-radius: 6px;
}

.social-links svg {
  width: 16px;
  height: 16px;
}

.newsletter-form div {
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 8px;
}

.copyright {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  border-top: 1px solid rgba(226, 197, 139, 0.1);
  padding-top: 22px;
  color: var(--dim);
  text-align: center;
  font-size: 12px;
}

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

.reveal {
  opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-media img {
    animation: heroDrift 18s ease-in-out infinite alternate;
  }

  .button-gold {
    position: relative;
    overflow: hidden;
  }

  .button-gold::after {
    content: "";
    position: absolute;
    inset: -60% auto -60% -45%;
    width: 42%;
    transform: skewX(-18deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: buttonSweep 5.8s ease-in-out infinite;
  }

  .button-gold > * {
    position: relative;
    z-index: 1;
  }

  .reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.65s ease, transform 0.65s ease, filter 0.65s ease;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: brightness(1.08);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.035);
  }
}

@keyframes buttonSweep {
  0%,
  58% {
    transform: translateX(0) skewX(-18deg);
    opacity: 0;
  }

  68% {
    opacity: 0.75;
  }

  84%,
  100% {
    transform: translateX(390%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes typingPulse {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }

  40% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

@media (max-width: 1120px) {
  .nav-shell {
    grid-template-columns: auto auto auto;
  }

  .main-nav {
    gap: 12px;
    font-size: 12px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
  }

  h1 {
    font-size: 56px;
  }

  .dashboard-frame {
    grid-template-columns: 180px 1fr;
  }

  .insight-ribbon div {
    grid-template-columns: 30px 1fr;
  }

  .insight-ribbon strong {
    grid-column: 2;
  }

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

  .workflow article::after {
    display: none;
  }

  .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    gap: 34px;
  }

  .page-hero h1,
  .dashboard-page h1 {
    font-size: 42px;
  }
}

@media (max-width: 920px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    inset: 72px 16px auto 16px;
    display: none;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(226, 197, 139, 0.2);
    border-radius: 8px;
    background: rgba(5, 13, 18, 0.97);
    padding: 12px;
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    min-height: 44px;
    border-bottom: 0;
    border-radius: 6px;
    padding: 0 12px;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a.is-active {
    background: rgba(233, 191, 120, 0.08);
  }

  .nav-actions {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding: 96px 0 36px;
  }

  .hero-grid,
  .split-layout,
  .about-layout,
  .trust-layout,
  .cta-layout,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .assistant-card {
    max-width: 480px;
  }

  .hero-intel {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

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

  .dashboard-frame {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(226, 197, 139, 0.12);
  }

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

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

  .insight-ribbon {
    grid-template-columns: 1fr;
  }

  .insight-ribbon button {
    justify-self: start;
  }

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

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

  .page-hero {
    min-height: auto;
    padding: 76px 0;
  }

  .page-hero.form-hero {
    min-height: auto;
  }

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

  .table-card {
    overflow-x: auto;
  }

  .table-card > div {
    min-width: 760px;
  }

  .quote-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(1180px, calc(100% - 28px));
  }

  .nav-shell {
    width: min(1240px, calc(100% - 24px));
    min-height: 66px;
  }

  .main-nav {
    inset: 66px 12px auto 12px;
  }

  .hero-section {
    padding-top: 88px;
    padding-bottom: 28px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 10, 15, 0.94), rgba(4, 10, 15, 0.54)),
      linear-gradient(180deg, rgba(4, 10, 15, 0.48), rgba(4, 10, 15, 0.92));
  }

  .hero-media img {
    object-position: 58% center;
  }

  .eyebrow {
    max-width: 100%;
    flex-wrap: wrap;
    border-radius: 8px;
    letter-spacing: 0.08em;
  }

  h1 {
    font-size: 38px;
    overflow-wrap: break-word;
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 22px;
  }

  .hero-proof {
    display: grid;
    gap: 10px;
  }

  .assistant-card {
    display: none;
  }

  .hero-intel {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .section-head {
    margin-bottom: 28px;
    text-align: left;
  }

  .section-head h2,
  .section-copy h2,
  .trust-layout h2,
  .final-cta h2 {
    font-size: 30px;
    overflow-wrap: break-word;
  }

  .feature-grid,
  .audience-grid,
  .metrics-row,
  .pricing-grid,
  .trust-items,
  .workflow,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metrics-row div {
    min-height: 96px;
  }

  .dashboard-frame {
    min-height: auto;
  }

  .dashboard-main {
    padding: 14px;
  }

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

  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .dashboard-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .insight-ribbon div {
    grid-template-columns: 28px 1fr;
  }

  .insight-ribbon strong {
    grid-column: 1 / -1;
  }

  .line-chart {
    height: 168px;
  }

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

  .final-cta,
  .trust-band {
    padding: 64px 0;
  }

  .page-main {
    padding-top: 66px;
  }

  .page-hero {
    padding: 58px 0;
  }

  .page-hero h1,
  .dashboard-page h1 {
    font-size: 34px;
  }

  .page-hero p,
  .dashboard-page .section-head p {
    font-size: 16px;
  }

  .capability-grid,
  .process-grid,
  .faq-grid,
  .roadmap ol {
    grid-template-columns: 1fr;
  }

  .capability-grid article,
  .process-grid article,
  .faq-grid article {
    min-height: auto;
  }

  .page-signal-card strong {
    font-size: 48px;
  }

  .quote-band p {
    font-size: 24px;
  }
}

@media (max-width: 520px) {
  .shell,
  .nav-shell {
    width: min(362px, calc(100% - 28px));
    margin-left: 14px;
    margin-right: auto;
  }

  .brand {
    font-size: 14px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  h1 {
    font-size: 32px;
  }

  .section-head h2,
  .section-copy h2,
  .trust-layout h2,
  .final-cta h2 {
    font-size: 28px;
  }

  .page-hero h1,
  .dashboard-page h1 {
    font-size: 31px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .feature-card,
  .audience-card,
  .price-card,
  .ops-panel,
  .demo-form {
    padding: 20px;
  }

  .dashboard-sidebar nav {
    grid-template-columns: 1fr;
  }
}
