:root {
  --bg: #070b14;
  --bg-elev: #0d1323;
  --surface: #0f172b;
  --surface-soft: #111b31;
  --ink: #f2f6ff;
  --ink-soft: #dce4f8;
  --muted: #97a5c8;
  --line: rgba(158, 178, 224, 0.24);
  --line-strong: rgba(172, 193, 240, 0.42);
  --accent: #8aa6ff;
  --accent-strong: #a8bdff;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(1200px 640px at 8% -8%, rgba(100, 130, 255, 0.24), transparent 56%),
    radial-gradient(900px 540px at 92% 0%, rgba(77, 225, 255, 0.14), transparent 56%),
    linear-gradient(180deg, #070b14 0%, #060a13 100%);
  color: var(--ink);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

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

.container {
  width: min(1120px, calc(100% - 3rem));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(6, 10, 18, 0.78);
  border-bottom: 1px solid rgba(171, 192, 238, 0.14);
}

.topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.24rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #f8faff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.76rem 1.35rem;
  background: linear-gradient(180deg, #9db5ff 0%, #88a6ff 100%);
  color: #091024;
  font-weight: 700;
  font-size: 0.93rem;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(120, 155, 255, 0.32);
  filter: brightness(1.02);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line);
  color: #dce6ff;
}

.button-ghost:hover {
  box-shadow: none;
  background: rgba(162, 184, 236, 0.12);
}

.button:focus-visible,
.industry-tabs label:focus-visible {
  outline: 2px solid #adc0ff;
  outline-offset: 2px;
}

.hero {
  padding: clamp(3.2rem, 5.2vw, 5.4rem) 0 clamp(3.1rem, 5vw, 5.2rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(1.45rem, 3vw, 2.7rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 0.72rem;
  color: #a8b7df;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.85rem);
  max-width: 16ch;
  color: #f8fbff;
}

h2 {
  font-size: clamp(1.52rem, 3vw, 2.35rem);
  max-width: 24ch;
  color: #f2f6ff;
}

h3 {
  font-size: 1.15rem;
  color: #eff4ff;
}

.lead {
  margin: 1.18rem 0 1.6rem;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.mini-stats {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.52rem;
}

.mini-stats li {
  color: #b4c0e1;
  font-size: 0.95rem;
}

.mini-stats strong {
  color: #f6f9ff;
  font-weight: 700;
}

.hero-card {
  background: linear-gradient(165deg, rgba(145, 170, 242, 0.08) 0%, rgba(15, 23, 43, 0.92) 60%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: grayscale(0.25) saturate(0.76) brightness(0.9);
}

.hero-card-copy {
  padding: 1rem 1.2rem 1.25rem;
  border-top: 1px solid rgba(150, 172, 220, 0.2);
}

.hero-card-copy p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.hero-visual {
  padding: 1.6rem 1.4rem 1.2rem;
}

.visual-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(10, 17, 34, 0.7);
  text-align: center;
  min-width: 140px;
}

.flow-node span {
  font-weight: 700;
  font-size: 0.92rem;
  color: #f2f6ff;
}

.flow-node small {
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 500;
}

.flow-icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 0.15rem;
}

.node-erp {
  border-color: rgba(138, 166, 255, 0.5);
  background: rgba(138, 166, 255, 0.08);
}

.node-nexus {
  border-style: dashed;
  border-color: rgba(138, 166, 255, 0.32);
  background: rgba(138, 166, 255, 0.04);
  opacity: 0.82;
}

.flow-connector {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0 0.45rem;
}

.connector-line {
  display: block;
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(138, 166, 255, 0.5), rgba(138, 166, 255, 0.2));
}

.connector-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.visual-badge {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-sm);
  background: rgba(138, 166, 255, 0.06);
  border: 1px solid rgba(138, 166, 255, 0.12);
}

.usage-note {
  margin: 0.7rem 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.section {
  padding: clamp(3.1rem, 5vw, 5.2rem) 0;
  border-top: 1px solid rgba(151, 171, 219, 0.12);
}

.section-intro {
  margin-top: 0.86rem;
  max-width: 70ch;
  color: var(--muted);
}

.section-interface {
  background: linear-gradient(180deg, rgba(10, 16, 30, 0.6), rgba(8, 12, 22, 0));
}

.interface-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.2rem, 2.5vw, 2rem);
  align-items: start;
}

