:root {
  --font-display: "Space Grotesk", "IBM Plex Sans", "Eurostile", "Bank Gothic", sans-serif;
  --font-body: "Space Grotesk", "IBM Plex Sans", "Segoe UI Variable", sans-serif;
  --font-code: "IBM Plex Mono", "SFMono-Regular", "Consolas", monospace;
  --bg: #f3f5ec;
  --bg-deep: #070908;
  --surface: rgba(247, 249, 239, 0.84);
  --surface-strong: #fbfcf4;
  --surface-dark: linear-gradient(180deg, #101413 0%, #060807 100%);
  --text: #0b0f0d;
  --muted: #4d5954;
  --line: rgba(11, 15, 13, 0.14);
  --accent: #fcdc0f;
  --accent-strong: #101413;
  --accent-soft: rgba(252, 220, 15, 0.16);
  --highlight: #00d9ff;
  --shadow: 0 28px 80px rgba(4, 8, 6, 0.12);
  --radius-xl: 8px;
  --radius-lg: 6px;
  --radius-md: 4px;
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  overflow-x: clip;
  background:
    radial-gradient(circle at top left, rgba(252, 220, 15, 0.18), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(0, 217, 255, 0.14), transparent 18%),
    linear-gradient(180deg, #f6f8ed 0%, #fbfcf4 52%, #e9eee4 100%);
}

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

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

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: none;
}

.page-shell {
  position: relative;
  width: calc(100% - 32px);
  margin: 24px auto 32px;
}

#top,
#platform,
#how-it-works,
#ai-agent-knowledge-management,
#use-cases,
#references,
#faq,
#access,
#contacts {
  scroll-margin-top: 108px;
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px;
  border: 1px solid rgba(9, 14, 12, 0.16);
  border-radius: 8px;
  background: rgba(247, 249, 239, 0.68);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.025);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.brand-icon {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-wordmark {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--text);
}

.site-nav a,
.button,
.eyebrow,
.pill,
.hero-highlights span,
.mini-panel strong,
.step-card span,
.info-card span,
.site-footer strong,
.language-button,
.reference-brand strong {
  font-family: var(--font-display);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.menu-toggle,
.menu-backdrop {
  display: none;
}

.site-nav a,
.site-footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-current,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--text);
}

.site-nav a.is-current {
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-webapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(9, 14, 12, 0.18);
  background: #101413;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.header-webapp-link:hover,
.header-webapp-link:focus-visible {
  background: #1b211f;
  transform: translateY(-1px);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid rgba(9, 14, 12, 0.14);
  background: rgba(247, 249, 239, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.language-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 8px 10px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.language-button.is-active {
  background: #101413;
  color: var(--accent);
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-solid {
  color: #080b09;
  background: var(--accent);
  box-shadow: 0 18px 36px rgba(252, 220, 15, 0.24);
}

.button-ghost {
  color: var(--text);
  border-color: rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.7);
}

.site-header .button-ghost {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(17, 17, 17, 0.06);
}

.button-link {
  color: #101413;
}

.hero > *,
.split-layout > *,
.split-section > *,
.cards > *,
.steps-grid > *,
.benefit-band > *,
.section-heading,
.platform-section,
.platform-section h2,
.platform-section p {
  min-width: 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) minmax(300px, 1.12fr) minmax(280px, 0.92fr);
  gap: 22px;
  align-items: center;
  min-height: calc(100vh - 132px);
  margin-top: 22px;
  padding: clamp(34px, 5vw, 64px);
  overflow: hidden;
  border: 1px solid rgba(252, 220, 15, 0.12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 48% 48%, rgba(252, 220, 15, 0.12), transparent 30%),
    radial-gradient(circle at 80% 22%, rgba(0, 217, 255, 0.12), transparent 22%),
    linear-gradient(180deg, #101413 0%, #050606 100%);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.26);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -22% 18%;
  height: 48%;
  background: radial-gradient(ellipse at center, rgba(252, 220, 15, 0.2), transparent 64%);
  filter: blur(28px);
  pointer-events: none;
}

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

.hero-copy,
.console-card,
.info-card,
.panel,
.step-card,
.benefit-band,
.faq-item,
.cta-section {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy,
.info-card,
.panel,
.step-card,
.benefit-band,
.faq-item,
.cta-section {
  background: var(--surface);
  backdrop-filter: blur(14px);
}

.hero-actions-panel {
  align-self: end;
  display: grid;
  gap: 20px;
}

.hero-copy {
  justify-self: end;
  max-width: 440px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  position: relative;
  overflow: visible;
}

.hero-logo-stage {
  display: grid;
  place-items: center;
  min-width: 0;
}

.hero-main-logo {
  width: min(100%, 520px);
  max-height: min(64vh, 560px);
  object-fit: contain;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.72));
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2,
h3,
.contact-title {
  margin: 0;
  line-height: 1.02;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 500;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  letter-spacing: 0;
}

.hero-title {
  max-width: 18ch;
  font-size: clamp(2rem, 3.4vw, 4.3rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.22rem, 1.95vw, 1.72rem);
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  font-size: 1.14rem;
}

p,
li {
  color: var(--muted);
  line-height: 1.72;
  overflow-wrap: break-word;
  word-break: normal;
}

.hero-text {
  max-width: 48ch;
  margin: 22px 0 0;
  font-size: clamp(0.92rem, 1.15vw, 1.05rem);
}

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

.hero-actions-centered {
  justify-content: center;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-highlights span {
  display: inline-flex;
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 0;
  color: var(--text);
  background: rgba(252, 220, 15, 0.12);
  border: 1px solid rgba(11, 15, 13, 0.14);
  font-size: 0.88rem;
}

.hero-highlights .hero-highlight-typewriter {
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-weight: 700;
  box-shadow: none;
}

.hero-highlights .hero-highlight-typewriter.is-typing,
.hero-highlights .hero-highlight-typewriter.is-typed {
  color: #ffffff;
  background: rgba(252, 220, 15, 0.16);
  box-shadow: 0 0 24px rgba(252, 220, 15, 0.18);
}

.hero-highlights .hero-highlight-typewriter.is-typing::after,
.hero-highlights .hero-highlight-typewriter.is-typed::after {
  display: inline-block;
  width: 0.72ch;
  margin-left: 2px;
  color: var(--accent);
  content: "|";
}

.hero-highlights .hero-highlight-typewriter.is-typing::after {
  animation: typewriterCursor 520ms steps(1) infinite;
}

.hero-highlights .hero-highlight-typewriter.is-typed::after {
  opacity: 0.72;
}

.hero .button-link {
  color: #ffffff;
}

.hero .hero-copy .eyebrow,
.hero .hero-copy .hero-title,
.hero .hero-copy .hero-text {
  color: #ffffff;
}

.hero .hero-copy .hero-text {
  color: rgba(255, 255, 255, 0.78);
}

.hero .hero-highlights span {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.11);
}

.hero .hero-highlights .hero-highlight-typewriter {
  color: #ffffff;
  background: transparent;
  border-color: transparent;
}

.hero .hero-highlights .hero-highlight-typewriter.is-typing,
.hero .hero-highlights .hero-highlight-typewriter.is-typed {
  background: rgba(252, 220, 15, 0.16);
  box-shadow: 0 0 24px rgba(252, 220, 15, 0.18);
}

.hero-chat-section {
  padding: 36px 0 28px;
}

.hero-chat-section .hero-visual {
  max-width: none;
  margin: 0 auto;
}

.hero-chat-section .console-card {
  padding: clamp(24px, 4vw, 44px);
}

.iphone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 320px));
  gap: clamp(18px, 2.4vw, 32px);
  justify-content: center;
  align-items: start;
}

.iphone-mockup {
  min-width: 0;
}

.iphone-device {
  position: relative;
  width: 100%;
  height: 710px;
  margin: 0 auto;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04) 24%, rgba(0, 0, 0, 0.86) 62%),
    #080a09;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.05),
    0 28px 64px rgba(0, 0, 0, 0.42);
}

.iphone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 3;
  width: 88px;
  height: 24px;
  border-radius: 0 0 16px 16px;
  background: #050606;
  transform: translateX(-50%);
}

.iphone-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 684px;
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 24px;
  padding: 46px 16px 18px;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 217, 255, 0.13), transparent 34%),
    radial-gradient(circle at 92% 14%, rgba(252, 220, 15, 0.13), transparent 30%),
    linear-gradient(180deg, #111615 0%, #060807 100%);
  scrollbar-width: thin;
  scrollbar-color: rgba(252, 220, 15, 0.42) transparent;
}

.iphone-status {
  position: absolute;
  top: 12px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-code);
  font-size: 0.68rem;
  font-weight: 600;
}

.iphone-chat-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
}

.iphone-chat-header .chat-avatar {
  width: 42px;
  height: 42px;
}

.iphone-chat-header strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 0.86rem;
  line-height: 1.2;
}

.iphone-chat-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.5;
}

.iphone-chat-thread {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  flex: 1;
  align-content: start;
}

.iphone-message {
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16);
}

.iphone-message small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-code);
  font-size: 0.66rem;
}

.iphone-message p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  line-height: 1.46;
}

.iphone-message-user {
  margin-left: 18px;
  border-color: rgba(252, 220, 15, 0.28);
  background: linear-gradient(180deg, #ffe866 0%, #fcdc0f 100%);
}

.iphone-message-user small,
.iphone-message-user p {
  color: #080b09;
}

.iphone-message-assistant {
  margin-right: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.iphone-source {
  position: relative;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(252, 220, 15, 0.16);
  background: rgba(252, 220, 15, 0.08);
}

.iphone-source span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-family: var(--font-code);
  font-size: 0.66rem;
  font-weight: 700;
}

.iphone-source p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  line-height: 1.4;
}

