:root {
  --bg: #1a1b1f;
  --bg-soft: #202226;
  --bg-elevated: #27292f;
  --panel: #2e3138;
  --line: #3a3e47;
  --text: #f4f6fb;
  --muted: #aeb4c2;
  --accent: #fa4c29;
  --accent-strong: #fa4c29;
  --accent-soft: rgba(250, 76, 41, 0.18);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 12px;
  --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.42);
  --shadow-md: 0 16px 36px rgba(0, 0, 0, 0.35);
  --container: min(1220px, 92vw);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --header-offset: 66px;
  --ai-dock-height: 176px;
  --ai-dock-height-expanded: 228px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 8% 2%, rgba(250, 76, 41, 0.1), transparent 24%), var(--bg);
  line-height: 1.52;
  overflow-x: hidden;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.gradient {
  color: var(--accent);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--accent);
}

.section {
  padding: clamp(84px, 10vw, 130px) 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-header h2 {
  margin: 10px 0 0;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 140;
  padding: 10px 0;
  transition: background 0.28s var(--ease), border-color 0.28s var(--ease), box-shadow 0.28s var(--ease), padding 0.24s var(--ease);
}

.site-header.scrolled {
  background: rgba(26, 27, 31, 0.86);
  border-bottom: 1px solid rgba(250, 76, 41, 0.24);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateZ(0);
  padding: 4px 0;
}

.site-header.scrolled .desktop-nav > a,
.site-header.scrolled .desktop-nav > .nav-dropdown > a {
  font-size: 0.88rem;
  padding: 6px 1px;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 42px;
  gap: 12px;
}

.nav-wordmark {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
}

.nav-wordmark img {
  display: block;
  width: clamp(74px, 6.4vw, 100px);
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.desktop-nav a {
  position: relative;
  color: #ecf1fb;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 6px 1px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: color 0.2s var(--ease);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s var(--ease);
}

.desktop-nav a:hover {
  color: #fff;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.nav-wordmark:hover {
  transform: none !important;
}

.nav-wordmark::after {
  display: none !important;
}

.nav-pill {
  color: #ffb06f !important;
}

/* ── Nav dropdown (About > Team, Contact) ─────────────── */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown-trigger {
  cursor: pointer;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 130px;
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 0.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  padding: 0.4rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  z-index: 1000;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ecf1fb;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}
.nav-dropdown-menu a::after {
  display: none; /* suppress underline effect inside dropdown */
}
.nav-dropdown-label {
  display: block;
  padding: 0.4rem 1rem 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  pointer-events: none;
}
.nav-dropdown-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 0.3rem 0;
}

/* Mobile sub-links (indented under About) */
.mobile-sub-link {
  padding-left: 2rem !important;
  font-size: 0.85rem !important;
  opacity: 0.75;
}
.mobile-sub-link:hover { opacity: 1; }

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: var(--bg-elevated);
  box-shadow: var(--shadow-md);
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform 0.24s var(--ease), opacity 0.24s var(--ease);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  background: rgba(26, 27, 31, 0.96);
  transition: max-height 0.3s var(--ease), opacity 0.28s var(--ease);
}

.mobile-nav.open {
  max-height: 290px;
  opacity: 1;
  border-bottom: 1px solid rgba(250, 76, 41, 0.22);
}

.mobile-nav a {
  display: block;
  width: var(--container);
  margin-inline: auto;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #e8edf7;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 100svh;
  margin-top: calc(-1 * (var(--ai-dock-height) + 34px));
  padding: calc(clamp(74px, 8.8vw, 112px) + var(--ai-dock-height) + 10px) 0 clamp(34px, 4.6vw, 58px);
  overflow: clip;
  background: #17191f;
}

.hero-backdrop,
.hero-overlay-fade,
#particles-js,
.hero-noise {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  z-index: -5;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  transform: scale(1.04);
  will-change: transform, opacity;
}

.hero-overlay-fade {
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(12, 14, 19, 0.78) 0%, rgba(16, 18, 24, 0.56) 42%, rgba(18, 20, 26, 0.66) 100%),
    linear-gradient(180deg, rgba(10, 12, 17, 0.2) 0%, rgba(10, 12, 17, 0.72) 100%);
}

#particles-js {
  z-index: -3;
}

.hero-noise {
  z-index: -2;
  background:
    radial-gradient(circle at 78% 24%, rgba(250, 76, 41, 0.14), transparent 35%),
    radial-gradient(circle at 22% 82%, rgba(250, 76, 41, 0.06), transparent 40%);
}

.hero-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: clamp(18px, 3.2vw, 44px);
}

.ai-dock-section {
  position: relative;
  height: calc(var(--ai-dock-height) + 34px);
  margin-top: var(--header-offset, 52px);
  z-index: 4;
  transition: height 0.34s var(--ease);
}

.ai-dock-section.expanded {
  height: calc(var(--ai-dock-height) + 34px + 50vh);
}

.ai-dock-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: calc(var(--ai-dock-height) + 34px);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  pointer-events: none;
  z-index: 180;
  transition: height 0.34s var(--ease);
}

.ai-dock-section.expanded::before {
  height: calc(var(--ai-dock-height) + 34px + 50vh);
}

