:root {
  --bg: #120d0c;
  --bg-soft: rgba(34, 21, 18, 0.72);
  --card: rgba(22, 15, 17, 0.82);
  --card-strong: rgba(31, 18, 17, 0.96);
  --line: rgba(222, 142, 90, 0.18);
  --line-cold: rgba(123, 211, 255, 0.16);
  --text: #f8f4ef;
  --muted: #d7c2b4;
  --accent: #e09357;
  --accent-strong: #ffc58d;
  --accent-cold: #6fdcff;
  --warm: #ef9f52;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  --radius: 24px;
  --content: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(232, 148, 92, 0.23), transparent 24%),
    radial-gradient(circle at 82% 8%, rgba(98, 204, 255, 0.14), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(215, 117, 58, 0.14), transparent 28%),
    linear-gradient(180deg, #120d0c 0%, #0c1018 52%, #0a0f16 100%);
  color: var(--text);
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), transparent 90%);
}

.site-header,
.section,
.mobile-cta {
  position: relative;
  z-index: 1;
}

.site-header {
  width: min(calc(100% - 32px), var(--content));
  margin: 16px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(34, 18, 16, 0.9), rgba(16, 18, 26, 0.82));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  z-index: 70;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 126px;
  height: auto;
  flex-shrink: 0;
}

.brand-copy {
  display: none;
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-size: 0.95rem;
}

.brand-copy span:last-child {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  position: fixed;
  inset: 84px 16px auto;
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(18, 13, 12, 0.96);
  box-shadow: var(--shadow);
  z-index: 60;
}

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

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

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

.menu-toggle {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.section {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
  padding: 72px 0;
}

main > .section + .section {
  position: relative;
}

main > .section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(224, 147, 87, 0), rgba(224, 147, 87, 0.34), rgba(111, 220, 255, 0.28), rgba(224, 147, 87, 0));
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(5, 8, 14, 0.62);
  backdrop-filter: blur(6px);
}

.hero {
  display: grid;
  gap: 28px;
  align-items: start;
  padding-top: 38px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(2.4rem, 6.8vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 9ch;
}

h2 {
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.2;
}

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

.hero-lead,
.section-heading > p:last-child {
  max-width: 62ch;
  font-size: 1.03rem;
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #b66a33, var(--accent-strong));
  color: #1b110d;
  box-shadow: 0 12px 34px rgba(224, 147, 87, 0.34);
}

.button-secondary {
  border: 1px solid rgba(255, 197, 141, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

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

.hero-points li,
.deployment-card li {
  color: var(--muted);
  line-height: 1.55;
}

.hero-points li::before,
.deployment-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(224, 147, 87, 0.7);
}

.panel,
.card,
.feature-card,
.deployment-card,
.pilot-step,
.contact-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(45, 25, 20, 0.84), rgba(14, 18, 28, 0.86));
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.panel,
.contact-panel {
  border-radius: 30px;
}

.card,
.feature-card,
.deployment-card,
.pilot-step,
.contact-card {
  border-radius: var(--radius);
  padding: 24px;
}

.glow-panel {
  position: relative;
  overflow: hidden;
}

.glow-panel::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(224, 147, 87, 0.24);
  filter: blur(50px);
}

.hero-visual {
  padding: 18px 18px 14px;
  display: grid;
  gap: 0;
  align-items: center;
  justify-items: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 197, 141, 0.12), transparent 18%),
    radial-gradient(circle at 85% 15%, rgba(111, 220, 255, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(36, 21, 18, 0.94), rgba(12, 17, 28, 0.96));
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 197, 141, 0.12);
}

.hero-orbit--large {
  width: 280px;
  height: 280px;
  right: -40px;
  top: -24px;
}

.hero-orbit--small {
  width: 140px;
  height: 140px;
  left: -34px;
  bottom: 36px;
  border-color: rgba(111, 220, 255, 0.14);
}

.phone-mockup {
  position: relative;
  z-index: 1;
  width: min(100%, 286px);
  margin: 8px auto 0;
}