.console-card {
  padding: 28px;
  border-radius: 0;
  background:
    radial-gradient(circle at top right, rgba(252, 220, 15, 0.12), transparent 24%),
    radial-gradient(circle at 18% 16%, rgba(0, 217, 255, 0.09), transparent 16%),
    var(--surface-dark);
  color: #edf5ff;
}

.hero-logo-panel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  margin: 22px 0 18px;
  border-radius: 8px;
  background: rgba(252, 220, 15, 0.07);
}

.hero-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 auto;
}

.hero-logo-panel strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
}

.hero-logo-panel p {
  margin: 0;
  color: rgba(237, 245, 255, 0.76);
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.scenario-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.scenario-button {
  position: relative;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 180ms ease;
}

.scenario-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  transform: translate(-50%, -50%);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.scenario-button:hover,
.scenario-button:focus-visible {
  transform: scale(1.08);
}

.scenario-button:hover::before,
.scenario-button:focus-visible::before {
  background: rgba(255, 255, 255, 0.5);
}

.scenario-button.is-active::before {
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.pill {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  background: rgba(255, 255, 255, 0.08);
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 0;
  background: #72e0bb;
  box-shadow: 0 0 0 8px rgba(114, 224, 187, 0.12);
}

.console-grid {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.chat-shell {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  touch-action: pan-y;
  user-select: none;
  transition: opacity 220ms ease, transform 220ms ease, filter 220ms ease;
  transform-origin: center top;
}

.console-card-chat.is-transitioning .chat-shell {
  opacity: 0.55;
  transform: translateY(8px);
  filter: saturate(0.92);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

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

.chat-avatar {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex: 0 0 auto;
}

.chat-avatar-wrap strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
}

.chat-avatar-wrap p {
  margin: 0;
  color: rgba(237, 245, 255, 0.76);
  overflow-wrap: anywhere;
}

.chat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.chat-tags span {
  display: inline-flex;
  max-width: 100%;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: var(--font-code);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.8rem;
}

.chat-thread {
  display: grid;
  gap: 14px;
}

.console-card-chat.is-dragging .chat-shell {
  cursor: grabbing;
}

.message-row {
  display: flex;
}

.message-row-user {
  justify-content: flex-end;
}

.message-row-assistant {
  justify-content: flex-start;
}

.message-card {
  max-width: min(92%, 460px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
  line-height: 1.6;
}

.message-card small {
  display: block;
  margin-bottom: 8px;
  color: rgba(237, 245, 255, 0.68);
}

.message-card p {
  margin: 0;
  color: rgba(237, 245, 255, 0.9);
}

.message-card-user {
  background: linear-gradient(180deg, rgba(48, 74, 136, 0.88), rgba(29, 44, 86, 0.96));
}

.message-card-assistant {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.05));
}

.source-box {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.source-box strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
}

.source-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.source-list li {
  color: rgba(237, 245, 255, 0.76);
}

.chat-footer-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mini-panel {
  padding: 18px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.mini-panel-inline {
  margin: 0;
}

.mini-panel small {
  display: block;
  margin-bottom: 8px;
  color: rgba(237, 245, 255, 0.68);
}

.mini-panel strong {
  display: block;
  margin-bottom: 0;
  color: #fff;
}

.console-card-chat[data-scenario="industrial"] .message-card-user {
  background: linear-gradient(180deg, rgba(43, 72, 132, 0.92), rgba(22, 39, 78, 0.98));
}

.console-card-chat[data-scenario="industrial"] .scenario-button.is-active::before {
  background: #8eb7ff;
  box-shadow: 0 0 0 4px rgba(142, 183, 255, 0.18);
}

.console-card-chat[data-scenario="commercial"] .message-card-user {
  background: linear-gradient(180deg, rgba(39, 114, 95, 0.92), rgba(20, 79, 64, 0.98));
}

.console-card-chat[data-scenario="commercial"] .chat-tags span:first-child {
  background: rgba(67, 187, 152, 0.16);
}

.console-card-chat[data-scenario="commercial"] .scenario-button.is-active::before {
  background: #6de0b8;
  box-shadow: 0 0 0 4px rgba(109, 224, 184, 0.18);
}

.console-card-chat[data-scenario="private"] .message-card-user {
  background: linear-gradient(180deg, rgba(121, 86, 155, 0.9), rgba(83, 56, 119, 0.98));
}

.console-card-chat[data-scenario="private"] .chat-tags span:first-child {
  background: rgba(201, 160, 255, 0.14);
}

.console-card-chat[data-scenario="private"] .scenario-button.is-active::before {
  background: #d4b2ff;
  box-shadow: 0 0 0 4px rgba(212, 178, 255, 0.18);
}

.section-grid,
.split-section,
.benefit-section,
.faq-section,
.cta-section {
  padding: 36px 0;
}

.section-heading {
  max-width: 1120px;
  width: 100%;
  margin-bottom: 18px;
}

.split-layout > .section-heading,
.split-section > .section-heading {
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
}
.section-heading h2 {
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: auto;
}

.section-heading p:last-child {
  max-width: none;
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.68;
}

.platform-section .section-heading {
  max-width: none;
}

.platform-section .section-heading h2,
.platform-section .section-heading p:last-child {
  max-width: none;
  text-wrap: auto;
}

.cards {
  display: grid;
  gap: 18px;
}

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

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

.info-card,
.panel,
.step-card,
.cta-section,
.reference-card {
  padding: 28px;
  border-radius: 0;
}

.info-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent-strong);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.88rem;
}

.info-card h3,
.step-card h3 {
  margin-bottom: 12px;
}

.use-case-link {
  position: relative;
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.use-case-link > span:not(.use-case-overlay),
.use-case-link > h3,
.use-case-link > p {
  position: relative;
  z-index: 1;
}

.use-case-overlay {
  position: absolute;
  inset: 18px 18px auto auto;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin: 0;
  padding: 8px 14px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: var(--accent);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.use-case-link::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(247, 249, 239, 0.08), rgba(252, 220, 15, 0.18));
  opacity: 0;
  content: "";
  transition: opacity 180ms ease;
}

.use-case-link:hover,
.use-case-link:focus-visible {
  border-color: rgba(252, 220, 15, 0.48);
  box-shadow:
    0 0 0 1px rgba(252, 220, 15, 0.18),
    0 0 34px rgba(252, 220, 15, 0.22),
    var(--shadow);
  transform: translateY(-4px);
}

.use-case-link:hover::after,
.use-case-link:focus-visible::after,
.use-case-link:hover .use-case-overlay,
.use-case-link:focus-visible .use-case-overlay {
  opacity: 1;
}

.use-case-link:hover .use-case-overlay,
.use-case-link:focus-visible .use-case-overlay {
  transform: translateY(0);
}

.platform-section .info-card {
  position: relative;
  overflow: hidden;
  padding-right: clamp(120px, 13vw, 170px);
  border-color: rgba(252, 220, 15, 0.32);
  box-shadow:
    0 0 0 1px rgba(252, 220, 15, 0.14),
    0 0 34px rgba(252, 220, 15, 0.18),
    var(--shadow);
}

.platform-card-icon {
  position: absolute;
  top: 22px;
  right: 24px;
  width: clamp(74px, 8vw, 118px);
  height: clamp(74px, 8vw, 118px);
  object-fit: contain;
  opacity: 0.17;
  pointer-events: none;
  filter:
    drop-shadow(0 0 12px rgba(252, 220, 15, 0.28))
    drop-shadow(0 0 28px rgba(252, 220, 15, 0.14));
  transform-origin: center;
}

.platform-card-icon-system {
  opacity: 0.34;
  filter:
    grayscale(1)
    brightness(0.42)
    contrast(1.35)
    drop-shadow(0 0 12px rgba(252, 220, 15, 0.12));
  animation: platformIconFloat 5.8s ease-in-out infinite;
}

.platform-card-icon-knowledge {
  top: -18px;
  right: -6px;
  width: clamp(150px, 16vw, 230px);
  height: clamp(150px, 16vw, 230px);
  opacity: 0.26;
  clip-path: circle(34% at 50% 50%);
  object-fit: cover;
  filter:
    brightness(0)
    drop-shadow(0 0 14px rgba(252, 220, 15, 0.18));
  animation: platformIconPulse 6.4s ease-in-out infinite;
}

.platform-section .info-card > span,
.platform-section .info-card > h3,
.platform-section .info-card > p {
  position: relative;
  z-index: 1;
}

@keyframes platformIconFloat {
  0%,
  100% {
    opacity: 0.28;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  50% {
    opacity: 0.42;
    transform: translate3d(-8px, 8px, 0) rotate(-3deg) scale(1.04);
  }
}

@keyframes platformIconPulse {
  0%,
  100% {
    opacity: 0.2;
    transform: translate3d(0, 0, 0) scale(1);
    filter:
      brightness(0)
      drop-shadow(0 0 10px rgba(252, 220, 15, 0.16));
  }

  50% {
    opacity: 0.34;
    transform: translate3d(6px, -6px, 0) scale(1.06);
    filter:
      brightness(0)
      drop-shadow(0 0 16px rgba(252, 220, 15, 0.24));
  }
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  grid-column: 1 / -1;
  align-items: stretch;
}

.step-card {
  height: 100%;
  min-height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  perspective: 1200px;
  outline: none;
}

.step-card-inner {
  position: relative;
  height: 100%;
  min-height: 100%;
  transform-style: preserve-3d;
  transition: transform 620ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.step-card:hover .step-card-inner,
.step-card:focus-visible .step-card-inner {
  transform: rotateY(180deg);
}

.step-card:focus-visible {
  outline: 2px solid rgba(252, 220, 15, 0.72);
  outline-offset: 4px;
}

.step-card-face {
  height: 100%;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(252, 220, 15, 0.32);
  background: var(--surface);
  box-shadow:
    0 0 0 1px rgba(252, 220, 15, 0.14),
    0 0 34px rgba(252, 220, 15, 0.18),
    var(--shadow);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.step-card-back {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(252, 220, 15, 0.14), transparent 46%),
    var(--surface);
  transform: rotateY(180deg);
}

.step-card-back img {
  width: min(68%, 172px);
  max-height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(252, 220, 15, 0.2));
  animation: stepIconDrift 5.8s ease-in-out infinite;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 0;
  color: #fff;
  background: #101413;
  color: var(--accent);
}

@keyframes stepIconDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -8px, 0) scale(1.04);
  }
}

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

