:root {
  color-scheme: dark;
  --bg: #050816;
  --bg-2: #0b1020;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(6, 18, 36, 0.78);
  --line: rgba(0, 245, 255, 0.22);
  --line-strong: rgba(0, 245, 255, 0.52);
  --text: #ffffff;
  --muted: #b8c2d6;
  --blue: #00aeef;
  --cyan: #00f5ff;
  --purple: #7a3cff;
  --gold: #f8c94a;
  --shadow: rgba(0, 0, 0, 0.36);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 15%, rgba(0, 174, 239, 0.22), transparent 32rem),
    radial-gradient(circle at 78% 12%, rgba(122, 60, 255, 0.2), transparent 30rem),
    radial-gradient(circle at 50% 85%, rgba(248, 201, 74, 0.09), transparent 26rem),
    linear-gradient(180deg, #03050e 0%, var(--bg) 42%, #060b18 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(0, 245, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(0, 245, 255, 0.08), transparent);
  animation: sheen 12s linear infinite;
}

@keyframes sheen {
  0% { transform: translateX(-80%); }
  100% { transform: translateX(80%); }
}

a { color: inherit; }
p { color: var(--muted); line-height: 1.66; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 12px max(20px, calc((100vw - 1240px) / 2));
  background: rgba(5, 8, 22, 0.76);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 64px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

#primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 22px);
  font-size: 14px;
  font-weight: 850;
}

#primary-nav a {
  color: #dbe9ff;
  text-decoration: none;
}

#primary-nav a:hover { color: var(--cyan); }

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--text);
  background: var(--panel);
}

.nav-cta,
.primary-button,
.secondary-button,
.ghost-button,
.gold-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

.nav-cta,
.primary-button {
  color: #03101a;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.28);
}

.secondary-button {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.ghost-button {
  color: var(--cyan);
  border-color: var(--line-strong);
  background: transparent;
}

.gold-button {
  color: #0b1020;
  background: linear-gradient(135deg, var(--gold), #fff2a8);
}

main > section,
.site-footer {
  padding: 86px max(22px, calc((100vw - 1240px) / 2));
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.88fr);
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding-top: 54px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.eyebrow {
  margin: 0;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 10px 0 0;
  letter-spacing: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
}

h1 {
  max-width: 960px;
  font-size: clamp(44px, 6.6vw, 86px);
  line-height: 0.94;
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.02;
}

h3 {
  font-size: 22px;
  line-height: 1.12;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 780px;
  font-size: 18px;
}

.hero-copy,
.command-visual {
  min-width: 0;
  max-width: 100%;
}

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

.signal-row,
.topic-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.signal-row span,
.topic-row span,
.partner-grid span,
.filter-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  color: #e8f8ff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 850;
}

.command-visual {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03)),
    radial-gradient(circle at 50% 38%, rgba(0,245,255,0.2), transparent 19rem);
  box-shadow: 0 30px 90px var(--shadow);
}

.command-visual::before {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(0, 245, 255, 0.18);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 46%, rgba(248, 201, 74, 0.18) 47%, transparent 49%),
    radial-gradient(circle at 60% 45%, transparent 0 16%, rgba(0, 245, 255, 0.1) 17%, transparent 18%);
  animation: slowSpin 22s linear infinite;
}

@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.orb-wrap {
  position: absolute;
  inset: 88px 70px auto;
  display: grid;
  place-items: center;
  gap: 24px;
  text-align: center;
}

.orb-wrap span {
  color: #eafaff;
  font-weight: 950;
}

.ai-orb {
  width: min(44vw, 250px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%, #ffffff 0 3%, var(--cyan) 4% 15%, transparent 16%),
    radial-gradient(circle at 50% 50%, rgba(0, 245, 255, 0.88), rgba(122, 60, 255, 0.36) 48%, transparent 66%);
  box-shadow: 0 0 44px rgba(0, 245, 255, 0.56), inset 0 0 45px rgba(255,255,255,0.24);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); filter: hue-rotate(0deg); }
  50% { transform: scale(1.04); filter: hue-rotate(18deg); }
}

.floating-card {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(5, 8, 22, 0.76);
  box-shadow: 0 20px 40px rgba(0,0,0,0.24);
  color: #eafaff;
  font-size: 13px;
  font-weight: 950;
}

.card-one { top: 44px; left: 36px; }
.card-two { top: 138px; right: 36px; }
.card-three { bottom: 198px; left: 36px; }
.card-four { bottom: 164px; right: 42px; }

.dashboard-panel {
  position: absolute;
  inset: auto 24px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.dashboard-panel div,
.metric,
.service-grid article,
.featured-grid article,
.portfolio-card,
.industry-grid article,
.before-after div,
.chat-shell,
.testimonial-grid article,
.faq-list details,
.contact-card,
.media-feature,
.video-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.16);
}

.dashboard-panel div {
  display: grid;
  gap: 4px;
  padding: 14px;
}

.dashboard-panel strong,
.metric strong {
  color: var(--cyan);
  font-size: 28px;
  font-family: "Space Grotesk", Inter, sans-serif;
}