.phone-mockup__frame {
  padding: 10px;
  border-radius: 32px;
  background: linear-gradient(180deg, #402521, #171a26);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 197, 141, 0.14),
    0 0 40px rgba(111, 220, 255, 0.08);
}

.phone-mockup__top {
  display: flex;
  justify-content: center;
  padding: 2px 0 9px;
}

.phone-camera {
  width: 74px;
  height: 8px;
  border-radius: 999px;
  background: rgba(9, 9, 12, 0.84);
}

.phone-mockup__screen {
  display: grid;
  gap: 9px;
  padding: 13px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 197, 141, 0.12), transparent 24%),
    linear-gradient(180deg, #1a1417, #101926 68%);
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.72rem;
}

.phone-header span:last-child {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(111, 220, 255, 0.12);
  color: var(--accent-cold);
}

.phone-bubble {
  padding: 11px 12px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.phone-bubble__role,
.phone-bubble small {
  display: block;
}

.phone-bubble__role {
  margin-bottom: 6px;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-bubble p {
  margin-bottom: 0;
  color: var(--text);
  line-height: 1.45;
  font-size: 0.92rem;
}

.phone-bubble small {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.35;
  font-size: 0.72rem;
}

.phone-bubble--employee {
  margin-left: 22px;
  background: rgba(111, 220, 255, 0.08);
}

.phone-bubble--employee .phone-bubble__role {
  color: var(--accent-cold);
}

.phone-bubble--system {
  margin-right: 14px;
  background: rgba(224, 147, 87, 0.12);
}

.phone-bubble--system .phone-bubble__role {
  color: var(--accent-strong);
}

.phone-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 11px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.76rem;
}

.phone-input button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #c97842, #ffcc9b);
  color: #23140f;
}

.panel-topline,
.chat-card__meta,
.fake-window__top,
.fake-progress,
.metric-strip,
.audit-stack,
.integration-ribbon,
.audience-grid,
.platform-points,
.problem-grid,
.solution-grid,
.custom-grid,
.benefits-grid,
.formats-grid,
.pilot-grid {
  display: grid;
  gap: 16px;
}

.panel-topline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  color: var(--muted);
  font-size: 0.85rem;
}

.chat-card {
  margin: 18px 0;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-card__question {
  font-weight: 700;
  margin-bottom: 12px;
}

.chat-card__answer {
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 14px;
}

.chat-card__meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  font-size: 0.83rem;
}

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

.metric-strip article,
.audit-stack article {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.metric-strip strong,
.audit-stack strong,
.pilot-step span {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent-strong);
}