.concept-section {
  align-items: center;
}

.concept-summary-card {
  align-self: center;
  min-height: 300px;
  padding: 38px 42px;
  border-color: rgba(252, 220, 15, 0.38);
  background: rgba(252, 253, 244, 0.82);
  box-shadow:
    0 0 0 1px rgba(252, 220, 15, 0.18),
    0 0 34px rgba(252, 220, 15, 0.2),
    var(--shadow);
  animation: conceptCardFloat 8s ease-in-out infinite;
  will-change: transform, box-shadow;
}

.concept-summary-card h2 {
  max-width: 520px;
  margin-bottom: 20px;
  font-size: clamp(1.55rem, 2vw, 2.1rem);
}

.concept-summary-list {
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 18px;
}

.concept-summary-list li {
  position: relative;
  padding: 14px 0 14px 34px;
  color: var(--text);
  font-weight: 700;
  font-size: clamp(1.08rem, 1.35vw, 1.32rem);
  line-height: 1.38;
}

.concept-summary-list li::before {
  position: absolute;
  top: 22px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 2px solid var(--accent);
  background: rgba(252, 220, 15, 0.18);
  box-shadow: 0 0 16px rgba(252, 220, 15, 0.48);
  content: "";
}

@keyframes conceptCardFloat {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(252, 220, 15, 0.18),
      0 0 34px rgba(252, 220, 15, 0.2),
      var(--shadow);
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(252, 220, 15, 0.24),
      0 0 46px rgba(252, 220, 15, 0.32),
      var(--shadow);
    transform: translate3d(0, -13px, 0) rotate(-0.35deg);
  }
}

.concept-visual {
  display: grid;
  min-height: 360px;
  place-items: center;
}

.concept-visual img {
  width: min(100%, 560px);
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 22px 42px rgba(20, 24, 18, 0.16));
}

.panel-dark {
  background:
    radial-gradient(circle at 20% 22%, rgba(255, 255, 255, 0.06), transparent 22%),
    var(--surface-dark);
}

.panel-dark h2,
.panel-dark li {
  color: #edf5ff;
}

.benefits {
  margin: 22px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
}

.agent-management-heading {
  max-width: 920px;
}

.agent-management-intro span {
  display: block;
}

.agent-management-layout {
  display: grid;
  grid-template-columns: minmax(460px, 1.08fr) minmax(340px, 0.86fr);
  gap: clamp(14px, 2vw, 28px);
  align-items: center;
}

.agent-management-cards {
  display: grid;
  gap: 14px;
}

.agent-management-card {
  min-height: 100%;
  padding: 20px 22px;
  border: 1px solid rgba(252, 220, 15, 0.42);
  background: rgba(247, 249, 239, 0.82);
  box-shadow:
    0 0 0 1px rgba(252, 220, 15, 0.16),
    0 0 34px rgba(252, 220, 15, 0.18),
    var(--shadow);
}

.agent-management-layout h3 {
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 1.35vw, 1.32rem);
  line-height: 1.15;
}

.agent-management-layout p {
  margin: 0;
  line-height: 1.52;
}

.agent-management-layout p + p {
  margin-top: 10px;
}

.agent-management-card .benefits {
  margin-top: 8px;
  gap: 2px;
  line-height: 1.18;
}

.agent-management-card .benefits li {
  margin: 0;
  line-height: 1.18;
}

.agent-title-typewriter {
  display: inline-block;
}

.agent-title-typewriter.is-typing {
  background: rgba(252, 220, 15, 0.16);
  box-shadow: 0 0 24px rgba(252, 220, 15, 0.18);
}

.agent-title-typewriter.is-typing::after {
  display: inline-block;
  width: 0.72ch;
  margin-left: 2px;
  color: var(--accent);
  content: "|";
  animation: typewriterCursor 520ms steps(1) infinite;
}

.agent-management-visual {
  margin: 0;
  display: grid;
  place-items: center end;
}

.agent-management-visual img {
  width: min(100%, 540px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 42px rgba(20, 24, 18, 0.14));
}

.benefit-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  border: 0;
  box-shadow: none;
  background: transparent;
  backdrop-filter: none;
  overflow: visible;
}

.reference-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
  backdrop-filter: blur(14px);
}

.reference-logo-grid {
  display: flex;
  justify-content: center;
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  padding: 18px 0 8px;
}

.reference-logo-link {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(112px, 12vw, 156px);
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(252, 220, 15, 0.34);
  background: rgba(247, 249, 239, 0.82);
  box-shadow:
    0 0 0 1px rgba(252, 220, 15, 0.14),
    0 0 30px rgba(252, 220, 15, 0.16),
    var(--shadow);
  overflow: hidden;
}

.reference-logo-link img {
  width: 78%;
  height: 78%;
  border-radius: 999px;
  object-fit: contain;
  background: #ffffff;
  transition: transform 220ms ease, opacity 220ms ease;
}

.reference-logo-link span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border-radius: inherit;
  background: rgba(8, 11, 9, 0.78);
  color: var(--accent);
  font-family: var(--font-code);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease;
}

.reference-logo-link:hover img,
.reference-logo-link:focus-visible img {
  transform: scale(1.06);
  opacity: 0.3;
}

.reference-logo-link:hover span,
.reference-logo-link:focus-visible span {
  opacity: 1;
  transform: scale(1);
}

.references-page-main {
  display: grid;
  gap: 52px;
}

.references-page-main .section-heading {
  max-width: none;
}

.references-title-typewriter {
  display: inline;
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.8rem, 4.8vw, 3.55rem);
}

.references-title-typewriter.is-typing,
.references-title-typewriter.is-typed {
  background: rgba(252, 220, 15, 0.16);
  box-shadow: 0 0 24px rgba(252, 220, 15, 0.18);
}

.references-title-typewriter.is-typing::after,
.references-title-typewriter.is-typed::after {
  display: inline-block;
  width: 0.72ch;
  margin-left: 2px;
  color: var(--accent);
  content: "|";
}

.references-title-typewriter.is-typing::after {
  animation: typewriterCursor 520ms steps(1) infinite;
}

.references-title-typewriter.is-typed::after {
  opacity: 0.72;
}

.references-list {
  display: grid;
  gap: 22px;
}

.reference-wide-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(252, 220, 15, 0.38);
  background: rgba(247, 249, 239, 0.82);
  box-shadow:
    0 0 0 1px rgba(252, 220, 15, 0.14),
    0 0 34px rgba(252, 220, 15, 0.18),
    var(--shadow);
}

.reference-wide-aside {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 14px;
}

.reference-wide-logo {
  width: clamp(84px, 8vw, 124px);
  aspect-ratio: 1;
  border-radius: 999px;
  object-fit: contain;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(20, 24, 18, 0.1);
}

.reference-wide-aside strong {
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
}

.reference-wide-content {
  display: grid;
  gap: 16px;
}

.reference-wide-content h2 {
  max-width: none;
  font-size: clamp(1.18rem, 1.55vw, 1.58rem);
  line-height: 1.16;
}

.reference-wide-content p {
  margin: 0;
  max-width: 96ch;
  line-height: 1.64;
}

.reference-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent-strong);
  font-size: 0.88rem;
}

.reference-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.reference-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ffffff;
}

.reference-brand strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.reference-brand p {
  margin: 0;
  line-height: 1.5;
}

.reference-card h3 {
  margin-bottom: 12px;
}

.reference-points {
  margin: 18px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.reference-note {
  margin: 18px 0 0;
}

.specialized-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(360px, 0.78fr);
  gap: clamp(72px, 8vw, 140px);
  align-items: center;
  padding: 34px 0;
  justify-content: center;
}

.specialized-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.specialized-title {
  max-width: none;
  font-size: clamp(1.55rem, 2.25vw, 2.25rem);
  line-height: 1.14;
}

.specialized-title-typewriter {
  display: inline;
}

.specialized-title-typewriter.is-typing,
.specialized-title-typewriter.is-typed {
  background: rgba(252, 220, 15, 0.16);
  box-shadow: 0 0 24px rgba(252, 220, 15, 0.18);
}

.specialized-title-typewriter.is-typing::after,
.specialized-title-typewriter.is-typed::after {
  display: inline-block;
  width: 0.72ch;
  margin-left: 2px;
  color: var(--accent);
  content: "|";
}

.specialized-title-typewriter.is-typing::after {
  animation: typewriterCursor 520ms steps(1) infinite;
}

.specialized-title-typewriter.is-typed::after {
  opacity: 0.72;
}

.highlight-word {
  color: var(--accent);
  text-shadow: 0 0 22px rgba(252, 220, 15, 0.24);
}

.title-break {
  display: block;
}

.specialized-copy p {
  max-width: 76ch;
  margin: 18px 0 0;
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
  line-height: 1.65;
}

.trust-grid {
  position: relative;
  display: grid;
  gap: 12px;
  margin-top: 0;
  max-width: 620px;
}

.trust-grid::before,
.trust-grid::after {
  content: "";
  position: absolute;
  left: clamp(-72px, -5vw, -34px);
  width: clamp(54px, 5vw, 86px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(252, 220, 15, 0.92));
  box-shadow: 0 0 18px rgba(252, 220, 15, 0.28);
  transform-origin: right center;
  animation: trustCordFloat 7.5s ease-in-out infinite;
}

.trust-grid::before {
  top: 24%;
  transform: rotate(8deg);
}