.dashboard-panel span,
.metric span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.statement-section,
.training-section,
.about-section,
.ask-section,
.contact-section,
.media-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
}

.statement-section,
.featured-section,
.solutions-section,
.ai-assistants-section,
.youtube-showcase,
.testimonial-section,
.final-cta {
  background: rgba(255, 255, 255, 0.025);
}

.metrics-section {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.metric {
  display: grid;
  gap: 4px;
  padding: 18px;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 28px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 32px;
  max-width: none;
  align-items: end;
}

.service-grid,
.featured-grid,
.assistant-grid,
.portfolio-grid,
.industry-grid,
.youtube-video-grid,
.video-grid,
.testimonial-grid,
.partner-grid {
  display: grid;
  gap: 16px;
}

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

.service-grid article,
.featured-grid article,
.portfolio-card,
.industry-grid article,
.video-card,
.testimonial-grid article {
  padding: 20px;
}

.service-grid article {
  min-height: 245px;
}

.service-grid span,
.portfolio-card .badge,
.featured-grid p {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.service-grid a,
.featured-grid a,
.portfolio-card a,
.contact-actions a,
.footer-links a,
.video-card a {
  color: var(--cyan);
  font-weight: 900;
}

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

.featured-grid article {
  display: grid;
  align-content: space-between;
  min-height: 330px;
  background:
    linear-gradient(180deg, rgba(0, 245, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.featured-grid article div,
.portfolio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.ai-assistants-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 245, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 92% 20%, rgba(122, 60, 255, 0.2), transparent 30rem),
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
}

.ai-assistants-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent, rgba(0, 245, 255, 0.08), transparent);
  transform: translateX(-40%);
}

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

.assistant-card {
  display: grid;
  align-content: start;
  min-height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.035));
  box-shadow: 0 25px 80px rgba(0,0,0,0.28);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.assistant-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
}

.assistant-card span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
}

.assistant-card p {
  margin-bottom: 24px;
}

.assistant-card a {
  align-self: end;
  width: fit-content;
  border-radius: 999px;
  padding: 12px 16px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  box-shadow: 0 12px 35px rgba(0, 229, 255, 0.22);
  font-weight: 950;
  text-decoration: none;
}

.assistant-note {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  border: 1px solid rgba(248, 201, 74, 0.32);
  border-radius: 8px;
  padding: 16px 18px;
  color: #fff6c6;
  background: rgba(248, 201, 74, 0.08);
}

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

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-button {
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  color: #05101e;
  background: var(--cyan);
}

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

.portfolio-card {
  display: grid;
  min-height: 340px;
  overflow: hidden;
  padding: 0;
}

.portfolio-thumb {
  min-height: 118px;
  background:
    radial-gradient(circle at 25% 35%, rgba(0, 245, 255, 0.5), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(122, 60, 255, 0.5), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
}

.portfolio-card-content {
  display: grid;
  align-content: start;
  padding: 18px;
}

.portfolio-actions a {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 8px 10px;
  text-decoration: none;
  font-size: 12px;
}

.industry-grid {
  grid-template-columns: repeat(5, 1fr);
}

.training-copy {
  position: sticky;
  top: 110px;
}

.before-after {
  display: grid;
  gap: 16px;
}

.before-after div {
  padding: 24px;
}

.before-after span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.starter-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.starter-grid button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  color: #eafaff;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
  font-weight: 800;
}

.embedded-chat {
  min-height: 440px;
}

.chat-shell {
  overflow: hidden;
  background: rgba(5, 8, 22, 0.9);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 16px;
}

.chat-header div {
  display: grid;
  gap: 2px;
}

.chat-header span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.mini-button,
.close-chat,
.chat-form button {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 9px 12px;
  color: #04101c;
  background: var(--cyan);
  cursor: pointer;
  font-weight: 950;
}

.close-chat {
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 24px;
}

.chat-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 260px;
  max-height: 390px;
  overflow: auto;
  padding: 16px;
}

.message {
  max-width: 84%;
  border-radius: 8px;
  padding: 12px 14px;
  color: #eafaff;
  background: rgba(255,255,255,0.08);
  line-height: 1.48;
}

.message.user {
  justify-self: end;
  color: #04101c;
  background: var(--cyan);
}

.message a { color: var(--gold); font-weight: 950; }

.media-feature {
  margin-bottom: 18px;
}

.video-frame {
  display: grid;
  place-items: center;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--cyan);
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(0, 245, 255, 0.14), rgba(122,60,255,0.14)),
    radial-gradient(circle at 50% 42%, rgba(255,255,255,0.1), transparent 36%);
}

.video-grid {
  grid-template-columns: repeat(5, 1fr);
}

.youtube-showcase {
  background:
    radial-gradient(circle at 18% 14%, rgba(0, 245, 255, 0.15), transparent 28rem),
    linear-gradient(135deg, #050816, #101b4f, #050816);
}

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

.youtube-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 25px 70px rgba(0,0,0,0.28);
  backdrop-filter: blur(14px);
}

.youtube-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background:
    linear-gradient(135deg, rgba(0, 245, 255, 0.14), rgba(122,60,255,0.14)),
    #03050e;
}