.metric-strip span,
.audit-stack span,
.card-index,
.feature-tag {
  color: var(--muted);
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading--problem {
  display: grid;
  gap: 20px;
}

.problem-heading-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.problem-heading-copy h2 {
  max-width: 14ch;
}

.problem-note {
  position: relative;
  overflow: hidden;
  max-width: 680px;
  padding: 18px 20px;
  border: 1px solid rgba(123, 211, 255, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(18, 22, 34, 0.44), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.problem-note__label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-cold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.problem-note p {
  margin-bottom: 0;
}

.problem-aside {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(111, 220, 255, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(36, 24, 23, 0.92), rgba(17, 20, 30, 0.92));
  box-shadow: var(--shadow);
}

.problem-aside::before,
.problem-note::before,
.problem-grid .card::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(111, 220, 255, 0.95), rgba(111, 220, 255, 0));
}

.problem-aside__label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent-cold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.problem-aside h3 {
  max-width: 16ch;
  margin-bottom: 12px;
  font-size: 1.24rem;
}

.problem-aside p {
  margin-bottom: 18px;
}

.problem-aside__stats {
  display: grid;
  gap: 12px;
}

.problem-aside__stats article {
  position: relative;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(123, 211, 255, 0.08);
}

.problem-aside__stats strong,
.problem-aside__stats span {
  display: block;
}

.problem-aside__stats strong {
  margin-bottom: 4px;
  color: var(--accent-strong);
  font-size: 1rem;
}

.problem-aside__stats span {
  color: var(--muted);
  line-height: 1.45;
}

.problem-grid,
.benefits-grid,
.audience-grid,
.custom-grid,
.solution-grid,
.platform-layout,
.formats-grid,
.pilot-grid {
  grid-template-columns: 1fr;
}

.problem-grid {
  gap: 18px;
}

.problem-grid .card {
  position: relative;
  overflow: hidden;
}

.problem-grid .card-index {
  color: var(--accent-cold);
}

.problem-card--cool {
  background:
    radial-gradient(circle at top right, rgba(111, 220, 255, 0.11), transparent 26%),
    linear-gradient(180deg, rgba(30, 26, 31, 0.9), rgba(14, 18, 28, 0.9));
}

.problem-card--warm {
  background:
    radial-gradient(circle at top left, rgba(224, 147, 87, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(48, 24, 18, 0.9), rgba(14, 18, 28, 0.88));
}

.problem-card--accent::before {
  background: linear-gradient(90deg, rgba(224, 147, 87, 0.95), rgba(111, 220, 255, 0.35));
}

.card-index {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
}

.feature-card--accent {
  background: linear-gradient(180deg, rgba(224, 147, 87, 0.14), rgba(255, 255, 255, 0.02)), var(--card-strong);
}

.feature-card--hero {
  background:
    radial-gradient(circle at top right, rgba(111, 220, 255, 0.12), transparent 22%),
    radial-gradient(circle at bottom left, rgba(224, 147, 87, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(43, 23, 20, 0.94), rgba(13, 19, 31, 0.94));
}

.feature-card--warm {
  background:
    radial-gradient(circle at top left, rgba(224, 147, 87, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(50, 25, 18, 0.9), rgba(18, 19, 29, 0.9));
}

.feature-card--cool {
  background:
    radial-gradient(circle at top right, rgba(111, 220, 255, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(24, 26, 36, 0.92), rgba(13, 18, 29, 0.92));
}

.feature-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -90px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.feature-pills span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.82rem;
}

.feature-card--hero .feature-pills span:first-child,
.feature-card--cool .feature-pills span:first-child {
  color: var(--accent-cold);
}

.feature-card--warm .feature-pills span:first-child {
  color: var(--accent-strong);
}

.platform-preview {
  padding: 14px;
}

.fake-app {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
}

.fake-sidebar,
.fake-window,
.audit-stack article {
  border-radius: 20px;
}

.fake-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.74rem;
}

.fake-logo {
  color: var(--text);
  font-weight: 800;
}

.fake-content {
  display: grid;
  gap: 10px;
}

.fake-window {
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.fake-window__top {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.fake-window__top button {
  padding: 8px 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(224, 147, 87, 0.18);
  color: var(--text);
  font-size: 0.8rem;
}

.fake-progress {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 14px 0;
}

.fake-progress span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  text-align: center;
  font-size: 0.78rem;
}

.fake-progress .active {
  color: var(--text);
  background: rgba(224, 147, 87, 0.16);
}

.fake-dialog {
  display: grid;
  gap: 10px;
}

.fake-dialog > div {
  padding: 12px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.14);
}

.platform-points {
  align-content: start;
  gap: 12px;
}

.platform-points .card {
  padding: 18px 20px;
}

.platform-points .card h3 {
  margin-bottom: 10px;
}

.platform-points .card p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.audience-tags span {
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  color: var(--muted);
}

.audience-layout,
.audience-grid,
.audience-tags {
  display: grid;
  gap: 18px;
}

.audience-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(111, 220, 255, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(40, 24, 22, 0.94), rgba(12, 18, 29, 0.94));
}

.audience-hero::before,
.audience-card::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(111, 220, 255, 0.95), rgba(111, 220, 255, 0));
}