.trust-grid::after {
  bottom: 24%;
  transform: rotate(-8deg);
  animation-delay: -2.4s;
}

.trust-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid rgba(252, 220, 15, 0.32);
  background: var(--surface);
  box-shadow:
    0 0 0 1px rgba(252, 220, 15, 0.12),
    0 0 28px rgba(252, 220, 15, 0.16),
    var(--shadow);
  animation: trustCardFloat 8s ease-in-out infinite;
}

.trust-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: clamp(-72px, -5vw, -34px);
  width: clamp(54px, 5vw, 86px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(252, 220, 15, 0.82));
  box-shadow: 0 0 14px rgba(252, 220, 15, 0.22);
  transform: translateY(-50%);
  animation: trustCordFloat 7s ease-in-out infinite;
}

.trust-card-2 {
  animation-delay: -2.2s;
}

.trust-card-2::before {
  animation-delay: -1.7s;
}

.trust-card-3 {
  animation-delay: -4.1s;
}

.trust-card-3::before {
  animation-delay: -3s;
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(252, 220, 15, 0.24);
  background: rgba(252, 220, 15, 0.08);
  box-shadow: inset 0 0 18px rgba(252, 220, 15, 0.08);
}

.icon-mark {
  width: 24px;
  height: 24px;
  stroke: #101413;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-mark-image {
  width: 30px;
  height: 30px;
  object-fit: contain;
  stroke: none;
  filter: drop-shadow(0 0 10px rgba(252, 220, 15, 0.22));
}

.trust-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.52;
}

@keyframes trustCardFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes trustCordFloat {
  0%,
  100% {
    opacity: 0.56;
    translate: 0 0;
  }

  50% {
    opacity: 0.96;
    translate: 0 -5px;
  }
}

.poster-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
  backdrop-filter: blur(14px);
}

.poster-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.poster-copy {
  padding: 24px;
}

.poster-copy h3 {
  margin-bottom: 12px;
}

.poster-copy p:last-child {
  margin-bottom: 0;
}
.benefit-flip-card {
  height: 216px;
  min-height: 216px;
  perspective: 1100px;
  perspective-origin: 50% 50%;
  contain: layout paint;
  isolation: isolate;
  transform: translateZ(0);
}