.ai-dock-section .container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: calc(var(--ai-dock-height) + 34px);
  display: flex;
  align-items: center;
  padding-block: 10px;
  box-sizing: border-box;
  z-index: 205;
  transition: height 0.34s var(--ease), top 0.2s var(--ease), padding 0.34s var(--ease);
}

.ai-dock-section.expanded .container {
  top: 0;
  height: calc(var(--ai-dock-height) + 34px + 50vh);
  align-items: flex-start;
  padding-block: 8px 14px;
  overscroll-behavior: contain;
}

.hero-copy {
  grid-column: 1 / span 7;
  max-width: 760px;
}

.hero-side-image {
  grid-column: 8 / span 5;
  min-height: clamp(250px, 24vw, 380px);
  max-width: 430px;
  width: 100%;
  justify-self: end;
  align-self: end;
  margin-left: clamp(12px, 1.8vw, 28px);
}

.smart-input-shell.hero-ai-shell {
  position: relative;
  width: min(1100px, 100%);
  margin-inline: auto;
  margin-top: 0;
  padding: 10px 14px;
  background: rgba(14, 16, 21, 0.78);
  border-color: rgba(255, 255, 255, 0.2);
  z-index: 210;
  backdrop-filter: blur(13px) saturate(118%);
  -webkit-backdrop-filter: blur(13px) saturate(118%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
  min-height: 0;
  transition: padding 0.34s var(--ease), border-color 0.28s var(--ease), box-shadow 0.28s var(--ease), background 0.28s var(--ease);
}

.ai-dock-section.expanded .smart-input-shell.hero-ai-shell {
  margin-top: 4px;
  padding: 12px 14px 14px;
  border-color: rgba(250, 76, 41, 0.5);
  background: rgba(14, 16, 21, 0.88);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
  height: calc(50vh + var(--ai-dock-height) - 20px);
  display: flex;
  flex-direction: column;
}

.hero-ai-shell .smart-input-row {
  margin-top: 8px;
  flex-shrink: 0;
}

/* Chat toggle button */
.chat-toggle {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: rgba(235, 240, 248, 0.6);
  font-size: 0.7rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s, transform 0.28s var(--ease);
  z-index: 5;
}

.chat-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(235, 240, 248, 0.85);
}

.chat-toggle.visible {
  display: flex;
}

.ai-dock-section.expanded .chat-toggle .chat-toggle-icon {
  transform: rotate(180deg);
}

/* Chat thread */
.chat-thread {
  display: none;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 4px 2px 4px 0;
  scroll-behavior: smooth;
}

.ai-dock-section.expanded .chat-thread {
  display: flex;
}

.chat-thread::-webkit-scrollbar {
  width: 5px;
}

.chat-thread::-webkit-scrollbar-track {
  background: transparent;
}

.chat-thread::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
}

.chat-thread::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.22);
}

@keyframes smartLeadFadeIn {
  from {
    opacity: 0;
    transform: translateY(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.context-suggestions {
  position: relative;
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translateY(-5px);
  overflow: hidden;
  pointer-events: none;
  transition: max-height 0.28s var(--ease), opacity 0.22s var(--ease), transform 0.22s var(--ease), margin-top 0.24s var(--ease);
}

.context-suggestions.visible {
  margin-top: 8px;
  max-height: 96px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 16, 21, 0.66);
  backdrop-filter: blur(9px) saturate(112%);
  -webkit-backdrop-filter: blur(9px) saturate(112%);
}

.context-suggestions::before,
.context-suggestions::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 28px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}

.context-suggestions::before {
  top: 0;
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.94), rgba(18, 20, 26, 0));
}

.context-suggestions::after {
  bottom: 0;
  background: linear-gradient(180deg, rgba(18, 20, 26, 0), rgba(18, 20, 26, 0.94));
}

.context-suggestions.show-top-fade::before,
.context-suggestions.show-bottom-fade::after {
  opacity: 1;
}

.context-scroll-indicator {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 16px;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}

.context-scroll-indicator::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: 4px auto;
  border-right: 2px solid rgba(174, 180, 194, 0.78);
  border-bottom: 2px solid rgba(174, 180, 194, 0.78);
}

.context-scroll-indicator.up {
  top: 1px;
}

.context-scroll-indicator.up::before {
  transform: rotate(-135deg);
}

.context-scroll-indicator.down {
  bottom: 1px;
}

.context-scroll-indicator.down::before {
  transform: rotate(45deg);
}

.context-suggestions:hover .context-scroll-indicator {
  opacity: 0.85;
}

.context-suggestions:not(.can-scroll-up) .context-scroll-indicator.up,
.context-suggestions:not(.can-scroll-down) .context-scroll-indicator.down {
  opacity: 0;
}

.context-suggestions-scroll {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 9px 10px;
  width: min(620px, 92%);
  margin-inline: auto;
  max-height: 74px;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 2px 10px;
}

.context-suggestions-scroll::-webkit-scrollbar {
  display: none;
}

.context-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: #2a2f37;
  color: #edf2fb;
  min-width: 110px;
  max-width: none;
  min-height: 30px;
  padding: 7px 16px;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.18s var(--ease), border-color 0.2s var(--ease), filter 0.2s var(--ease), background 0.2s var(--ease);
}