.audience-hero__label,
.audience-card__title {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-hero__label {
  color: var(--accent-cold);
}

.audience-hero h3 {
  max-width: 15ch;
  margin-bottom: 12px;
  font-size: clamp(1.22rem, 1.8vw, 1.8rem);
}

.audience-hero p {
  max-width: 56ch;
  margin-bottom: 0;
}

.audience-card {
  position: relative;
  overflow: hidden;
  padding: 22px 22px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.audience-card--accent {
  background:
    radial-gradient(circle at top left, rgba(224, 147, 87, 0.13), transparent 22%),
    linear-gradient(180deg, rgba(46, 25, 18, 0.92), rgba(14, 18, 28, 0.9));
}

.audience-card--cool {
  background:
    radial-gradient(circle at top right, rgba(111, 220, 255, 0.13), transparent 24%),
    linear-gradient(180deg, rgba(24, 28, 39, 0.92), rgba(12, 18, 29, 0.9));
}

.audience-card--plain {
  background:
    linear-gradient(180deg, rgba(34, 22, 23, 0.92), rgba(13, 18, 28, 0.9));
}

.audience-card--accent .audience-card__title {
  color: var(--accent-strong);
}

.audience-card--cool .audience-card__title {
  color: var(--accent-cold);
}

.audience-card--plain .audience-card__title {
  color: var(--muted);
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.audience-tags span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-width: 160px;
  text-align: left;
  min-height: 76px;
  line-height: 1.25;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: manual;
}

.deployment-card {
  position: relative;
  overflow: hidden;
  padding: 28px 28px 26px;
}

.deployment-card::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 3px;
  height: calc(100% - 48px);
  border-radius: 999px;
  background: rgba(224, 147, 87, 0.5);
}

.deployment-card--cool::before {
  background: rgba(111, 220, 255, 0.62);
}

.deployment-card .feature-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 32px;
  padding: 0 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 197, 141, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.deployment-card--cool .feature-tag {
  border-color: rgba(111, 220, 255, 0.22);
}

.deployment-card h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.96;
  margin-bottom: 18px;
}

.deployment-card--warm h3 {
  color: var(--accent-strong);
}

.deployment-card--cool h3 {
  color: var(--accent-cold);
}

.deployment-lead {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 1.03rem;
}

.deployment-card ul {
  margin-top: 0;
}

.deployment-note {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  line-height: 1.55;
  color: var(--muted);
}

.deployment-note strong {
  color: inherit;
}

.deployment-note--warm {
  border-left: 4px solid rgba(224, 147, 87, 0.75);
  background: rgba(73, 41, 18, 0.34);
}

.deployment-note--cool {
  border-left: 4px solid rgba(111, 220, 255, 0.78);
  background: rgba(17, 34, 52, 0.34);
}

.formats-footnote {
  margin: 22px 0 0;
  color: var(--muted);
}

.deployment-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-answer p {
  padding: 0 24px 22px;
}

.faq-item.open .faq-answer {
  max-height: 360px;
}

.pilot-step span {
  margin-bottom: 18px;
}

.contact-panel {
  display: grid;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  background: radial-gradient(circle at top right, rgba(224, 147, 87, 0.2), transparent 28%), rgba(18, 13, 12, 0.84);
}

.contact-card {
  display: grid;
  gap: 18px;
}