.benefit-flip-inner {
  position: relative;
  height: 100%;
  min-height: 100%;
  transform-style: preserve-3d;
  transition: transform 460ms cubic-bezier(0.22, 0.72, 0.22, 1);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.benefit-flip-card:hover .benefit-flip-inner,
.benefit-flip-card:focus-within .benefit-flip-inner,
.benefit-flip-card:focus-visible .benefit-flip-inner {
  transform: rotateY(180deg);
}

.benefit-flip-face {
  position: absolute;
  inset: 0;
  height: 100%;
  min-height: 216px;
  padding: 26px 22px;
  border: 1px solid rgba(252, 220, 15, 0.38);
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 0 0 1px rgba(252, 220, 15, 0.14),
    0 0 30px rgba(252, 220, 15, 0.16),
    var(--shadow);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.benefit-flip-front {
  transform: rotateY(0deg) translateZ(1px);
}

.benefit-flip-back {
  display: grid;
  place-items: center;
  transform: rotateY(180deg) translateZ(1px);
}

.benefit-flip-back img {
  width: min(58%, 150px);
  max-height: 64%;
  object-fit: contain;
  transform: translateZ(0);
}

.benefit-band strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.faq-title-typewriter {
  display: inline;
}

.faq-title-typewriter.is-typing,
.faq-title-typewriter.is-typed {
  background: rgba(252, 220, 15, 0.16);
  box-shadow: 0 0 24px rgba(252, 220, 15, 0.18);
}

.faq-title-typewriter.is-typing::after,
.faq-title-typewriter.is-typed::after {
  display: inline-block;
  width: 0.72ch;
  margin-left: 2px;
  color: var(--accent);
  content: "|";
}

.faq-title-typewriter.is-typing::after {
  animation: typewriterCursor 520ms steps(1) infinite;
}

.faq-title-typewriter.is-typed::after {
  opacity: 0.78;
}

.title-inline-typewriter {
  display: inline;
}

.title-keep-together {
  white-space: nowrap;
}

.text-keep-together {
  white-space: nowrap;
}

.title-inline-typewriter.is-typing,
.title-inline-typewriter.is-typed {
  background: rgba(252, 220, 15, 0.16);
  box-shadow: 0 0 24px rgba(252, 220, 15, 0.18);
}

.title-inline-typewriter.is-typing::after,
.title-inline-typewriter.is-typed::after {
  display: inline-block;
  width: 0.72ch;
  margin-left: 2px;
  color: var(--accent);
  content: "|";
}

.title-inline-typewriter.is-typing::after {
  animation: typewriterCursor 520ms steps(1) infinite;
}

.title-inline-typewriter.is-typed::after {
  opacity: 0.72;
}

.faq-item {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(252, 220, 15, 0.38);
  background: rgba(247, 249, 239, 0.82);
  box-shadow:
    0 0 0 1px rgba(252, 220, 15, 0.14),
    0 0 30px rgba(252, 220, 15, 0.16),
    var(--shadow);
}

.faq-item:not([open]) {
  min-height: 78px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.18;
  min-height: 78px;
  display: flex;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 24px 22px;
  margin: 0;
  font-weight: 400;
  line-height: 1.58;
}

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

.cta-section h2 {
  max-width: 40ch;
  margin: 0 auto 18px;
}

.cta-section p {
  max-width: none;
  margin: 0 auto;
}

.eyebrow-mobile-only {
  display: none;
}

.cta-store-badge {
  display: inline-flex;
}

.cta-download-label {
  margin: 0 0 16px;
}

.cta-section .hero-actions {
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.cta-webapp-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 196px;
  height: 64px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.cta-webapp-badge {
  display: block;
  width: 196px;
  height: 64px;
  object-fit: contain;
  background: transparent;
}

.store-badges {
  margin-top: 28px;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.store-badges-label {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.store-badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.store-badge-link:hover,
.store-badge-link:focus-visible {
  transform: translateY(-2px);
  opacity: 0.92;
}

.store-badge {
  display: block;
  height: 52px;
  width: auto;
}

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

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.contact-detail {
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-detail span {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(237, 245, 255, 0.72);
  font-family: var(--font-code);
  font-weight: 500;
  letter-spacing: 0;
  font-size: 0.84rem;
}

.contact-detail h3 {
  margin-bottom: 8px;
  color: #ffffff;
}

.contact-detail p,
.contact-detail a {
  margin: 0;
  color: rgba(237, 245, 255, 0.88);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
  backdrop-filter: blur(14px);
}

.contact-form p {
  margin: 0;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
  font-size: 0.9rem;
}

.form-field input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(11, 15, 13, 0.16);
  border-radius: 0;
  background: rgba(247, 249, 239, 0.92);
  color: var(--text);
  font: inherit;
}

.form-field input:focus {
  outline: 2px solid rgba(252, 220, 15, 0.72);
  outline-offset: 2px;
}

.contact-title {
  max-width: 11ch;
  font-size: clamp(2.2rem, 4.6vw, 3.7rem);
  letter-spacing: 0;
}

.contact-text {
  max-width: 68ch;
}

.contact-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.contact-mail {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-address-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
}

.location-icon {
  width: 18px;
  height: 18px;
  stroke: rgba(237, 245, 255, 0.88);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mail-icon {
  width: 18px;
  height: 18px;
  stroke: rgba(237, 245, 255, 0.88);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form-intro {
  max-width: 42ch;
}

.form-field textarea {
  width: 100%;
  min-height: 120px;
  padding: 14px 16px;
  border: 1px solid rgba(11, 15, 13, 0.16);
  border-radius: 0;
  background: rgba(247, 249, 239, 0.92);
  color: var(--text);
  font: inherit;
  line-height: 1.6;
  resize: vertical;
}

.form-field textarea:focus {
  outline: 2px solid rgba(252, 220, 15, 0.72);
  outline-offset: 2px;
}

.pricing-main {
  padding: 56px 0 18px;
}

.pricing-hero {
  display: block;
}

.pricing-panel {
  padding: 34px;
}

.pricing-copy-panel {
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  padding: 22px 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.pricing-copy-panel .pricing-text {
  display: block;
  max-width: none;
  width: 100%;
  margin: 0;
  line-height: 1.48;
}

.pricing-copy-panel .pricing-text + .pricing-text {
  margin-top: 12px;
}

.pricing-copy-panel .hero-actions {
  margin-top: 16px;
}

.pricing-category {
  margin-top: 34px;
}

.pricing-category .section-heading {
  margin-bottom: 24px;
}

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

.pricing-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 16px;
  border: 1px solid rgba(11, 15, 13, 0.16);
  background:
    linear-gradient(180deg, #ffe866 0%, #fcdc0f 100%);
  color: #0b0f0d;
  box-shadow: 0 24px 40px rgba(252, 220, 15, 0.18);
}

.pricing-tier-head {
  text-align: center;
}

.pricing-tier h3 {
  margin: 0;
  padding: 12px 14px;
  background: rgba(247, 249, 239, 0.86);
  font-size: 1.8rem;
  text-transform: uppercase;
}

.pricing-tier-description {
  max-width: 28ch;
  margin: 16px auto 0;
  font-size: 1rem;
  line-height: 1.45;
}

.pricing-tier-price {
  margin: 18px 0 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.05;
}

.pricing-tier-note {
  margin: 6px 0 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.pricing-tier-note-strong {
  margin-top: 16px;
  font-size: 1rem;
}

.pricing-tier-features {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.pricing-tier-features li {
  margin-top: 2px;
  padding: 12px 14px;
  background: rgba(247, 249, 239, 0.86);
  text-align: center;
  line-height: 1.35;
}

.pricing-tier-popular {
  transform: translateY(-8px);
}

.pricing-tier-badge {
  align-self: center;
  min-width: 180px;
  margin: -28px 0 12px;
  padding: 10px 18px;
  background: #101413;
  color: var(--accent);
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
}

.pricing-footnotes {
  margin-top: 22px;
  padding: 0 2px;
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing-footnotes p {
  margin: 4px 0 0;
}

.pricing-upgrades {
  margin-top: 42px;
}

.pricing-upgrade-card {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.82fr);
  gap: 0;
  border: 1px solid rgba(11, 15, 13, 0.16);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.pricing-upgrade-card + .pricing-upgrade-card {
  margin-top: 24px;
}

.pricing-upgrade-copy {
  padding: 34px;
}

.pricing-upgrade-copy h3 {
  margin: 0 0 24px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.12;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-upgrade-list {
  max-width: 62ch;
  margin-top: 22px;
}

.pricing-upgrade-list strong {
  display: block;
  font-size: 1.05rem;
}

.pricing-upgrade-list ul {
  margin: 4px 0 0;
  padding-left: 22px;
}

.pricing-upgrade-list li {
  margin-top: 4px;
  color: #252525;
  font-size: 1.02rem;
  line-height: 1.42;
}

.pricing-upgrade-list p {
  margin: 6px 0 0;
  color: #252525;
  font-size: 1.02rem;
  line-height: 1.5;
}

.pricing-upgrade-price {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  padding: 34px 18px;
  background:
    linear-gradient(180deg, #ffe866 0%, #fcdc0f 100%);
  color: #0b0f0d;
  text-align: center;
}

.pricing-upgrade-price h4 {
  margin: 0;
  padding: 12px 14px;
  background: rgba(247, 249, 239, 0.86);
  font-size: 1.35rem;
  text-transform: uppercase;
}

.pricing-upgrade-price-group {
  display: grid;
  gap: 10px;
}

.pricing-upgrade-price-group strong,
.pricing-upgrade-price-group p {
  margin: 0;
  font-weight: 800;
}

.pricing-upgrade-price-group span {
  display: block;
  padding: 9px 12px;
  background: rgba(247, 249, 239, 0.86);
  line-height: 1.35;
}

.pricing-upgrade-note {
  margin-top: 14px;
  padding: 0 10px;
  text-align: left;
  font-style: italic;
  line-height: 1.75;
}

.pricing-upgrade-note strong {
  display: list-item;
  margin-left: 18px;
}

.pricing-upgrade-note p {
  margin: 8px 0 0 42px;
}

.erp-main {
  display: grid;
  gap: 72px;
  padding-top: 28px;
}

.erp-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 640px;
  padding: clamp(34px, 5vw, 72px);
  border: 1px solid rgba(252, 220, 15, 0.24);
  background:
    radial-gradient(circle at 18% 18%, rgba(252, 220, 15, 0.16), transparent 24%),
    linear-gradient(135deg, #080b09 0%, #101413 54%, #070908 100%);
  color: #f7f9ef;
  box-shadow: 0 0 46px rgba(252, 220, 15, 0.2), var(--shadow);
}

.erp-hero h1 {
  max-width: 680px;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(2.35rem, 4.8vw, 5rem);
  line-height: 0.95;
}

.erp-hero-copy > p:not(.eyebrow):not(.erp-kicker) {
  max-width: 720px;
  color: rgba(247, 249, 239, 0.82);
  font-size: clamp(1.05rem, 1.6vw, 1.38rem);
}

.erp-kicker {
  max-width: 620px;
  margin-bottom: 22px;
  color: var(--accent);
  font-family: var(--font-code);
  font-size: clamp(0.82rem, 1vw, 1rem);
  font-weight: 700;
}

.erp-hero-notes {
  display: grid;
  gap: 12px;
  width: min(100%, 560px);
  margin-top: clamp(28px, 5vw, 72px);
}

.erp-hero-note {
  padding: 14px 16px;
  border: 1px solid rgba(252, 220, 15, 0.34);
  background: rgba(247, 249, 239, 0.06);
  box-shadow:
    0 0 0 1px rgba(252, 220, 15, 0.12),
    0 0 26px rgba(252, 220, 15, 0.14);
}

.erp-hero-note p {
  margin: 0;
  color: rgba(247, 249, 239, 0.82);
  font-size: clamp(0.88rem, 1vw, 1rem);
  font-weight: 600;
  line-height: 1.45;
}

.erp-hero-visual {
  display: grid;
  margin: 0;
  place-items: center;
}

.erp-hero-visual img {
  width: min(100%, 680px);
  max-height: 660px;
  object-fit: contain;
  filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.38));
}

.erp-section {
  display: grid;
  gap: 18px;
}

.erp-glow-card {
  border-color: rgba(252, 220, 15, 0.36);
  box-shadow:
    0 0 0 1px rgba(252, 220, 15, 0.16),
    0 0 34px rgba(252, 220, 15, 0.18),
    var(--shadow);
}

.erp-question-card {
  display: grid;
  gap: 12px;
  align-content: center;
  background: rgba(8, 11, 9, 0.94);
}

.erp-question-card span {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(252, 220, 15, 0.24);
  color: #f7f9ef;
  font-family: var(--font-code);
  font-weight: 600;
  box-shadow:
    0 0 0 1px rgba(252, 220, 15, 0.1),
    0 0 20px rgba(252, 220, 15, 0.14);
  animation: erpQuestionFloat 8s ease-in-out infinite;
  will-change: transform, box-shadow;
}

.erp-question-card span:nth-child(2) {
  animation-delay: -1.4s;
}

.erp-question-card span:nth-child(3) {
  animation-delay: -2.8s;
}

.erp-question-card span:nth-child(4) {
  animation-delay: -4.2s;
}

@keyframes erpQuestionFloat {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(252, 220, 15, 0.1),
      0 0 20px rgba(252, 220, 15, 0.14);
    transform: translate3d(0, 0, 0);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(252, 220, 15, 0.18),
      0 0 30px rgba(252, 220, 15, 0.24);
    transform: translate3d(0, -7px, 0);
  }
}

.erp-operational {
  align-items: center;
}

.erp-phone-mockup {
  justify-self: center;
  width: min(100%, 430px);
  padding: 18px;
  border: 3px solid #050706;
  border-radius: 38px;
  background: #050706;
  box-shadow:
    0 30px 72px rgba(7, 9, 8, 0.26),
    0 0 36px rgba(252, 220, 15, 0.12);
}

.erp-phone-screen {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 640px;
  padding: 28px;
  border: 1px solid rgba(252, 220, 15, 0.36);
  border-radius: 28px;
  background: #101413;
  color: #f7f9ef;
  overflow: hidden;
}

.erp-phone-screen::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(252, 220, 15, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(252, 220, 15, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  opacity: 0.36;
}

.erp-phone-screen > * {
  position: relative;
  z-index: 1;
}

.erp-phone-status,
.erp-phone-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.erp-phone-status {
  color: var(--accent);
  font-family: var(--font-code);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.erp-status-pill {
  padding: 5px 8px;
  border: 1px solid rgba(252, 220, 15, 0.4);
  background: rgba(252, 220, 15, 0.12);
}

.erp-phone-topbar {
  justify-content: flex-end;
  gap: 8px;
  margin-top: -4px;
}

.erp-phone-topbar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(252, 220, 15, 0.42);
}

.erp-chat-label {
  margin: 0 0 8px;
  color: var(--accent);
  font-family: var(--font-code);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.erp-chat-card,
.erp-source-card {
  padding: 18px;
  border: 1px solid rgba(252, 220, 15, 0.32);
  background: rgba(247, 249, 239, 0.08);
}

.erp-chat-card p:last-child,
.erp-source-card strong {
  margin: 0;
}

.erp-chat-card-user {
  background: rgba(252, 220, 15, 0.12);
}

.erp-chat-card-assistant {
  background: rgba(247, 249, 239, 0.09);
}

.erp-chat-card-assistant > p:not(.erp-chat-label) {
  color: rgba(247, 249, 239, 0.82);
}

.erp-checklist {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.erp-checklist li {
  position: relative;
  padding-left: 22px;
  color: rgba(247, 249, 239, 0.76);
  font-size: 0.92rem;
}

.erp-checklist li::before {
  position: absolute;
  left: 0;
  color: var(--accent);
  content: ">";
}

.erp-source-card {
  align-self: end;
  margin-top: 6px;
  background: rgba(252, 220, 15, 0.1);
}

.erp-source-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-family: var(--font-code);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.erp-source-card strong {
  display: block;
  color: #f7f9ef;
  font-size: 0.95rem;
}

.erp-operational-column {
  display: grid;
  gap: clamp(36px, 8vw, 96px);
  align-content: space-between;
  min-height: 640px;
}

.erp-knowledge-card {
  justify-self: end;
  width: min(100%, 680px);
  padding: 24px 28px;
  border: 1px solid rgba(252, 220, 15, 0.36);
  background: rgba(247, 249, 239, 0.72);
  box-shadow:
    0 0 0 1px rgba(252, 220, 15, 0.16),
    0 0 34px rgba(252, 220, 15, 0.18),
    var(--shadow);
}

.erp-knowledge-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.65;
}

.erp-operational-copy {
  max-width: 760px;
}

.erp-operational-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.erp-operational-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.65;
}

.erp-operational-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--accent);
  background: rgba(252, 220, 15, 0.14);
  box-shadow: 0 0 16px rgba(252, 220, 15, 0.34);
  content: "";
}

.erp-support-section .section-heading h2 {
  max-width: none;
  text-wrap: auto;
}

.erp-support-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.64fr) minmax(520px, 1.18fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.erp-support-cards {
  display: grid;
  gap: 16px;
  max-width: 620px;
}

.qhse-support-cards {
  max-width: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.qhse-safety-visual {
  display: grid;
  min-height: 100%;
  margin: 0;
  place-items: center;
}

.qhse-safety-visual img {
  width: min(100%, 620px);
  max-height: 460px;
  object-fit: contain;
  filter: drop-shadow(0 22px 42px rgba(20, 24, 18, 0.16));
}

.qhse-lead-text {
  font-size: clamp(1.12rem, 1.5vw, 1.4rem);
  line-height: 1.52;
}

.qhse-lead-text.is-typing {
  background: rgba(252, 220, 15, 0.16);
  box-shadow: 0 0 24px rgba(252, 220, 15, 0.18);
}

.qhse-lead-text.is-typing::after {
  display: inline-block;
  width: 0.72ch;
  margin-left: 2px;
  color: var(--accent);
  content: "|";
  animation: typewriterCursor 520ms steps(1) infinite;
}

.training-main .erp-intro {
  align-items: stretch;
}

.training-main .erp-intro .panel {
  padding: 22px 28px 16px;
}

.training-lead-text {
  font-size: clamp(0.98rem, 1.12vw, 1.12rem);
  line-height: 1.48;
}

.training-lead-text.is-typing {
  background: rgba(252, 220, 15, 0.14);
  box-shadow: 0 0 22px rgba(252, 220, 15, 0.16);
}

.training-lead-text.is-typing::after {
  display: inline-block;
  width: 0.72ch;
  margin-left: 2px;
  color: var(--accent);
  content: "|";
  animation: typewriterCursor 520ms steps(1) infinite;
}

.training-use-typewriter {
  font-size: clamp(1.1rem, 1.45vw, 1.38rem);
  line-height: 1.5 !important;
}

.training-use-typewriter.is-typing {
  background: rgba(252, 220, 15, 0.16);
  box-shadow: 0 0 24px rgba(252, 220, 15, 0.18);
}

.training-use-typewriter.is-typing::after {
  display: inline-block;
  width: 0.72ch;
  margin-left: 2px;
  color: var(--accent);
  content: "|";
  animation: typewriterCursor 520ms steps(1) infinite;
}

.qhse-fit-heading {
  max-width: none;
}

.qhse-wide-title {
  width: 100%;
  max-width: none !important;
  font-size: clamp(1.45rem, 1.75vw, 1.92rem);
  line-height: 1.12;
  text-wrap: auto;
  white-space: nowrap;
}

.qhse-card-typewriter {
  font-size: clamp(1.08rem, 1.35vw, 1.34rem);
  line-height: 1.5 !important;
}

.qhse-card-typewriter.is-typing {
  background: rgba(252, 220, 15, 0.16);
  box-shadow: 0 0 24px rgba(252, 220, 15, 0.18);
}

.qhse-card-typewriter.is-typing::after {
  display: inline-block;
  width: 0.72ch;
  margin-left: 2px;
  color: var(--accent);
  content: "|";
  animation: typewriterCursor 520ms steps(1) infinite;
}

.qhse-flip-card {
  min-height: 100%;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  contain: layout paint;
  isolation: isolate;
  transform: translateZ(0);
}

.qhse-flip-card-inner {
  position: relative;
  min-height: 100%;
  transform-style: preserve-3d;
  transition: transform 460ms cubic-bezier(0.22, 0.72, 0.22, 1);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.qhse-flip-card:hover .qhse-flip-card-inner,
.qhse-flip-card:focus-within .qhse-flip-card-inner,
.qhse-flip-card:focus-visible .qhse-flip-card-inner {
  transform: rotateY(180deg);
}

.qhse-flip-face {
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(252, 220, 15, 0.36);
  background: rgba(247, 249, 239, 0.82);
  box-shadow:
    0 0 0 1px rgba(252, 220, 15, 0.16),
    0 0 34px rgba(252, 220, 15, 0.18),
    var(--shadow);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.qhse-flip-front {
  position: relative;
  transform: rotateY(0deg) translateZ(1px);
}

.qhse-flip-back {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform: rotateY(180deg) translateZ(1px);
}

.qhse-flip-back img {
  width: min(62%, 260px);
  max-height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(20, 24, 18, 0.18));
}

.qhse-flip-back .qhse-governance-icon {
  width: min(54%, 220px);
  max-height: 66%;
}

.qhse-flip-back .training-flip-icon {
  width: min(46%, 190px);
  max-height: 58%;
  object-fit: contain;
}

.erp-support-card {
  padding: 18px 22px;
  border: 1px solid rgba(252, 220, 15, 0.36);
  background: rgba(247, 249, 239, 0.78);
  box-shadow:
    0 0 0 1px rgba(252, 220, 15, 0.14),
    0 0 30px rgba(252, 220, 15, 0.16),
    var(--shadow);
  animation: erpCardFloat 9s ease-in-out infinite;
  will-change: transform, box-shadow;
}

.erp-support-card:nth-child(2) {
  animation-delay: -2.4s;
}

.erp-support-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-family: var(--font-code);
  font-weight: 800;
}

.erp-support-card p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
  font-weight: 600;
  line-height: 1.48;
}

.erp-support-down {
  justify-self: center;
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(252, 220, 15, 0.46);
  background: rgba(252, 220, 15, 0.16);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 0 28px rgba(252, 220, 15, 0.22);
  transform: rotate(90deg);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.erp-support-down:hover,
.erp-support-down:focus-visible {
  box-shadow: 0 0 36px rgba(252, 220, 15, 0.34);
  transform: rotate(90deg) translateX(4px);
}

.erp-support-down span {
  font-family: var(--font-code);
  font-size: 1.6rem;
  font-weight: 800;
}

.erp-support-visual {
  display: grid;
  min-height: 360px;
  place-items: center;
}

.erp-support-visual-frame {
  display: grid;
  width: min(100%, 760px);
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(252, 220, 15, 0.32);
  background: rgba(247, 249, 239, 0.5);
  box-shadow:
    0 0 0 1px rgba(252, 220, 15, 0.12),
    0 0 34px rgba(252, 220, 15, 0.13),
    var(--shadow);
}

.erp-support-visual-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.erp-order-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.erp-order-card {
  padding: 24px 28px;
  border: 1px solid rgba(252, 220, 15, 0.38);
  background: rgba(247, 249, 239, 0.8);
  box-shadow:
    0 0 0 1px rgba(252, 220, 15, 0.16),
    0 0 34px rgba(252, 220, 15, 0.18),
    var(--shadow);
  animation: erpOrderFloat 9s ease-in-out infinite;
  will-change: transform, box-shadow;
}

.erp-order-card:nth-child(2) {
  animation-delay: -2.2s;
}

.erp-order-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.58;
}

.erp-order-typewriter {
  font-size: clamp(1.12rem, 1.55vw, 1.46rem);
  line-height: 1.48 !important;
}

.erp-order-typewriter.is-typing::after {
  display: inline-block;
  width: 0.68ch;
  margin-left: 2px;
  color: var(--accent);
  content: "|";
  animation: typewriterCursor 720ms steps(1) infinite;
}

.erp-order-question {
  margin-bottom: 14px !important;
  color: var(--text) !important;
  font-family: var(--font-code);
  font-weight: 800 !important;
}

.erp-order-knowledge-card {
  justify-self: center;
  grid-column: 1 / -1;
  width: min(100%, 920px);
  margin-top: 18px;
  padding: 26px 30px;
  border: 1px solid rgba(252, 220, 15, 0.4);
  background: rgba(247, 249, 239, 0.82);
  box-shadow:
    0 0 0 1px rgba(252, 220, 15, 0.18),
    0 0 38px rgba(252, 220, 15, 0.2),
    var(--shadow);
  animation: erpCardFloat 10s ease-in-out infinite;
  will-change: transform, box-shadow;
}

.erp-order-knowledge-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.62;
}

.erp-order-knowledge-card p + p {
  margin-top: 16px;
}

.erp-inline-type {
  color: var(--text);
  font-weight: 800;
}

.erp-inline-type.is-typing {
  color: #070908;
  background: rgba(252, 220, 15, 0.28);
  box-shadow: 0 0 18px rgba(252, 220, 15, 0.28);
}

.erp-inline-type.is-typing::after {
  display: inline-block;
  width: 0.72ch;
  margin-left: 2px;
  color: var(--accent);
  content: "|";
  animation: typewriterCursor 520ms steps(1) infinite;
}

@keyframes erpOrderFloat {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(252, 220, 15, 0.16),
      0 0 34px rgba(252, 220, 15, 0.18),
      var(--shadow);
    transform: translate3d(0, 0, 0);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(252, 220, 15, 0.22),
      0 0 44px rgba(252, 220, 15, 0.28),
      var(--shadow);
    transform: translate3d(0, -9px, 0);
  }
}

@keyframes erpCardFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes typewriterCursor {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

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

#erp-use-cases .section-heading h2 {
  max-width: none;
  text-wrap: auto;
}

.erp-use-card {
  min-height: 0;
  padding: 22px 28px;
  border-color: rgba(252, 220, 15, 0.34);
  box-shadow:
    0 0 0 1px rgba(252, 220, 15, 0.14),
    0 0 30px rgba(252, 220, 15, 0.16),
    var(--shadow);
}

.erp-use-card span {
  margin-bottom: 12px;
}

.erp-use-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.08rem, 1.25vw, 1.28rem);
  line-height: 1.18;
}

.erp-use-card p {
  line-height: 1.55;
}

.erp-cta {
  max-width: none;
  border-color: rgba(252, 220, 15, 0.4);
  text-align: center;
}

.erp-cta p {
  max-width: 760px;
  margin-inline: auto;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 6px 0;
  margin-top: 10px;
}

.site-footer p {
  max-width: 72ch;
  margin: 8px 0 0;
}

.footer-company-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(17, 17, 17, 0.28);
  background: rgba(255, 255, 255, 0.96);
}

.footer-legal-link {
  flex: 0 0 100%;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.terms-page {
  display: grid;
  gap: 42px;
}

.terms-title {
  max-width: none;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.terms-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.terms-sidebar {
  position: sticky;
  top: 108px;
}

.terms-nav {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(252, 220, 15, 0.34);
  background: rgba(247, 249, 239, 0.82);
  box-shadow:
    0 0 0 1px rgba(252, 220, 15, 0.14),
    0 0 30px rgba(252, 220, 15, 0.14),
    var(--shadow);
}

.terms-nav a {
  padding: 10px 12px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.24;
  border: 1px solid transparent;
}

.terms-nav a:hover,
.terms-nav a:focus-visible {
  border-color: rgba(252, 220, 15, 0.52);
  background: rgba(252, 220, 15, 0.18);
}

.terms-documents {
  display: grid;
  gap: 28px;
}

.terms-document {
  scroll-margin-top: 108px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(252, 220, 15, 0.36);
  background: rgba(247, 249, 239, 0.82);
  box-shadow:
    0 0 0 1px rgba(252, 220, 15, 0.14),
    0 0 34px rgba(252, 220, 15, 0.16),
    var(--shadow);
}

.terms-document-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.terms-document-heading h2 {
  max-width: none;
}

.terms-document-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.terms-document-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  color: var(--text);
  background: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
}

.terms-document-actions a:hover,
.terms-document-actions a:focus-visible {
  border-color: rgba(252, 220, 15, 0.52);
  background: var(--accent);
}

.terms-pdf-frame {
  display: block;
  width: 100%;
  min-height: min(76vh, 820px);
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #ffffff;
}

.news-page {
  display: grid;
  gap: 42px;
}

.news-title {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
}

.news-title-typewriter {
  display: inline;
}

.news-title-typewriter.is-typing,
.news-title-typewriter.is-typed {
  background: rgba(252, 220, 15, 0.16);
  box-shadow: 0 0 24px rgba(252, 220, 15, 0.18);
}

.news-title-typewriter.is-typing::after,
.news-title-typewriter.is-typed::after {
  display: inline-block;
  width: 0.72ch;
  margin-left: 2px;
  color: var(--accent);
  content: "|";
}

.news-title-typewriter.is-typing::after {
  animation: typewriterCursor 520ms steps(1) infinite;
}

.news-title-typewriter.is-typed::after {
  opacity: 0.72;
}

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

.news-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(252, 220, 15, 0.36);
  background: rgba(247, 249, 239, 0.82);
  box-shadow:
    0 0 0 1px rgba(252, 220, 15, 0.14),
    0 0 34px rgba(252, 220, 15, 0.16),
    var(--shadow);
}

.news-card-meta {
  color: var(--accent-strong);
  font-size: 0.86rem;
  font-weight: 700;
}

.news-card h2 {
  max-width: none;
  font-size: clamp(1.22rem, 1.8vw, 1.56rem);
  line-height: 1.14;
}

.news-card p {
  margin: 0;
}

.news-card a {
  align-self: end;
  justify-self: start;
  margin-top: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  color: var(--text);
  background: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(820px, calc(100vw - 36px));
  padding: 16px 18px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(247, 249, 239, 0.96);
  box-shadow: var(--shadow);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(8px);
}

.cookie-banner p {
  margin: 0;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.48;
}

.cookie-banner-button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 10px 16px;
}

.floating-chat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 95;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  contain: layout paint;
  transform: translateZ(0);
  pointer-events: none;
}

.floating-chat-launcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: rgba(247, 249, 239, 0.94);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  will-change: transform;
  pointer-events: auto;
}

.floating-chat-launcher:hover,
.floating-chat-launcher:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.13);
}