.context-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(250, 76, 41, 0.52);
  background: #323842;
  filter: brightness(1.03);
}

.context-pill:focus-visible {
  outline: none;
  border-color: rgba(250, 76, 41, 0.8);
  box-shadow: 0 0 0 3px rgba(250, 76, 41, 0.2);
}

.context-pill-emoji {
  font-size: 0.88rem;
  line-height: 1;
}

.context-pill-label {
  white-space: nowrap;
}

.hero-ai-shell .smart-input {
  padding: 10px 12px;
  transition: padding 0.28s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), opacity 0.2s var(--ease);
}

.ai-dock-section.expanded .hero-ai-shell .smart-input {
  padding: 13px 14px;
}

.hero-ai-shell .smart-submit {
  transition: transform 0.28s var(--ease), filter 0.2s var(--ease);
}

.ai-dock-section.expanded .hero-ai-shell .smart-submit {
  transform: translateY(-1px);
}

.hero-ai-shell .smart-note {
  margin-top: 8px;
}

.hero-layout .hero-ctas {
  grid-column: 1 / -1;
  margin-top: 4px;
  position: relative;
  z-index: 2;
}

.badge-line {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(250, 76, 41, 0.34);
  border-radius: 999px;
  padding: 10px 16px;
  color: #f6f8fd;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(250, 76, 41, 0.08);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.85);
    opacity: 0.72;
  }
}

.hero-copy h1 {
  margin: 0;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: clamp(2.6rem, 6.8vw, 5.6rem);
  line-height: 0.93;
  letter-spacing: -0.02em;
}

.headline-line-two {
  display: inline-block;
  white-space: nowrap;
}

.typewriter-text {
  display: inline-block;
  min-width: 0.2ch;
}

.hero-lead {
  margin: 20px 0 0;
  max-width: 54ch;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
}

.hero-provider-inline {
  margin: 18px 0 0;
  min-height: 3.2em;
  color: #f5f7fb;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.72rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.provider-typing {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  width: fit-content;
  clip-path: inset(0 100% 0 0);
  animation: providerReveal 1s steps(24, end) 0.2s forwards;
}

.provider-line-two {
  margin-top: 3px;
  animation-delay: 1.25s;
  animation-duration: 0.92s;
  animation-timing-function: steps(13, end);
}

.provider-us {
  color: #ff4a4a;
}

.provider-asf {
  color: #4da2ff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  min-height: 44px;
  font-weight: 800;
  font-size: 0.9rem;
  transition: transform 0.24s var(--ease), filter 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

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

.btn-primary {
  background: var(--accent);
  color: #101216;
  box-shadow: 0 10px 24px rgba(250, 76, 41, 0.33);
}

.btn-primary:hover {
  filter: brightness(1.04);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #f6f8fd;
}

.smart-input-shell {
  margin-top: 30px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-md);
}

.pill-selector {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: #2b2f37;
}

.pill {
  border: 0;
  background: transparent;
  color: #c4ccda;
  border-radius: 999px;
  min-height: 40px;
  padding: 8px 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.pill.active {
  background: var(--accent);
  color: #14161a;
}

/* Mode toggle pills */
.smart-mode-toggle {
  display: flex;
  gap: 5px;
  margin-top: 6px;
  margin-bottom: 6px;
  justify-content: center;
}
.smart-mode-btn {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  padding: 4px 18px 3px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(244, 246, 251, 0.50);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  text-align: center;
  white-space: nowrap;
  line-height: 1.4;
}
.smart-mode-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(244, 246, 251, 0.8);
}
.smart-mode-btn.active {
  background: rgba(250, 76, 41, 0.15);
  border-color: rgba(250, 76, 41, 0.55);
  color: #ff6a00;
  box-shadow: 0 0 0 1px rgba(250, 76, 41, 0.15);
}

.smart-input-row {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.smart-input {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  padding: 13px 14px;
  background: #252830;
  color: #f4f6fb;
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), opacity 0.2s var(--ease);
}

.smart-input:focus {
  border-color: rgba(250, 76, 41, 0.76);
  box-shadow: 0 0 0 4px rgba(250, 76, 41, 0.14);
}

.smart-submit {
  border: 0;
  min-width: 62px;
  border-radius: 13px;
  background: var(--accent);
  color: #15171c;
  font-weight: 800;
}

.smart-note {
  margin: 10px 0 0;
  font-size: 0.82rem;
  color: #9aa4b8;
}

.hero-media {
  position: relative;
  padding: 28px 0 16px;
}

.image-slot {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(250, 76, 41, 0.45);
  background: #2a2d34;
  box-shadow: var(--shadow-md);
}

.image-slot::after {
  content: "";
  position: absolute;
  inset: auto -30% -36% -30%;
  height: 52%;
  background: radial-gradient(circle, rgba(250, 76, 41, 0.14), transparent 62%);
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20, 22, 27, 0.02), rgba(20, 22, 27, 0.18)),
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.06), transparent 42%),
    radial-gradient(circle at 22% 76%, rgba(250, 76, 41, 0.08), transparent 46%);
  mix-blend-mode: normal;
  animation: mistShift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.media-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
  transform: scale(1.02);
}