.contact-card span {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-card a {
  font-size: 1.05rem;
  font-weight: 700;
}

.benefit-card {
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 4px;
  height: 48px;
  border-radius: 999px;
  background: rgba(224, 147, 87, 0.65);
}

.benefit-card--featured {
  background:
    radial-gradient(circle at top left, rgba(224, 147, 87, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(46, 24, 18, 0.92), rgba(14, 18, 28, 0.9));
}

.benefit-card--wide {
  background:
    radial-gradient(circle at top right, rgba(111, 220, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(32, 22, 25, 0.9), rgba(12, 18, 29, 0.9));
}

.benefit-card--cool::before,
.benefit-card--accent::before {
  background: rgba(111, 220, 255, 0.78);
}

.benefit-card--warm::before,
.benefit-card--featured::before {
  background: rgba(224, 147, 87, 0.78);
}

.mobile-cta {
  position: sticky;
  bottom: 16px;
  width: min(calc(100% - 24px), 640px);
  margin: 0 auto 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-cta a {
  min-height: 50px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--line);
  background: rgba(25, 17, 16, 0.92);
  backdrop-filter: blur(12px);
}

.mobile-cta a:last-child {
  background: linear-gradient(135deg, var(--warm), #f6c878);
  color: #1a1408;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 88px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(111, 220, 255, 0.22);
  border-radius: 999px;
  background: rgba(14, 18, 28, 0.82);
  color: var(--accent-cold);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
  z-index: 50;
}

.scroll-top:hover {
  border-color: rgba(111, 220, 255, 0.45);
  transform: translateY(0);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
  will-change: opacity, transform;
}

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

.reveal-item:nth-child(2) {
  transition-delay: 80ms;
}

.reveal-item:nth-child(3) {
  transition-delay: 140ms;
}

.reveal-item:nth-child(4) {
  transition-delay: 180ms;
}

@media (max-width: 719px) {
  .site-nav {
    inset: 88px 16px auto;
  }

  .hero-visual {
    margin-top: 6px;
  }

  .phone-mockup {
    margin-top: 0;
  }

  .hero-orbit {
    display: none;
  }
}

@media (min-width: 720px) {
  .brand-copy {
    display: block;
  }

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

  .section-heading--problem {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }

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

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

  .feature-card--hero {
    grid-column: 1 / -1;
  }

  .formats-grid,
  .platform-layout,
  .contact-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

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

@media (min-width: 1040px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-header {
    padding-inline: 24px;
  }

  .hero {
    grid-template-columns: 0.95fr 1.05fr;
    min-height: auto;
    padding-top: 26px;
    gap: 36px;
  }

  .hero-copy {
    padding-top: 20px;
  }

  .hero-visual {
    padding: 14px 18px 10px;
    align-self: start;
  }

  .phone-mockup {
    width: min(100%, 316px);
  }

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

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

  .problem-card--wide {
    grid-column: span 5;
  }

  .problem-card--compact {
    grid-column: span 3;
  }

  .problem-card--cool {
    grid-column: span 4;
    transform: translateY(18px);
  }

  .problem-card--warm {
    grid-column: span 4;
  }

  .problem-card--accent {
    grid-column: span 8;
  }

  .solution-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: stretch;
  }

  .feature-card--hero {
    grid-column: span 7;
  }

  .feature-card--warm {
    grid-column: span 5;
  }

  .feature-card--cool {
    grid-column: span 12;
  }

  .benefit-card--featured {
    grid-column: span 4;
  }

  .benefit-card--cool {
    grid-column: span 3;
  }

  .benefit-card--wide {
    grid-column: span 5;
  }

  .benefit-card--warm {
    grid-column: span 5;
  }

  .benefits-grid > .benefit-card:not(.benefit-card--featured):not(.benefit-card--cool):not(.benefit-card--wide):not(.benefit-card--warm):not(.benefit-card--accent) {
    grid-column: span 3;
  }

  .benefit-card--accent {
    grid-column: span 4;
  }

  .platform-layout {
    display: flex !important;
    align-items: flex-start !important;
    gap: 22px;
  }

  .audience-layout {
    grid-template-columns: 0.94fr 1.06fr;
    align-items: start;
  }

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

  .audience-card--accent {
    grid-column: 1 / -1;
  }

  .platform-preview {
    flex: 1 1 auto;
    max-width: 760px;
    align-self: flex-start;
  }

  .platform-points {
    flex: 0 0 400px;
    margin-top: 0 !important;
    align-self: flex-start !important;
    align-content: start;
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    display: none;
  }

  .scroll-top {
    bottom: 24px;
  }
}

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

  .scroll-top,
  .reveal-item {
    transition: none;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
  }
}