.floating-chat-launcher img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.floating-chat-panel {
  width: min(360px, calc(100vw - 24px));
  max-height: min(70vh, 620px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background: #f7f9ef;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  will-change: transform, opacity;
}

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

.floating-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 14px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: var(--surface-dark);
  color: #ffffff;
}

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

.floating-chat-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: invert(1);
}

.floating-chat-brand strong {
  display: block;
  font-size: 0.98rem;
}

.floating-chat-brand p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.floating-chat-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
}

.floating-chat-close span {
  font-size: 1.4rem;
  line-height: 1;
  transform: rotate(45deg);
}

.floating-chat-body {
  display: grid;
  gap: 14px;
  padding: 16px;
  overflow-y: auto;
  background:
    linear-gradient(180deg, rgba(247, 249, 239, 0.9) 0%, rgba(237, 242, 230, 0.95) 100%);
}

.floating-chat-message {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 16px;
  line-height: 1.45;
}

.floating-chat-message p {
  margin: 0;
}

.floating-chat-message-assistant {
  justify-self: start;
  background: #101413;
  color: var(--accent);
  border-bottom-left-radius: 4px;
}

.floating-chat-message-user {
  justify-self: end;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom-right-radius: 4px;
}

.floating-chat-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.floating-chat-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.floating-chat-chip:hover,
.floating-chat-chip:focus-visible {
  background: #ffffff;
  transform: translateY(-1px);
}