.mock-table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(8, 14, 28, 0.85);
  overflow: hidden;
}

.mock-table-toolbar {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.55rem 0.7rem;
  border-bottom: 1px solid var(--line);
  background: rgba(14, 22, 40, 0.7);
}

.mock-tab {
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  color: #8fa0c8;
  cursor: default;
}

.mock-tab.active {
  background: rgba(138, 166, 255, 0.14);
  color: #f2f6ff;
}

.mock-filter {
  margin-left: auto;
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 600;
  color: #8fa0c8;
  cursor: default;
}

.mock-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.mock-table th {
  text-align: left;
  padding: 0.55rem 0.7rem;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7a8db8;
  border-bottom: 1px solid var(--line);
  background: rgba(14, 22, 40, 0.4);
}

.mock-table td {
  padding: 0.6rem 0.7rem;
  color: #c8d4f0;
  border-bottom: 1px solid rgba(151, 171, 219, 0.08);
}

.mock-table tr:last-child td {
  border-bottom: none;
}

.mock-table .num {
  font-variant-numeric: tabular-nums;
  text-align: right;
  font-weight: 600;
  color: #e0e8ff;
}

.mock-table th:nth-child(3) {
  text-align: right;
}

.status-pill {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.pill-green {
  background: rgba(74, 222, 128, 0.14);
  color: #6ee7a0;
  border: 1px solid rgba(74, 222, 128, 0.28);
}

.pill-yellow {
  background: rgba(250, 204, 21, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(250, 204, 21, 0.24);
}

.interface-features {
  display: grid;
  gap: 0.85rem;
}

.interface-features article {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(16, 24, 43, 0.92), rgba(12, 19, 35, 0.96));
}

.interface-features p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.problem-grid,
.workflow-grid,
.pricing-grid {
  margin-top: 1.55rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.problem-card,
.workflow-grid article,
.price-card,
.usage-card,
.industry-selector,
.cta-box {
  background: linear-gradient(180deg, rgba(16, 24, 43, 0.92), rgba(12, 19, 35, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.problem-card {
  padding: 1.1rem;
}

.problem-card p,
.workflow-grid p,
.usage-card p,
.cta-box p,
.industry-panel ul,
.price-card ul,
.trust-grid ul {
  color: var(--muted);
}

.problem-card p,
.workflow-grid p {
  margin: 0.5rem 0 0;
}

.section-workflow {
  background: linear-gradient(180deg, rgba(10, 16, 30, 0.74), rgba(9, 14, 25, 0));
}

.workflow-grid article {
  padding: 1.2rem;
}

.step {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.7rem;
  background: rgba(156, 176, 233, 0.16);
  border: 1px solid rgba(164, 185, 239, 0.34);
  color: #d5e1ff;
  font-weight: 700;
  font-size: 0.9rem;
}

.section-fit {
  background: transparent;
}

.industry-selector {
  margin-top: 1.5rem;
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.industry-selector input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.industry-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.industry-tabs label {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.68rem 0.45rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: #c8d4f2;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

#industry-ecom:checked ~ .industry-tabs label[for="industry-ecom"],
#industry-manufacturing:checked ~ .industry-tabs label[for="industry-manufacturing"],
#industry-logistics:checked ~ .industry-tabs label[for="industry-logistics"],
#industry-services:checked ~ .industry-tabs label[for="industry-services"],
#industry-firm:checked ~ .industry-tabs label[for="industry-firm"] {
  background: rgba(138, 166, 255, 0.19);
  border-color: rgba(157, 181, 255, 0.72);
  color: #f4f7ff;
}

.industry-panels {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.2rem;
  background: rgba(6, 12, 24, 0.35);
}

.industry-panel {
  display: none;
}

#industry-ecom:checked ~ .industry-panels .panel-ecom,
#industry-manufacturing:checked ~ .industry-panels .panel-manufacturing,
#industry-logistics:checked ~ .industry-panels .panel-logistics,
#industry-services:checked ~ .industry-panels .panel-services,
#industry-firm:checked ~ .industry-panels .panel-firm {
  display: block;
  animation: appear 230ms ease;
}

.industry-focus {
  margin: 0.58rem 0 0.8rem;
  color: #b5c3e8;
}

.industry-panel ul,
.price-card ul,
.usage-card ul,
.trust-grid ul {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.4rem;
}

.price-card {
  position: relative;
  padding: 1.2rem;
}

.price-card .price {
  margin: 0.72rem 0 0.88rem;
  font-family: "Sora", sans-serif;
  font-size: 2.02rem;
  font-weight: 650;
  color: #f8fbff;
  letter-spacing: -0.02em;
}

.price-card .price span {
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #a7b5d9;
  margin-left: 0.15rem;
}

.price-card.featured {
  border-color: rgba(157, 181, 255, 0.72);
  background: linear-gradient(180deg, rgba(142, 167, 255, 0.15), rgba(16, 24, 43, 0.96));
}

.tag {
  position: absolute;
  top: 0.72rem;
  right: 0.72rem;
  margin: 0;
  border-radius: 999px;
  border: 1px solid rgba(173, 194, 245, 0.68);
  color: #d5e2ff;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.52rem;
}

.usage-card {
  margin-top: 0.95rem;
  padding: 1.15rem;
  background: linear-gradient(180deg, rgba(17, 27, 49, 0.98), rgba(13, 20, 37, 0.95));
}

.section-trust {
  background: linear-gradient(180deg, rgba(10, 16, 30, 0.9), rgba(8, 12, 22, 0.9));
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
}

.trust-grid p {
  margin-top: 0.86rem;
  color: #b5c2e6;
}

.trust-grid ul {
  color: #c8d4f0;
}

.section-cta {
  padding-top: clamp(3rem, 5vw, 4.8rem);
  padding-bottom: clamp(3.1rem, 6vw, 5.1rem);
}

.cta-box {
  text-align: center;
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.5rem);
}

.cta-box h2 {
  margin-inline: auto;
}

.cta-box p {
  margin: 0.8rem auto 1.2rem;
  max-width: 62ch;
}

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

.footer {
  border-top: 1px solid rgba(151, 171, 219, 0.18);
  padding: 1.15rem 0 1.55rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #90a0c5;
  font-size: 0.9rem;
}

.reveal {
  animation: rise 430ms ease both;
}

main .reveal:nth-of-type(2) {
  animation-delay: 70ms;
}

main .reveal:nth-of-type(3) {
  animation-delay: 120ms;
}

main .reveal:nth-of-type(4) {
  animation-delay: 170ms;
}

main .reveal:nth-of-type(5) {
  animation-delay: 220ms;
}

main .reveal:nth-of-type(6) {
  animation-delay: 270ms;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .hero-card {
    max-width: 760px;
  }

  .problem-grid,
  .workflow-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 700px) {
  .container {
    width: min(1120px, calc(100% - 1.4rem));
  }

  .topbar-inner {
    min-height: 66px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .industry-tabs {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }

  .visual-flow {
    flex-direction: column;
    gap: 0;
  }

  .flow-connector {
    flex-direction: column;
    padding: 0.3rem 0;
  }

  .connector-line {
    width: 1px;
    height: 16px;
    background: linear-gradient(180deg, rgba(138, 166, 255, 0.5), rgba(138, 166, 255, 0.2));
  }

  .flow-node {
    min-width: 0;
    width: 100%;
  }

  .mock-table-wrap {
    overflow-x: auto;
  }

  .mock-table {
    min-width: 380px;
  }
}
