:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-soft: #eef4ff;
  --surface-soft-2: #f3f0ff;
  --surface-soft-3: #eef8f8;
  --surface-dark: #0b1630;
  --surface-dark-2: #12203f;
  --text: #0b1630;
  --text-soft: #51607f;
  --text-inverse: #edf3ff;
  --line: #d7e1f0;
  --line-strong: #b9c8df;
  --primary: #267dff;
  --secondary: #6d62ff;
  --accent: #1fc1e9;
  --teal: #12b8b2;
  --amber: #f4a94d;
  --success: #28b478;
  --danger: #d85573;
  --shadow-sm: 0 10px 30px rgba(23, 42, 82, 0.08);
  --shadow-md: 0 18px 46px rgba(18, 34, 68, 0.12);
  --shadow-lg: 0 28px 60px rgba(18, 34, 68, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 28px;
  --container: 1200px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 80px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 320ms;
  --font: "Plus Jakarta Sans", Inter, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background:
    radial-gradient(circle at top left, rgba(38, 125, 255, 0.09), transparent 30%),
    linear-gradient(180deg, #fbfcff 0%, #f7f9fc 45%, #f4f7fb 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

.section {
  padding: 80px 0;
}

.section-soft {
  background: linear-gradient(180deg, #edf4ff, #f4f8ff);
}

.section-soft-alt {
  background: linear-gradient(180deg, #ffffff, #f4f2ff);
}

.section-gray {
  background: #f2f5f9;
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(31, 193, 233, 0.16), transparent 26%),
    linear-gradient(180deg, #0b1630, #101d39);
  color: var(--text-inverse);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-title {
  max-width: 12ch;
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.9vw, 3.85rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading {
  max-width: 14ch;
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 2.9vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section-copy {
  max-width: 660px;
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.75;
}

.section-dark .eyebrow {
  color: #8cc8ff;
}

.section-dark .section-copy,
.section-dark p,
.section-dark li,
.section-dark small {
  color: #c6d4f1;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(11, 22, 48, 0.08);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  transition: box-shadow var(--duration) var(--ease), background var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(18, 34, 68, 0.1);
  border-bottom-color: rgba(11, 22, 48, 0.1);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text);
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 8px 16px rgba(38, 125, 255, 0.25);
}

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

.nav-links {
  gap: 18px;
}

.nav-links > a,
.nav-trigger {
  position: relative;
  padding: 10px 12px;
  border-radius: 12px;
  color: #243452;
  font-weight: 600;
  font-size: 0.96rem;
}

.nav-links > a:hover,
.nav-trigger:hover,
.nav-trigger[aria-expanded="true"] {
  background: rgba(38, 125, 255, 0.08);
  color: var(--primary);
}

.nav-group {
  position: relative;
}

.nav-trigger {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.nav-trigger::after {
  content: "▾";
  margin-left: 8px;
  font-size: 0.8em;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  padding: 10px;
  border: 1px solid rgba(11, 22, 48, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  display: none;
}

.nav-group.open .nav-menu {
  display: grid;
  gap: 4px;
}

.nav-menu a {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--text);
  line-height: 1.45;
}

.nav-menu a span {
  display: block;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.nav-menu a:hover {
  background: #f2f6ff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 700;
  transition: transform var(--duration) var(--ease), background var(--duration) var(--ease), border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

@media (hover: hover) {
  .btn:hover {
    transform: translateY(-1px);
  }
}

.btn:active {
  transform: translateY(0);
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.55;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 14px 28px rgba(38, 125, 255, 0.24);
}

@media (hover: hover) {
  .btn-primary:hover {
    box-shadow: 0 18px 34px rgba(38, 125, 255, 0.3);
  }
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: white;
}

@media (hover: hover) {
  .btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
  }
}

.btn-outline {
  color: var(--primary);
  border-color: rgba(38, 125, 255, 0.35);
  background: transparent;
}

.btn-text {
  min-height: auto;
  padding: 8px 4px;
  color: var(--primary);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.btn-dark {
  color: white;
  background: var(--surface-dark);
}

.menu-toggle {
  display: none;
  min-width: 46px;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
}

.mobile-nav {
  display: none;
  padding: 8px 0 18px;
}

.mobile-nav.open {
  display: grid !important;
  gap: 10px;
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav.open:not([hidden]) {
  display: grid !important;
}

.mobile-nav a,
.mobile-nav button {
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
  font: inherit;
}

.mobile-submenu {
  display: none;
  gap: 8px;
  padding-top: 8px;
}

.mobile-submenu.open {
  display: grid;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(38, 125, 255, 0.14), transparent 26%),
    radial-gradient(circle at 88% 22%, rgba(109, 98, 255, 0.1), transparent 24%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 1.06fr);
  gap: 38px;
  align-items: center;
}

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

.hero-copy .section-copy {
  max-width: 58ch;
}

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

.trust-note {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.hero-dashboard {
  position: relative;
  min-height: 520px;
}

.dashboard-shell {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(11, 22, 48, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f9fbff);
  box-shadow: 0 30px 60px rgba(18, 34, 68, 0.16);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d4def0;
}

.window-label {
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 14px;
}

.dash-panel {
  padding: 18px;
  border: 1px solid #e0e8f3;
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.dash-panel h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.dash-panel p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

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

.kpi-card {
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff, #eef4ff);
}

.kpi-card strong {
  display: block;
  font-size: 1.2rem;
}

.kpi-card small,
.small-copy {
  color: var(--text-soft);
}

.chart {
  position: relative;
  height: 180px;
  margin-top: 16px;
  padding: 18px 14px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f4f8ff, #ffffff);
  overflow: hidden;
}

.chart-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(15, 34, 68, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(15, 34, 68, 0.05) 1px, transparent 1px);
  background-size: 18% 100%, 100% 25%;
}

.chart-line,
.chart-line-secondary {
  position: absolute;
  inset: auto 12px 16px 12px;
  height: 120px;
}

.chart-line svg,
.chart-line-secondary svg {
  width: 100%;
  height: 100%;
}

.chart-line path {
  stroke: var(--primary);
  stroke-width: 4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-line-secondary path {
  stroke: var(--accent);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.85;
}

.chart-highlight {
  position: absolute;
  right: 18px;
  top: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(38, 125, 255, 0.12);
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 700;
}

.activity-list,
.alert-list,
.recommendation-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.activity-item,
.alert-item,
.recommendation-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 16px;
  background: #f8fbff;
}

.activity-dot,
.alert-dot,
.recommendation-dot {
  width: 12px;
  height: 12px;
  margin-top: 4px;
  border-radius: 50%;
}

.activity-dot { background: var(--primary); }
.alert-dot { background: var(--amber); }
.recommendation-dot { background: var(--teal); }

.floating-card {
  position: absolute;
  padding: 16px;
  border: 1px solid rgba(11, 22, 48, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 40px rgba(18, 34, 68, 0.14);
}

.floating-card h4 {
  margin: 0 0 6px;
  font-size: 0.96rem;
}

.floating-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.floating-card--left {
  left: -22px;
  top: 52px;
  width: 190px;
}

.floating-card--right {
  right: -14px;
  bottom: 64px;
  width: 220px;
}

.floating-card--bottom {
  left: 20px;
  bottom: 18px;
  width: 220px;
}

.pulse {
  display: inline-flex;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(40, 180, 120, 0.45);
  animation: pulse 2s infinite;
}

.trust-strip {
  padding: 18px 0;
  border-top: 1px solid rgba(11, 22, 48, 0.06);
  border-bottom: 1px solid rgba(11, 22, 48, 0.06);
  background: rgba(255, 255, 255, 0.8);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}

.trust-title {
  flex: 1 1 320px;
  max-width: 560px;
  color: var(--text-soft);
  font-weight: 600;
}

.logo-placeholder-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.logo-placeholder {
  min-width: 120px;
  padding: 12px 14px;
  border: 1px dashed #c7d6ea;
  border-radius: 14px;
  background: white;
  color: #7383a3;
  font-size: 0.88rem;
  text-align: center;
}

.product-ecosystem {
  display: grid;
  gap: 20px;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: stretch;
  padding: 26px;
  border: 1px solid rgba(11, 22, 48, 0.06);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-copy h3 {
  margin: 0 0 10px;
  font-size: 1.65rem;
  letter-spacing: -0.03em;
}

.product-copy p {
  margin: 0 0 14px;
  color: var(--text-soft);
  line-height: 1.75;
}

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

.cap-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
}

.cap-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.product-visual {
  position: relative;
  display: flex;
  align-items: center;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f8fbff, #f3f7ff);
  overflow: hidden;
}

.product-visual.business {
  background: linear-gradient(180deg, #eef4ff, #f6f8ff);
}

.product-visual.service {
  background: linear-gradient(180deg, #edfbff, #f7fbff);
}

.product-visual.farm {
  background: linear-gradient(180deg, #f2fbfb, #fffaf1);
}

.mini-dashboard {
  position: relative;
  display: grid;
  gap: 14px;
}

.mini-bar-row,
.mini-stat-row,
.mini-grid,
.mini-timeline {
  display: grid;
  gap: 12px;
}

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

.mini-stat {
  padding: 14px;
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.mini-stat strong {
  display: block;
  font-size: 1.12rem;
}

.mini-bar-row {
  grid-template-columns: 1.2fr 0.8fr;
}

.mini-card {
  padding: 16px;
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.bars {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.bar {
  height: 10px;
  border-radius: 999px;
  background: #dde9fb;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.queue-item,
.timeline-item,
.grid-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid #e8eef7;
  color: var(--text-soft);
}

.queue-item:last-child,
.timeline-item:last-child,
.grid-row:last-child {
  border-bottom: 0;
}

.priority {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(38, 125, 255, 0.12);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.priority.warn {
  background: rgba(244, 169, 77, 0.16);
  color: #b06b12;
}

.priority.teal {
  background: rgba(18, 184, 178, 0.14);
  color: #0f8f8a;
}

.platform-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
}

.platform-diagram {
  position: relative;
  min-height: 388px;
  border-radius: 28px;
  background:
    radial-gradient(circle at center, rgba(38, 125, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #f9fbff, #f3f7ff);
  overflow: hidden;
  border: 1px solid rgba(11, 22, 48, 0.06);
}

.core-node,
.diagram-node {
  position: absolute;
  padding: 18px 20px;
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e0e8f3;
}

.core-node {
  left: 50%;
  top: 50%;
  width: 220px;
  transform: translate(-50%, -50%);
  text-align: center;
}

.diagram-node {
  width: 180px;
}

.node-business { left: 32px; top: 42px; }
.node-service { right: 30px; top: 58px; }
.node-farm { left: 50%; bottom: 28px; transform: translateX(-50%); }

.diagram-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.diagram-svg path {
  stroke: rgba(38, 125, 255, 0.45);
  stroke-width: 2.5;
  fill: none;
  stroke-dasharray: 10 8;
  animation: dash 10s linear infinite;
}

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

.capability-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.09);
  font-weight: 800;
  color: #8fd3ff;
}

.dashboard-preview {
  margin-top: 28px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 30px;
  height: 2px;
  background: linear-gradient(90deg, #d6e2f4, #b9cef4);
}

.timeline-step {
  position: relative;
  padding-top: 68px;
}

.step-number {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  color: var(--primary);
  border: 8px solid #eaf1ff;
  box-shadow: var(--shadow-sm);
  font-weight: 800;
}

.timeline-step h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.timeline-step p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

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

.usecase-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: 24px;
  background: white;
  border: 1px solid rgba(11, 22, 48, 0.06);
  box-shadow: var(--shadow-sm);
}

.usecase-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  line-height: 1.25;
}

.usecase-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.usecase-visual {
  height: 140px;
  margin-bottom: 16px;
  border-radius: 18px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(38, 125, 255, 0.08), rgba(31, 193, 233, 0.04)),
    white;
  border: 1px solid #e2ebf8;
  overflow: hidden;
}

.usecase-visual-business {
  background: linear-gradient(180deg, #eef4ff, #f8fbff);
}

.usecase-visual-service {
  background: linear-gradient(180deg, #edfafd, #f8fcff);
}

.usecase-visual-farm {
  background: linear-gradient(180deg, #eef9f8, #fffaf2);
}

.usecase-metric-row,
.usecase-footer-row,
.queue-preview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.usecase-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(38, 125, 255, 0.1);
  color: #2557a8;
  font-size: 0.78rem;
  font-weight: 700;
}

.usecase-graph {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 64px;
}

.usecase-graph span {
  flex: 1;
  min-width: 0;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, #4e92ff, #7a67ff);
  box-shadow: inset 0 -10px 20px rgba(255, 255, 255, 0.18);
}

.usecase-footer-row {
  margin-top: auto;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.usecase-footer-row strong {
  color: var(--text);
  font-size: 0.92rem;
}

.queue-preview {
  display: grid;
  gap: 8px;
}

.queue-preview-row {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-soft);
  font-size: 0.88rem;
}

.queue-preview-row strong {
  color: var(--text);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  align-content: start;
}

.field-grid span {
  aspect-ratio: 1.4;
  border-radius: 12px;
  background: rgba(18, 184, 178, 0.1);
  border: 1px solid rgba(18, 184, 178, 0.15);
}

.field-grid span.active {
  background: linear-gradient(135deg, rgba(18, 184, 178, 0.18), rgba(38, 125, 255, 0.18));
}

.field-grid span.warn {
  background: linear-gradient(135deg, rgba(244, 169, 77, 0.26), rgba(255, 255, 255, 0.8));
  border-color: rgba(244, 169, 77, 0.28);
}

.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, #176ff0, #695eff 70%, #15b6d9);
  color: white;
  box-shadow: 0 24px 50px rgba(38, 125, 255, 0.26);
}

.cta-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  max-width: 56ch;
}

.card,
.info-panel {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(11, 22, 48, 0.08);
  background: linear-gradient(180deg, #ffffff, #f9fbff);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

@media (hover: hover) {
  .card:hover,
  .info-panel:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(38, 125, 255, 0.16);
  }
}

.card h3,
.info-panel h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.card p,
.info-panel p {
  margin: 0 0 14px;
  color: var(--text-soft);
  line-height: 1.7;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 20px;
}

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

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: #edf4ff;
  color: #2557a8;
  font-size: 0.88rem;
  font-weight: 600;
}

.faq details {
  margin-bottom: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: white;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

form {
  display: grid;
  gap: 16px;
}

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

label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--text);
  background: #fbfcff;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus,
button:focus,
a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.form-status {
  min-height: 24px;
  margin: 0;
}

.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }
.helper { color: var(--text-soft); font-size: 0.92rem; }

.site-footer {
  padding: 54px 0 28px;
  background: #0b1630;
  color: #edf3ff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-grid h4 {
  margin: 0 0 14px;
  color: white;
  font-size: 0.98rem;
}

.footer-grid p {
  margin: 0;
  color: #b6c5e1;
  line-height: 1.75;
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
  color: #c7d4ec;
}

.footer-grid a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #aebdd9;
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.float-motion {
  animation: float 6s ease-in-out infinite;
}

.float-motion-delayed {
  animation: float 7s ease-in-out infinite 1.2s;
}

.float-motion-soft {
  animation: float 8s ease-in-out infinite 0.7s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(40, 180, 120, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(40, 180, 120, 0); }
  100% { box-shadow: 0 0 0 0 rgba(40, 180, 120, 0); }
}

@keyframes dash {
  to { stroke-dashoffset: -70; }
}

@media (max-width: 1024px) {
  .hero-grid,
  .platform-layout,
  .product-showcase,
  .cta-panel,
  .dashboard-layout,
  .footer-grid,
  .grid-3,
  .usecase-grid,
  .capability-grid,
  .process-timeline,
  .form-row {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    left: 30px;
    right: auto;
    top: 30px;
    bottom: 30px;
    width: 2px;
    height: auto;
  }

  .timeline-step {
    padding-top: 0;
    padding-left: 82px;
  }

  .step-number {
    left: 0;
    top: 0;
  }

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

@media (max-width: 900px) {
  .nav-links,
  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding-top: 60px;
  }

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

  .floating-card {
    position: static;
    width: auto;
    margin-top: 12px;
  }

  .platform-diagram {
    min-height: 500px;
  }

  .node-business { left: 18px; top: 32px; }
  .node-service { right: 18px; top: 170px; }
  .node-farm { bottom: 26px; }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .section {
    padding: 64px 0;
  }

  .section-title,
  .section-heading {
    max-width: none;
  }

  .mini-stat-row,
  .kpi-grid,
  .mini-bar-row {
    grid-template-columns: 1fr;
  }

  .trust-row,
  .footer-bottom {
    align-items: flex-start;
  }

  .usecase-visual {
    height: 132px;
  }

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

  .cta-panel {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