.floating-chat-chip-webapp {
  color: #080b09;
  border-color: var(--accent);
  background: var(--accent);
  font-weight: 700;
}

.floating-chat-chip-webapp:hover,
.floating-chat-chip-webapp:focus-visible {
  background: #ffe866;
}

.floating-chat-input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.floating-chat-input input {
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 12px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

.floating-chat-input .button {
  min-width: 92px;
  padding: 12px 16px;
  border-radius: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

.footer-store-badges {
  margin-top: 18px;
  justify-items: start;
}

.footer-store-badges .store-badges-label {
  font-size: 0.88rem;
}

.footer-store-badges .store-badges-row {
  justify-content: flex-start;
}

.store-badge {
  height: 40px;
}

@media (max-width: 1080px) {
  .split-layout,
  .split-section,
  .cards-two,
  .cards-three,
  .erp-hero,
  .erp-order-grid,
  .erp-support-layout,
  .qhse-support-cards,
  .erp-use-case-grid,
  .steps-grid,
  .agent-management-layout,
  .reference-wide-card,
  .benefit-band,
  .pricing-tier-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
  }

  .hero-logo-stage {
    order: 1;
  }

  .hero-copy {
    order: 2;
    justify-self: start;
    max-width: 680px;
  }

  .hero-actions-panel {
    order: 3;
    align-self: start;
  }

  .pricing-upgrade-card {
    grid-template-columns: 1fr;
  }

  .erp-hero {
    min-height: auto;
  }

  .erp-hero-visual {
    justify-content: start;
  }

  .erp-phone-mockup {
    justify-self: start;
  }

  .specialized-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trust-card::before,
  .trust-grid::before,
  .trust-grid::after {
    display: none;
  }

  .iphone-grid {
    grid-template-columns: repeat(3, 320px);
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .iphone-mockup {
    scroll-snap-align: start;
  }

}

@media (max-width: 860px) {
  .page-shell,
  main,
  section,
  article,
  .panel,
  .info-card,
  .cta-section,
  .contact-form,
  .reference-card,
  .reference-wide-card,
  .erp-order-card,
  .erp-order-knowledge-card,
  .erp-support-card,
  .pricing-tier-card,
  .pricing-upgrade-card {
    max-width: 100%;
  }

  h1,
  h2,
  h3,
  h4,
  p,
  li,
  summary,
  .button,
  .info-card span,
  .reference-wide-aside strong,
  .site-footer strong {
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }

  .button,
  .hero-actions .button,
  .cta-section .button,
  .contact-form .button {
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .use-case-link {
    padding-top: 72px;
  }

  .use-case-overlay {
    opacity: 1;
    transform: none;
  }

  .pricing-upgrade-copy h3 {
    white-space: normal;
  }

  .terms-layout {
    grid-template-columns: 1fr;
  }

  .terms-sidebar {
    position: static;
  }

  .terms-nav {
    grid-auto-flow: column;
    grid-auto-columns: minmax(180px, 1fr);
    overflow-x: auto;
    padding: 10px;
    scroll-snap-type: x proximity;
  }

  .terms-nav a {
    scroll-snap-align: start;
  }

  .terms-document-heading {
    display: grid;
  }

  .terms-document-actions {
    justify-content: flex-start;
  }

  .terms-pdf-frame {
    min-height: 68vh;
  }

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

  .news-title {
    max-width: none;
    font-size: clamp(1.05rem, 5.2vw, 1.8rem);
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    display: grid;
    gap: 10px;
  }

  .cookie-banner-button {
    width: 100%;
  }

  html.menu-open,
  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    top: 8px;
    z-index: 110;
    padding: 9px 12px;
    gap: 10px;
    border-radius: 14px;
    flex-wrap: nowrap;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.52);
    position: sticky;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.56);
    cursor: pointer;
    position: relative;
    z-index: 120;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: #111111;
    transition: transform 180ms ease, opacity 180ms ease;
  }

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

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

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

  .site-nav {
    position: fixed;
    top: var(--mobile-menu-top, 72px);
    right: var(--mobile-menu-right, 10px);
    z-index: 100;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: min(88vw, 340px);
    max-width: calc(100vw - 20px);
    max-height: calc(100dvh - 96px);
    padding: 12px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 14px;
    background: rgba(250, 250, 247, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
    opacity: 0;
    transition: transform 220ms ease, opacity 220ms ease;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
  }

  .site-nav a {
    padding: 12px 14px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.56);
    color: var(--text);
  }

  body.menu-open .site-nav {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }

  .menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    border: 0;
    padding: 0;
    background: rgba(11, 11, 11, 0.28);
    opacity: 0;
    transition: opacity 220ms ease;
  }

  body.menu-open .menu-backdrop {
    display: block;
    opacity: 1;
  }

  .header-actions {
    margin-left: auto;
    flex: 0 0 auto;
  }

  .header-webapp-link {
    display: none;
  }

  .brand-icon {
    width: 36px;
    height: 36px;
  }

  .brand-wordmark {
    font-size: 0.92rem;
  }
}