.hero-main-image {
  object-position: center 40%;
  transform: scale(1.12);
}

.thumb-image {
  object-position: center center;
}

.slot-meta {
  position: absolute;
  inset: auto 14px 14px;
  z-index: 2;
  border-radius: 12px;
  border: 1px solid rgba(250, 76, 41, 0.28);
  background: rgba(26, 27, 31, 0.78);
  padding: 12px;
}

.slot-tag {
  margin: 0;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slot-spec {
  margin: 6px 0 0;
  color: #b6c0d3;
  font-size: 0.8rem;
}

.hero-image-slot {
  min-height: clamp(420px, 58vw, 620px);
}


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

.hero-ctas .impact-action {
  min-height: 170px;
}

.impact-action {
  display: block;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(250, 76, 41, 0.28);
  background: #242830;
  box-shadow: var(--shadow-md);
  padding: 24px;
  min-height: 186px;
  transition: transform 0.24s var(--ease), border-color 0.24s var(--ease), background 0.24s var(--ease);
}

.impact-action::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  opacity: 0.48;
  transition: opacity 0.24s var(--ease), transform 0.24s var(--ease);
}

.impact-action::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(16, 19, 24, 0.44) 0%, rgba(16, 19, 24, 0.86) 100%),
    linear-gradient(120deg, rgba(250, 76, 41, 0.08) 0%, rgba(250, 76, 41, 0) 55%);
}

.impact-action-create::before {
  background-image: url("Images/real-cta-01.webp");
}

.impact-action-download::before {
  background-image: url("Images/21x9-07.webp");
}

.impact-action-custom::before {
  background-image: url("Images/16x9-profile-01.webp");
}

.impact-action:hover {
  transform: translateY(-5px);
  border-color: rgba(250, 76, 41, 0.6);
  background: #2a2f37;
}

.impact-action:hover::before {
  opacity: 0.62;
  transform: scale(1.07);
}

.impact-label {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
}

.impact-grid h3 {
  margin: 10px 0 0;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: 1.38rem;
}

.impact-action p:last-child {
  margin: 10px 0 0;
  color: #b4bfd1;
  font-size: 0.93rem;
  line-height: 1.45;
}

.story-flow {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background: #202226;
}

.story-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("Images/real-story-bg.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.24;
}

.story-flow::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(16, 18, 23, 0.9), rgba(22, 25, 31, 0.92)),
    radial-gradient(circle at 78% 22%, rgba(250, 76, 41, 0.14), transparent 36%);
}

.story-flow .container {
  position: relative;
  z-index: 1;
}

.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: clamp(22px, 4vw, 52px);
  margin-top: clamp(32px, 5vw, 58px);
}

.story-row.reverse .story-copy {
  order: 2;
}

.story-row.reverse .story-image {
  order: 1;
}

.story-copy h3 {
  margin: 10px 0 12px;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: clamp(1.46rem, 2.6vw, 2.24rem);
  line-height: 1.12;
}

.story-copy p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  margin-top: 14px;
  display: inline-block;
  color: var(--accent);
  font-weight: 800;
}

.story-image {
  width: min(380px, 100%);
  aspect-ratio: 1 / 1;
  min-height: 0;
  justify-self: end;
  opacity: 1 !important;
  transform: none !important;
}

.story-row.reverse .story-image {
  justify-self: start;
}

.story-photo-frame {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 18px;
  border: 1px solid rgba(250, 76, 41, 0.34);
  background: rgba(26, 29, 36, 0.92);
  box-shadow: var(--shadow-md);
}

.story-photo-frame::before {
  display: none;
}

.story-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.cta-reprise .story-copy p {
  margin-top: 10px;
}

.cta-reprise .story-copy .eyebrow {
  color: var(--accent);
}

.cta-reprise .story-copy .btn {
  margin-top: 16px;
}

.cta-reprise .story-image {
  max-width: 400px;
}

.showcase-track {
  background: #1b1d22;
  border-top: 1px solid rgba(250, 76, 41, 0.18);
  border-bottom: 1px solid rgba(250, 76, 41, 0.18);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: clamp(24px, 4vw, 52px);
}

.sticky-media-wrap {
  position: sticky;
  top: 108px;
  align-self: start;
}

.sticky-image {
  min-height: clamp(420px, 48vw, 560px);
}

.showcase-cards {
  display: grid;
  gap: 16px;
}

.showcase-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #262a31;
  padding: 24px;
  transition: transform 0.24s var(--ease), border-color 0.24s var(--ease), background 0.24s var(--ease);
}

.showcase-card.active,
.showcase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 76, 41, 0.46);
  background: #2d323a;
}

.showcase-card .step {
  margin: 0;
  color: #c0cada;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "Oxanium", "Segoe UI", sans-serif;
}

.showcase-card h3 {
  margin: 8px 0;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: 1.4rem;
}

.showcase-card p {
  margin: 0;
  color: #aeb7c8;
}

.showcase-card-media {
  border-radius: 12px;
  overflow: hidden;
  height: 140px;
  margin-bottom: 14px;
}