.youtube-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-card-content {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.youtube-card-content span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.youtube-card-content h3 {
  font-size: 17px;
}

.youtube-card-content a {
  width: fit-content;
  border-radius: 999px;
  padding: 10px 13px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.youtube-fallback {
  grid-column: 1 / -1;
}

.youtube-status {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255,255,255,0.06);
}

.youtube-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.video-card .portfolio-thumb {
  min-height: 110px;
  border-radius: 7px;
  margin-bottom: 14px;
}

blockquote {
  margin: 28px 0 0;
  border-left: 4px solid var(--cyan);
  padding-left: 18px;
  color: #eafaff;
  font-size: 22px;
  line-height: 1.45;
}

blockquote span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

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

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

.testimonial-grid article span {
  color: var(--gold);
  font-weight: 950;
}

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

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: #eafaff;
  font-weight: 950;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 22px;
}

.contact-card label {
  display: grid;
  gap: 7px;
  color: #eafaff;
  font-weight: 850;
}

.contact-card label:has(textarea),
.contact-card button,
.contact-actions {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(184, 194, 214, 0.28);
  border-radius: 7px;
  padding: 12px;
  color: var(--text);
  background: rgba(3, 5, 14, 0.8);
}

textarea { resize: vertical; }
.contact-note { color: var(--gold); font-weight: 900; }

.final-cta {
  text-align: center;
}

.final-cta p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  border-top: 1px solid var(--line);
  background: #03050e;
}

.site-footer img {
  width: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.floating-ai {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 70;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: #03101a;
  background: radial-gradient(circle at 35% 28%, #ffffff, var(--cyan) 38%, var(--blue));
  box-shadow: 0 0 38px rgba(0, 245, 255, 0.42);
  cursor: pointer;
  font-weight: 950;
}

.chat-panel {
  position: fixed;
  right: 22px;
  bottom: 142px;
  z-index: 80;
  width: min(420px, calc(100vw - 28px));
  transform: translateY(14px);
  opacity: 0;
  pointer-events: none;
  transition: 0.22s ease;
}

.chat-panel.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.compact-starters {
  max-height: 120px;
  overflow: auto;
  padding: 12px 12px 0;
  margin: 0;
}

.compact-starters button {
  font-size: 12px;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding: 12px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

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

  #primary-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 10px 0 4px;
  }

  #primary-nav.open {
    display: flex;
  }

  .nav-cta {
    justify-self: end;
  }

  .hero-section,
  .statement-section,
  .training-section,
  .about-section,
  .ask-section,
  .contact-section,
  .media-feature {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .assistant-grid,
  .portfolio-grid,
  .industry-grid,
  .youtube-video-grid,
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .metrics-section,
  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .training-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  main > section,
  .site-footer {
    padding: 58px 18px;
  }

  .site-header {
    grid-template-columns: auto auto;
    padding: 10px 16px;
  }

  .brand span {
    max-width: 150px;
    white-space: normal;
  }

  .nav-cta {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  h1 {
    font-size: clamp(30px, 8.4vw, 34px);
    line-height: 1;
    max-width: 340px;
  }

  h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .hero-actions a {
    flex: 0 1 340px;
    padding-inline: 12px;
  }

  .signal-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: calc(100vw - 36px);
    padding-bottom: 4px;
  }

  .hero-copy > p:not(.eyebrow) {
    width: min(330px, calc(100vw - 36px));
    max-width: 330px;
  }

  .signal-row span {
    white-space: nowrap;
  }

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

  .orb-wrap {
    inset: 74px 22px auto;
  }

  .orb-wrap span {
    max-width: 270px;
    font-size: 13px;
  }

  .floating-card {
    padding: 10px 11px;
    font-size: 12px;
  }

  .card-one { top: 44px; left: 36px; }
  .card-two { top: 142px; right: 18px; }
  .card-three { bottom: 200px; left: 26px; }
  .card-four { bottom: 174px; right: 24px; }

  .dashboard-panel,
  .metrics-section,
  .service-grid,
  .featured-grid,
  .assistant-grid,
  .portfolio-grid,
  .industry-grid,
  .youtube-video-grid,
  .video-grid,
  .testimonial-grid,
  .partner-grid,
  .split-heading,
  .contact-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .assistant-note {
    flex-direction: column;
  }

  .contact-card label:has(textarea),
  .contact-card button,
  .contact-actions {
    grid-column: auto;
  }

  .dashboard-panel {
    position: relative;
    inset: auto;
    margin-top: 350px;
  }

  .floating-ai {
    width: 82px;
    height: 82px;
    right: 12px;
    bottom: 68px;
  }

  .chat-panel {
    right: 10px;
    bottom: 150px;
  }

  .mobile-cta {
    position: fixed;
    right: 10px;
    bottom: 8px;
    left: 10px;
    z-index: 65;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 8, 22, 0.92);
    backdrop-filter: blur(16px);
  }

  .mobile-cta a {
    padding: 11px 8px;
    text-align: center;
    color: #eafaff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 950;
  }
}