@media (max-width: 640px) {
  #top,
  #platform,
  #how-it-works,
  #ai-agent-knowledge-management,
  #use-cases,
  #references,
  #faq,
  #access,
  #contacts {
    scroll-margin-top: 88px;
  }

  body {
    padding-bottom: 84px;
  }

  .page-shell {
    width: min(100% - 20px, 100%);
    margin: 10px auto 24px;
  }

  .references-title-typewriter {
    font-size: clamp(1.35rem, 5.4vw, 2.2rem);
  }

  .hero-copy,
  .console-card,
  .info-card,
  .panel,
  .cta-section,
  .reference-card,
  .contact-form {
    padding: 22px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero {
    padding: 28px;
  }

  .hero-main-logo {
    max-height: 42vh;
  }

  .hero-chat-section .console-card {
    padding: 18px;
  }

  .platform-section .info-card {
    padding-right: 22px;
    padding-bottom: 84px;
  }

  .platform-card-icon {
    top: auto;
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    opacity: 0.12;
  }

  .platform-card-icon-system {
    opacity: 0.2;
  }

  .platform-card-icon-knowledge {
    top: auto;
    right: -8px;
    bottom: -20px;
    width: 150px;
    height: 150px;
    opacity: 0.2;
    clip-path: circle(32% at 50% 50%);
  }

  .iphone-device {
    height: 594px;
  }

  .iphone-screen {
    height: 570px;
  }

  h1 {
    font-size: clamp(2.6rem, 15vw, 4.2rem);
  }

  .hero-actions,
  .site-footer,
  .reference-brand {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .cta-section .button,
  .contact-form .button {
    width: 100%;
  }

  .language-switch {
    width: auto;
    position: static;
    z-index: 125;
    border-radius: 0;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: none;
  }

  .language-button {
    min-width: 34px;
    padding: 6px 7px;
    font-size: 0.68rem;
  }

  .reference-logo {
    width: 60px;
    height: 60px;
  }

  .reference-logo-grid {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .reference-wide-aside {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .reference-wide-aside p {
    grid-column: 1 / -1;
  }

  .faq-item summary {
    padding: 18px 20px;
  }

  .faq-item p {
    padding: 0 20px 20px;
  }
  .site-header {
    top: 6px;
    padding: 8px 10px;
  }

  .header-actions {
    gap: 6px;
    width: auto;
    margin-left: 0;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand-wordmark {
    font-size: 0.88rem;
  }

  .hero {
    padding-top: 34px;
  }

  .store-badges {
    margin-top: 22px;
  }

  .store-badge {
    height: 46px;
  }

  .store-badges-row,
  .contact-mail,
  .contact-address,
  .footer-company-row {
    min-width: 0;
  }

  .footer-company-row {
    gap: 8px;
  }

  .footer-company-row span {
    flex: 0 0 100%;
  }

  .footer-social-link {
    flex: 0 0 34px;
  }

  .store-badge-link {
    max-width: 100%;
  }

  .store-badge {
    max-width: min(100%, 160px);
    height: auto;
  }

  .contact-title,
  .contact-text,
  .contact-form-intro,
  .site-footer p {
    max-width: 100%;
  }

  .contact-mail,
  .contact-address {
    align-items: flex-start;
  }

  .contact-mail a {
    min-width: 0;
  }

  .hero-highlights {
    gap: 10px;
  }

  .hero-highlights span,
  .chat-tags span {
    width: 100%;
    justify-content: center;
  }
  .section-heading h2 {
  max-width: none;
  }

  h2 {
  font-size: clamp(1.34rem, 5.4vw, 1.72rem);
  line-height: 1.16;
  }

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

  .cta-section > .eyebrow:first-of-type,
  .cta-section > h2,
  .cta-section > p:not(.cta-download-label) {
    display: none;
  }

  .eyebrow-mobile-only {
    display: block;
    margin-bottom: 18px;
  }

  .cta-section .hero-actions {
    gap: 12px;
    margin: 0;
  }

  .cta-webapp-button {
    display: none;
  }

  .cta-store-badge .store-badge {
    height: 50px;
  }

  .floating-chat {
    right: 10px;
    bottom: 10px;
  }

  .floating-chat-launcher {
    width: 60px;
    height: 60px;
  }

  .floating-chat-launcher img {
    width: 36px;
    height: 36px;
  }

  .floating-chat-panel {
    width: min(100vw - 20px, 360px);
    max-height: min(68vh, 560px);
  }

  .pricing-category {
    margin-top: 28px;
  }

  .pricing-tier-popular {
    transform: none;
  }

  .pricing-tier-badge {
    min-width: 0;
    width: 100%;
    margin: 0 0 12px;
  }

  .pricing-footnotes {
    font-size: 0.86rem;
  }

  .pricing-upgrade-copy,
  .pricing-upgrade-price {
    padding: 24px 18px;
  }

  .pricing-upgrade-copy h3 {
    white-space: normal;
  }
}

@media (max-width: 380px) {
  #top,
  #platform,
  #how-it-works,
  #use-cases,
  #references,
  #faq,
  #access,
  #contacts {
    scroll-margin-top: 78px;
  }

  body {
    padding-bottom: 78px;
  }

  .page-shell {
    width: min(100% - 16px, 100%);
    margin: 8px auto 20px;
  }

  .references-title-typewriter {
    font-size: clamp(1.08rem, 5.4vw, 1.42rem);
  }

  .site-header {
    top: 4px;
    padding: 7px 8px;
    gap: 8px;
  }

  .brand {
    gap: 8px;
  }

  .brand-icon {
    width: 31px;
    height: 31px;
  }

  .brand-wordmark {
    font-size: 0.8rem;
    letter-spacing: 0.03em;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .site-nav {
    width: min(90vw, 300px);
    max-width: calc(100vw - 12px);
    max-height: calc(100dvh - 84px);
    padding: 10px;
  }

  .site-nav a {
    padding: 11px 12px;
    font-size: 0.92rem;
  }

  .language-switch {
    flex-shrink: 0;
  }

  .language-button {
    min-width: 30px;
    padding: 5px 5px;
    font-size: 0.64rem;
  }

  .hero-copy,
  .console-card,
  .info-card,
  .panel,
  .cta-section,
  .reference-card,
  .contact-form,
  .poster-copy {
    padding: 18px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    font-size: clamp(1.95rem, 11.5vw, 2.7rem);
  }

  .hero-title {
    font-size: clamp(1.68rem, 9vw, 2.2rem);
    line-height: 1.12;
  }

  h2 {
    font-size: clamp(1.18rem, 5.8vw, 1.5rem);
  }

  h1,
  h2,
  h3,
  .hero-title,
  .contact-title,
  .cta-section h2,
  .info-card h3,
  .reference-wide-content h2,
  .button {
    overflow-wrap: anywhere;
  }

  .hero-text,
  .section-heading p:last-child,
  .contact-text,
  .contact-form-intro,
  .faq-item p,
  p,
  li {
    line-height: 1.58;
  }

  .hero-actions {
    gap: 10px;
    margin: 0;
  }

  .hero-highlights,
  .chat-thread,
  .chat-shell,
  .contact-details {
    gap: 10px;
  }

  .faq-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .chat-header,
  .message-card,
  .mini-panel,
  .contact-detail {
    padding: 16px;
  }

  .chat-avatar {
    width: 44px;
    height: 44px;
  }

  .chat-tags span,
  .hero-highlights span {
    padding: 9px 10px;
    font-size: 0.8rem;
  }

  .hero-highlights .hero-highlight-typewriter {
    padding: 0;
  }

  .iphone-grid {
    grid-template-columns: repeat(3, minmax(268px, 82vw));
  }

  .iphone-device {
    height: 564px;
  }

  .iphone-screen {
    height: 540px;
    padding: 42px 13px 16px;
  }

  .faq-item summary {
    padding: 16px 18px;
  }

  .faq-item p {
    padding: 0 18px 18px;
  }

  .store-badges {
    gap: 10px;
  }

  .store-badge {
    max-width: min(100%, 148px);
  }

  .cta-store-badge .store-badge {
    max-width: min(100%, 150px);
  }

  .floating-chat {
    right: 8px;
    bottom: 8px;
  }

  .floating-chat-launcher {
    width: 56px;
    height: 56px;
  }

  .floating-chat-launcher img {
    width: 32px;
    height: 32px;
  }

  .floating-chat-panel {
    width: min(100vw - 16px, 340px);
    max-height: min(70vh, 520px);
  }

  .floating-chat-input {
    grid-template-columns: 1fr;
  }

  .floating-chat-input .button {
    width: 100%;
  }

  .contact-address-icon {
    width: 16px;
    height: 16px;
  }

  .location-icon,
  .mail-icon {
    width: 16px;
    height: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

@media (max-width: 760px) {
  .site-header {
    align-items: stretch;
  }

  .header-actions {
    align-items: center;
  }

  .hero-highlights span {
    width: 100%;
    justify-content: center;
  }

  .chat-header,
  .chat-avatar-wrap,
  .chat-tags {
    flex-direction: column;
    align-items: stretch;
  }

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

  .message-card {
    max-width: 100%;
  }

  .reference-card,
  .info-card,
  .panel,
  .benefit-flip-face,
  .poster-copy {
    padding-left: 20px;
    padding-right: 20px;
  }

  .erp-main {
    gap: 48px;
  }

  .erp-hero {
    padding: 28px 20px;
  }

  .erp-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  .erp-phone-screen {
    min-height: 460px;
    padding: 20px;
  }

  .qhse-wide-title {
    white-space: normal;
  }

  .trust-card {
    grid-template-columns: 1fr;
  }

  .icon-badge {
    width: 52px;
    height: 52px;
  }
}