.showcase-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audio-samples {
  background: #22252b;
}

.audio-tier-stack {
  display: grid;
  gap: clamp(56px, 7vw, 96px);
}

.audio-tier {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}

.tier-copy {
  padding: 0;
}

.tier-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.75rem;
  font-weight: 800;
}

.tier-copy h3 {
  margin: 0;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: clamp(2.1rem, 6vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.tier-description {
  margin: 20px 0 0;
  max-width: 44ch;
  color: #d0d6e2;
  font-size: clamp(0.94rem, 1.05vw, 1.08rem);
  line-height: 1.5;
  font-weight: 500;
}

.tier-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  min-height: 42px;
  padding: 10px 20px;
  background: var(--accent);
  color: #15171c;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 22px rgba(250, 76, 41, 0.28);
  transition: transform 0.2s var(--ease), filter 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.tier-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 12px 24px rgba(250, 76, 41, 0.34);
}

/* ── Collapsible Pricing Panel ──────────────────────────────────── */
.tier-pricing {
  margin-top: 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: background 0.2s ease;
}
.tier-pricing[open] {
  background: rgba(255, 255, 255, 0.06);
}
.tier-pricing summary {
  cursor: pointer;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--accent, #fa4c29);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}
.tier-pricing summary::-webkit-details-marker { display: none; }
.tier-pricing summary::before {
  content: '\25B6';
  font-size: 0.6em;
  transition: transform 0.2s ease;
}
.tier-pricing[open] summary::before {
  transform: rotate(90deg);
}
.pricing-list {
  list-style: none;
  margin: 0;
  padding: 0 16px 12px;
}
.pricing-list li {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-length {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.pricing-amount {
  font-weight: 700;
  color: #fff;
}

.tier-players {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.audio-player {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 6px 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.24s var(--ease), transform 0.24s var(--ease);
}

.audio-player:hover {
  transform: translateY(-1px);
  border-color: rgba(250, 76, 41, 0.44);
}

.ws-player-head {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 10px;
}

.ws-thumb {
  display: none;
}

.ws-meta h4 {
  margin: 0;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: clamp(1.02rem, 1.45vw, 1.26rem);
  line-height: 1.06;
}

.ws-meta p {
  margin: 3px 0 0;
  color: #9faacc;
  font-size: 0.82rem;
}

.ws-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  min-width: 62px;
  min-height: 34px;
  background: var(--accent);
  color: #14161b;
  font-size: 0.77rem;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(250, 76, 41, 0.26);
  transition: transform 0.2s var(--ease), filter 0.2s var(--ease);
}

.ws-toggle:hover:not(:disabled) {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.ws-toggle:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.ws-wave {
  margin-top: 8px;
  position: relative;
  border-radius: 10px;
  border: 0;
  background: rgba(15, 18, 24, 0.46);
  padding: 6px 10px 6px 70px;
  min-height: 70px;
  overflow: hidden;
}

.ws-wave wave {
  cursor: pointer !important;
}

.ws-wave-toggle {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(10, 13, 18, 0.64);
  color: var(--accent);
  font-size: 0;
  line-height: 0;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 4;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.ws-wave-toggle:hover:not(:disabled) {
  transform: translateY(-50%) scale(1.05);
  border-color: rgba(250, 76, 41, 0.72);
}

.ws-wave-toggle::before {
  content: "";
  display: block;
}

.ws-wave-toggle[data-state="play"]::before,
.ws-wave-toggle[data-state="idle"]::before {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--accent);
}

.ws-wave-toggle[data-state="pause"]::before {
  width: 12px;
  height: 14px;
  background: linear-gradient(90deg, var(--accent) 0 4px, transparent 4px 8px, var(--accent) 8px 12px);
}

.ws-wave-toggle[data-state="error"] {
  font-size: 1rem;
  line-height: 1;
}

.ws-wave-toggle[data-state="error"]::before {
  content: "!";
  font-weight: 800;
}

.ws-wave-toggle:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.audio-player.playing .ws-wave-toggle {
  background: rgba(10, 13, 18, 0.78);
  border-color: rgba(250, 76, 41, 0.8);
}

.audio-player.playing .ws-thumb {
  animation: wsPulse 1.1s ease-in-out infinite;
}

.ws-foot {
  margin-top: 7px;
  display: flex;
  justify-content: space-between;
  color: #97a2bb;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

@keyframes wsPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.92);
  }
}

.imagery-testimonials {
  background:
    radial-gradient(circle at 12% 16%, rgba(250, 76, 41, 0.1), transparent 38%),
    radial-gradient(circle at 84% 72%, rgba(84, 116, 255, 0.08), transparent 36%),
    #1f2229;
  border-top: 1px solid rgba(250, 76, 41, 0.2);
  border-bottom: 1px solid rgba(250, 76, 41, 0.2);
}

.imagery-flow {
  display: grid;
  gap: clamp(26px, 4vw, 46px);
}

.imagery-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
}

.row-intro {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.row-proof {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.row-social {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.visual {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visual-hero {
  aspect-ratio: 16 / 9;
  min-height: 360px;
}

.visual-tall {
  aspect-ratio: 3 / 4;
  max-width: 470px;
  justify-self: end;
}

.visual-wide {
  aspect-ratio: 16 / 9;
  min-height: 320px;
}

.imagery-copy h2 {
  margin: 10px 0 0;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.02;
}

.imagery-copy h3 {
  margin: 0;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  line-height: 1.06;
}

.imagery-copy p {
  margin: 16px 0 0;
  color: #c8d0de;
  font-size: 1rem;
  line-height: 1.55;
}

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

.proof-inline article {
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-inline h4 {
  margin: 0;
  color: var(--accent);
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: clamp(1.2rem, 2.1vw, 1.8rem);
}

.proof-inline p {
  margin: 4px 0 0;
  color: #aeb9ce;
  font-size: 0.84rem;
}

.quote-stack {
  display: grid;
  gap: 20px;
}

.social-quote {
  margin: 0;
  border-left: 3px solid rgba(250, 76, 41, 0.74);
  padding: 2px 0 2px 14px;
}

.social-quote p {
  margin: 0;
  color: #d0d7e4;
  line-height: 1.48;
}

.social-quote cite {
  margin-top: 10px;
  display: block;
  color: #abb7cb;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
}

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

.visual-square {
  aspect-ratio: 1 / 1;
  min-height: 220px;
}

.seo-team {
  background: #1d2026;
}

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

.seo-card-block {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 14px 0 0;
}

.seo-card-block h3 {
  margin: 0;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: 1.03rem;
  line-height: 1.12;
}

.seo-card-block p {
  margin: 10px 0 0;
  color: #b6bfd1;
  font-size: 0.9rem;
  line-height: 1.52;
}

.team-intro-shell {
  margin-top: 34px;
  border-radius: 18px;
  border: 1px solid rgba(250, 76, 41, 0.22);
  background: #262b33;
  padding: clamp(20px, 2.7vw, 30px);
}

.team-intro-shell h3 {
  margin: 0;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: clamp(1.44rem, 2.3vw, 1.96rem);
}

.team-intro-shell > p {
  margin: 12px 0 0;
  color: #b5bfd2;
  max-width: 60ch;
}

.team-grid-lite {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.team-card-lite {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #2d323a;
  padding: 10px;
}

.team-slot {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  border: 1px dashed rgba(250, 76, 41, 0.45);
  background:
    linear-gradient(145deg, rgba(250, 76, 41, 0.14), rgba(250, 76, 41, 0.05)),
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
}

.team-card-lite h4 {
  margin: 10px 0 0;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: 0.88rem;
}

.team-card-lite p {
  margin: 4px 0 0;
  color: #aeb9ce;
  font-size: 0.79rem;
}

.proof {
  background: #1d1f24;
  padding-top: 84px;
}

.proof-panel {
  border-radius: 28px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(250, 76, 41, 0.28);
  background: #282c33;
  box-shadow: var(--shadow-lg);
}

.proof-panel h2 {
  margin: 0;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: clamp(1.84rem, 3.8vw, 2.8rem);
}

.proof-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.proof-grid article {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #2f343d;
  padding: 14px;
}

.proof-grid h3 {
  margin: 0;
  color: var(--accent);
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
}

.proof-grid p {
  margin: 4px 0 0;
  color: #aab5c8;
  font-size: 0.84rem;
}

.testimonials {
  background: #22252b;
}

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

.fb-testimonials-grid {
  align-items: start;
}

.testimonial-card {
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: #2b3038;
  box-shadow: var(--shadow-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  transition: transform 0.26s var(--ease), border-color 0.26s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(250, 76, 41, 0.42);
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
}

.testimonial-author {
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent, #fa4c29);
}

.fb-testimonial-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #2b3038;
  box-shadow: var(--shadow-md);
  padding: 14px;
  min-height: 240px;
  transition: transform 0.26s var(--ease), border-color 0.26s var(--ease);
}

.fb-testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(250, 76, 41, 0.42);
}

.fb-testimonial-card .fb-post {
  margin: 0 auto;
  min-height: 210px;
}

.fb-testimonial-card .fb-post > span {
  display: block !important;
  width: 100% !important;
}

.fb-testimonial-card iframe {
  max-width: 100% !important;
}

.team {
  background: #1f2126;
}

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

.team-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #2a2d34;
  box-shadow: var(--shadow-md);
  text-align: center;
  padding: 16px 12px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(250, 76, 41, 0.4);
}

.avatar-slot {
  width: 84px;
  height: 84px;
  margin: 0 auto 12px;
  border-radius: 20px;
  border: 1px dashed rgba(250, 76, 41, 0.5);
  background: rgba(250, 76, 41, 0.1);
  overflow: hidden;
}

.avatar-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.team-card h3 {
  margin: 0;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: 0.98rem;
}

.team-card p {
  margin: 6px 0 0;
  color: #a8b2c6;
  font-size: 0.84rem;
}

.site-footer {
  background: #16181c;
  border-top: 1px solid rgba(250, 76, 41, 0.2);
  padding: 58px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.footer-grid h3 {
  margin: 0 0 12px;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: 0.98rem;
}

.footer-grid a {
  display: block;
  margin: 6px 0;
  color: #b9c2d3;
  font-size: 0.89rem;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: #9ca8bf;
  font-size: 0.84rem;
}

.footer-bottom a {
  margin-left: 12px;
}

@media (max-width: 1120px) {
  .hero-layout,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    margin-top: 0;
    padding-top: clamp(78px, 9.2vw, 116px);
  }

  .hero-copy,
  .hero-side-image,
  .hero-layout .hero-ctas {
    grid-column: auto;
  }

  .hero-side-image {
    min-height: clamp(260px, 55vw, 420px);
  }

  .ai-dock-section {
    height: auto;
    padding: 14px 0 0;
  }

  .ai-dock-section.expanded {
    height: auto;
    padding-bottom: 0;
  }

  .ai-dock-section.expanded .smart-input-shell.hero-ai-shell {
    height: 60vh;
  }

  .ai-dock-section::before {
    display: none;
  }

  .ai-dock-section .container {
    position: static;
    height: auto;
    display: block;
    transition: none;
  }

  .smart-input-shell.hero-ai-shell {
    position: static;
    width: 100%;
    transform: none;
    top: auto;
  }

  .story-row,
  .story-row.reverse {
    grid-template-columns: 1fr;
  }

  .story-row.reverse .story-copy,
  .story-row.reverse .story-image {
    order: initial;
  }

  .sticky-media-wrap {
    position: static;
  }

  .imagery-row,
  .row-intro,
  .row-proof,
  .row-social {
    grid-template-columns: 1fr;
  }

  .visual-tall {
    justify-self: start;
    max-width: 360px;
  }

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

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

  .audio-tier,
  .audio-tier.reverse {
    grid-template-columns: 1fr;
  }

  .audio-tier.reverse .tier-copy {
    order: -1;
  }

  .tier-players {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-nav {
    display: block;
  }

  .nav-shell {
    justify-content: space-between;
    min-height: 40px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-provider-inline {
    font-size: clamp(1.02rem, 4.4vw, 1.26rem);
  }

  .provider-typing {
    width: fit-content;
    animation: none;
    clip-path: none;
  }

  .hero {
    padding-top: 66px;
  }

  .impact-grid,
  .proof-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .seo-content-grid {
    grid-template-columns: 1fr;
  }

  .proof-inline {
    grid-template-columns: 1fr;
  }

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

  .tier-players {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-bottom a {
    margin-left: 0;
    margin-right: 12px;
  }
}

@media (max-width: 560px) {
  .footer-grid,
  .team-grid,
  .team-grid-lite {
    grid-template-columns: 1fr;
  }

  .imagery-mosaic {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@keyframes mistShift {
  0% {
    transform: translate3d(-2%, 0, 0) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate3d(2%, -1%, 0) scale(1.04);
    opacity: 1;
  }
}

@keyframes providerReveal {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

/* ── Smart Input Results ── */

.hero-ai-shell .smart-lead-bubble.smart-result-active {
  width: 100%;
  max-width: min(100%, 780px);
}

/* Chat thread container */
.smart-chat-thread {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 340px;
  overflow-y: auto;
  padding: 4px 2px 4px 0;
  scroll-behavior: smooth;
}

.smart-chat-thread::-webkit-scrollbar {
  width: 5px;
}

.smart-chat-thread::-webkit-scrollbar-track {
  background: transparent;
}

.smart-chat-thread::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
}

.smart-chat-thread::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* Chat bubbles */
.smart-chat-bubble {
  padding: 8px 14px;
  border-radius: 14px;
  max-width: 88%;
  animation: chatBubbleIn 0.22s ease-out;
}

@keyframes chatBubbleIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.smart-chat-user {
  align-self: flex-end;
  background: rgba(255, 106, 0, 0.15);
  border: 1px solid rgba(255, 106, 0, 0.3);
  color: rgba(235, 240, 248, 0.92);
}

.smart-chat-assistant {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(235, 240, 248, 0.88);
}

.smart-chat-clear {
  margin-top: 8px;
  align-self: center;
}

/* ── Search result cards ─────────────────────────────────────────── */

.search-results-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.search-results-header {
  font-size: 0.82rem;
  color: rgba(235, 240, 248, 0.56);
  margin-bottom: 2px;
}

.search-result-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color 0.18s var(--ease);
}

.search-result-card:hover {
  border-color: rgba(255, 106, 0, 0.3);
}

.search-result-header {
  margin-bottom: 6px;
}

.search-result-title {
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(235, 240, 248, 0.95);
  line-height: 1.3;
}

.search-result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.search-meta-tag {
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(235, 240, 248, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.search-result-songs {
  font-size: 0.8rem;
  color: rgba(235, 240, 248, 0.58);
  line-height: 1.45;
  margin-bottom: 6px;
}

.search-result-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}

.search-cat-pill {
  font-size: 0.68rem;
  padding: 1px 7px;
  border-radius: 10px;
  background: rgba(255, 106, 0, 0.1);
  color: rgba(255, 106, 0, 0.8);
  border: 1px solid rgba(255, 106, 0, 0.18);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
}

.search-result-player {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
  margin-bottom: 8px;
}

.search-play-btn {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: #ff6a00;
  color: #fff;
  font-size: 0.78rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.18s, transform 0.12s;
}

.search-play-btn:hover {
  background: #ff8030;
  transform: scale(1.06);
}

.search-play-btn:disabled {
  background: rgba(255, 106, 0, 0.3);
  cursor: default;
  transform: none;
}

.search-wave {
  flex: 1;
  min-width: 0;
  height: 36px;
  overflow: hidden;
  position: relative;
}

.search-time {
  font-size: 0.72rem;
  color: rgba(235, 240, 248, 0.48);
  min-width: 32px;
  text-align: right;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.search-result-actions {
  display: flex;
  gap: 8px;
}

.search-edit-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 14px;
  border-radius: 8px;
  background: rgba(255, 106, 0, 0.12);
  border: 1px solid rgba(255, 106, 0, 0.35);
  color: #ff6a00;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.search-edit-btn:hover {
  background: rgba(255, 106, 0, 0.22);
  border-color: rgba(255, 106, 0, 0.6);
  color: #ff8030;
}

/* Loading dots */
.smart-loading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.smart-loading-label {
  color: rgba(235, 240, 248, 0.72);
  font-size: 0.88rem;
}

.smart-dots {
  display: inline-flex;
  gap: 4px;
}

.smart-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff6a00;
  animation: smartDotPulse 1.2s ease-in-out infinite;
}

.smart-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.smart-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes smartDotPulse {
  0%, 80%, 100% { opacity: 0.25; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1.1); }
}

/* Result text (ask/search) */
.smart-result-text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(235, 240, 248, 0.92);
  white-space: pre-wrap;
  word-break: break-word;
}

/* Error */
.smart-result-error {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ff8a6a;
  font-size: 0.9rem;
}

.smart-result-error-icon {
  font-size: 1.1rem;
}

/* Clear/dismiss button */
.smart-result-clear {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(235, 240, 248, 0.62);
  font-size: 0.78rem;
  cursor: pointer;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}

.smart-result-clear:hover {
  color: rgba(235, 240, 248, 0.92);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

/* MixBuild result */
.smart-mixbuild-result {
  font-size: 0.88rem;
}

.smart-mixbuild-header {
  margin-bottom: 10px;
  color: rgba(235, 240, 248, 0.82);
}

.smart-mix-status-valid {
  color: #6be68a;
}

.smart-mix-status-invalid {
  color: #ff8a6a;
}

.smart-mixbuild-tracks {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.smart-track-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.smart-track-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.smart-track-cat {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 106, 0, 0.82);
  width: 72px;
  flex-shrink: 0;
}

.smart-track-name {
  flex: 1;
  color: rgba(235, 240, 248, 0.88);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.smart-track-pos {
  font-size: 0.78rem;
  color: rgba(235, 240, 248, 0.48);
  flex-shrink: 0;
  white-space: nowrap;
}

/* Warnings and errors in mix results */
.smart-mix-warnings,
.smart-mix-errors {
  margin-top: 8px;
  font-size: 0.82rem;
}

.smart-mix-warning {
  color: #f5c96a;
  padding: 2px 0;
}

.smart-mix-error {
  color: #ff8a6a;
  padding: 2px 0;
}

/* Audio preview section */
.smart-audio-section {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.smart-audio-generating {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

.smart-audio-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 106, 0, 0.25);
  border-top-color: #ff6a00;
  border-radius: 50%;
  animation: smartSpin 0.8s linear infinite;
  flex-shrink: 0;
}

@keyframes smartSpin {
  to { transform: rotate(360deg); }
}

.smart-audio-status {
  color: rgba(235, 240, 248, 0.68);
  font-size: 0.84rem;
}

.smart-audio-error {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ff8a6a;
  font-size: 0.84rem;
}

.smart-audio-retry {
  padding: 3px 10px;
  border: 1px solid rgba(255, 106, 0, 0.4);
  border-radius: 6px;
  background: rgba(255, 106, 0, 0.12);
  color: #ff6a00;
  font-size: 0.78rem;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
  flex-shrink: 0;
}

.smart-audio-retry:hover {
  background: rgba(255, 106, 0, 0.22);
  border-color: rgba(255, 106, 0, 0.6);
}

.smart-audio-player {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.smart-mix-play-btn {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #ff6a00;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.18s, transform 0.12s;
}

.smart-mix-play-btn:hover {
  background: #ff8030;
  transform: scale(1.06);
}

.smart-mix-play-btn:disabled {
  background: rgba(255, 106, 0, 0.3);
  cursor: default;
  transform: none;
}

.smart-mix-wave {
  flex: 1;
  min-width: 0;
  height: 48px;
  overflow: hidden;
  position: relative;
}

.smart-mix-time {
  font-size: 0.78rem;
  color: rgba(235, 240, 248, 0.52);
  min-width: 36px;
  text-align: right;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

/* 8CountMixer CTA */
.smart-mix-cta {
  margin-top: 12px;
  text-align: center;
}
.smart-mix-cta-btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 10px;
  background: var(--accent);
  color: #15171c;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.smart-mix-cta-btn:hover {
  background: #ff8533;
  transform: translateY(-1px);
}
