:root {
  --canvas: #f7f4ee;
  --canvas-2: #efe8de;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: #fffdf9;
  --ink: #121212;
  --ink-2: #39332e;
  --muted: #6a635b;
  --muted-2: #a39787;
  --line: rgba(38, 30, 22, 0.11);
  --line-strong: rgba(38, 30, 22, 0.18);
  --accent: #e50000;
  --accent-deep: #a90c0c;
  --accent-soft: rgba(229, 0, 0, 0.1);
  --accent-wash: rgba(229, 0, 0, 0.2);
  --glow: #f4c6bb;
  --sand: #f1dfc9;
  --max-width: 1200px;
  --gutter: 32px;
  --section-space: 120px;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --shadow-soft: 0 24px 56px rgba(18, 18, 18, 0.07);
  --shadow-card: 0 18px 40px rgba(18, 18, 18, 0.06);
  --font-display: "Sora", "Trebuchet MS", sans-serif;
  --font-accent: "Fraunces", "Times New Roman", serif;
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --border: 1px solid var(--line);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(244, 198, 187, 0.24), transparent 28%),
    radial-gradient(circle at top right, rgba(241, 223, 201, 0.32), transparent 30%),
    var(--canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  padding: 0;
}

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(229, 0, 0, 0.18);
}

.shell {
  width: min(var(--max-width), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding-top: 16px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 22px;
  border: 1px solid rgba(38, 30, 22, 0.08);
  border-radius: 22px;
  background: rgba(247, 244, 238, 0.78);
  backdrop-filter: blur(20px) saturate(145%);
  box-shadow: 0 10px 35px rgba(18, 18, 18, 0.04);
  transition: padding 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.site-header.scrolled .nav {
  padding-block: 12px;
  box-shadow: 0 16px 40px rgba(18, 18, 18, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: clamp(178px, 18vw, 236px);
  height: auto;
  object-fit: contain;
}

.brand-domain {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

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

.nav-panel {
  flex: 1;
  justify-content: space-between;
}

.nav-links {
  justify-content: center;
  flex: 1;
}

.nav-links a,
.footer-grid a,
.footer-copy {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover,
.footer-grid a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: var(--border);
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 14px 30px rgba(169, 12, 12, 0.22);
}

.btn-primary:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 18px 32px rgba(169, 12, 12, 0.28);
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(38, 30, 22, 0.12);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(38, 30, 22, 0.2);
}

.chev {
  transition: transform 0.2s ease;
}

.btn:hover .chev,
.hero-badge:hover .chev {
  transform: translateX(3px);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 58px 0 36px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(229, 0, 0, 0.12), transparent 30%),
    radial-gradient(circle at 92% 16%, rgba(241, 223, 201, 0.76), transparent 35%),
    radial-gradient(circle at 65% 72%, rgba(229, 0, 0, 0.08), transparent 28%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 40px 0 0;
  background-image:
    linear-gradient(rgba(18, 18, 18, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 18, 18, 0.028) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 74%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 74%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 620px);
  gap: 52px;
  align-items: center;
  min-height: calc(100vh - 160px);
}

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

.kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.kicker::before {
  content: "// ";
  color: var(--accent);
}

.kicker-light {
  color: rgba(247, 244, 238, 0.72);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  padding: 7px 14px 7px 7px;
  border: 1px solid rgba(38, 30, 22, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink-2);
  font-size: 13px;
  box-shadow: 0 8px 30px rgba(18, 18, 18, 0.04);
  animation: fade-up 0.8s ease both;
}

.hero-badge-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--accent-deep);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
}

h1,
h2 {
  letter-spacing: -0.045em;
}

h1 {
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6.8vw, 6rem);
  line-height: 0.92;
  text-wrap: balance;
  animation: fade-up 0.95s ease 0.08s both;
}

h1 em,
h2 em {
  display: inline-block;
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  padding-right: 0.08em;
  background: linear-gradient(110deg, var(--accent-deep), var(--accent), #ef8778, #d17d61);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--ink-2);
  font-size: clamp(1.08rem, 1.9vw, 1.25rem);
  line-height: 1.65;
  animation: fade-up 1s ease 0.18s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
  animation: fade-up 1s ease 0.28s both;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
  animation: fade-up 1.05s ease 0.36s both;
}

.hero-meta article,
.feature-card,
.panel,
.module-card,
.benefit-card,
.cta-card,
.workflow-step,
.integration-list article {
  position: relative;
  overflow: hidden;
}

.hero-meta article {
  padding: 18px 18px 20px;
  border: 1px solid rgba(38, 30, 22, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(12px);
}

.hero-meta strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.98rem;
  font-weight: 800;
}

.hero-meta span {
  color: var(--muted);
  font-size: 0.93rem;
}

.hero-visual {
  display: grid;
  gap: 18px;
  animation: fade-up 1.05s ease 0.18s both;
}

.surface-card,
.reference-card,
.real-device,
.pda-shot-card {
  padding: 18px;
}

.surface-head {
  margin-bottom: 16px;
}

.surface-head.compact {
  margin-bottom: 14px;
}

.surface-head h3,
.reference-card h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.surface-shot {
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(38, 30, 22, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.dashboard-shot {
  box-shadow: 0 18px 38px rgba(18, 18, 18, 0.09);
}

.panel,
.feature-card,
.module-card,
.workflow-step,
.integration-list article,
.cta-card {
  border: var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-card);
}

.panel::before,
.feature-card::before,
.module-card::before,
.workflow-step::before,
.integration-list article::before,
.cta-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 0, 0, 0.45), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.panel:hover::before,
.feature-card:hover::before,
.module-card:hover::before,
.workflow-step:hover::before,
.integration-list article:hover::before,
.cta-card:hover::before {
  opacity: 1;
}

.panel:hover,
.feature-card:hover,
.module-card:hover,
.workflow-step:hover,
.integration-list article:hover,
.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.panel {
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.control-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(252, 249, 244, 0.72)),
    var(--surface);
}

.panel-head,
.metric-grid,
.job-list,
.device-stack,
.signal-items,
.screen-bars,
.stats-grid,
.feature-grid,
.module-grid,
.benefit-grid,
.footer-grid {
  display: grid;
}

.panel-head {
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
}

.panel-label,
.module-index,
.feature-icon,
.step-number,
.footer-title,
.pda-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel-head h2 {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.06);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #f17d6f);
}

.metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.metric-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(18, 18, 18, 0.035);
  border: 1px solid rgba(38, 30, 22, 0.08);
}

.metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.metric-label {
  color: var(--muted);
  font-size: 0.83rem;
}

.job-list {
  gap: 12px;
}

.job-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid rgba(38, 30, 22, 0.08);
}

.job-name,
.screen-title,
.screen-value,
.feature-card h3,
.module-card h3,
.workflow-step h3,
.benefit-card h3,
.integration-list h3,
.dark-copy blockquote,
.mobile-copy li {
  font-weight: 700;
}

.job-name,
.job-note {
  display: block;
}

.job-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.job-state {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.06);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.job-state.live,
.scan-chip {
  background: rgba(229, 0, 0, 0.1);
  color: var(--accent-deep);
}

.job-state.ok {
  background: rgba(24, 92, 53, 0.12);
  color: #185c35;
}

.device-stack {
  grid-template-columns: 1fr 1.08fr;
  gap: 18px;
}

.actual-stack {
  align-items: stretch;
}

.signal-panel {
  min-height: 100%;
}

.reference-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.reference-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.reference-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.reference-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-2);
  font-size: 0.93rem;
}

.reference-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #f08474);
}

.signal-items {
  gap: 12px;
  margin-top: 18px;
}

.signal-items span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(38, 30, 22, 0.08);
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 700;
}

.device-panel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.real-device {
  display: block;
}

.device-shell,
.pda-shell {
  position: relative;
  width: 100%;
  max-width: 250px;
  padding: 18px 12px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.94), rgba(38, 34, 31, 0.98));
  box-shadow: 0 22px 44px rgba(18, 18, 18, 0.28);
}

.actual-device-shell {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 12px;
  border-radius: 32px;
  background: linear-gradient(180deg, #2c2d36, #15161b);
}

.actual-device-shell::before {
  width: 74px;
}

.actual-interface-frame {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 12px;
  border-radius: 28px;
  border: 1px solid rgba(38, 30, 22, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 240, 231, 0.94));
  box-shadow: 0 20px 42px rgba(18, 18, 18, 0.08);
}

.interface-shot {
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(18, 18, 18, 0.08);
}

.device-shell::before,
.pda-shell::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 64px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-50%);
}

.device-screen,
.pda-screen {
  min-height: 390px;
  padding: 18px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(229, 0, 0, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(247, 244, 238, 0.98), rgba(239, 232, 222, 0.94));
}

.scan-chip {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.screen-card {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(38, 30, 22, 0.08);
}

.screen-title,
.screen-value {
  display: block;
}

.screen-value {
  margin-top: 8px;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.screen-bars {
  gap: 10px;
  margin: 16px 0;
}

.screen-bars span {
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(229, 0, 0, 0.88), rgba(229, 0, 0, 0.24));
}

.screen-bars span:nth-child(2) {
  width: 82%;
}

.screen-bars span:nth-child(3) {
  width: 61%;
}

.device-screen p {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.95rem;
}

.stats-strip {
  padding: 22px 0 0;
}

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

.stat-item {
  padding: 18px 16px;
  border: var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.05em;
}

.stat-item span {
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: var(--section-space) 0;
}

.section-alt {
  background:
    radial-gradient(circle at top left, rgba(229, 0, 0, 0.05), transparent 30%),
    var(--canvas-2);
}

.section-head,
.workflow-grid,
.integration-grid,
.mobile-grid,
.dark-grid,
.cta-card {
  display: grid;
  gap: 40px;
  align-items: start;
}

.section-head {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  margin-bottom: 40px;
}

.section-head h2,
.workflow-copy h2,
.dark-copy h2,
.integration-copy h2,
.mobile-copy h2,
.cta-copy h2 {
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.6vw, 4.3rem);
  line-height: 0.98;
}

.section-head p,
.workflow-copy p,
.dark-copy p,
.integration-copy p,
.mobile-copy p,
.cta-copy p {
  margin: 0;
  color: var(--ink-2);
  font-size: 1.02rem;
}

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

.feature-card,
.module-card {
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-icon,
.module-index {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
}

.feature-card h3,
.module-card h3,
.workflow-step h3,
.benefit-card h3,
.integration-list h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.feature-card p,
.module-card p,
.workflow-step p,
.benefit-card p,
.integration-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.workflow-section {
  overflow: hidden;
}

.workflow-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.workflow-copy {
  position: sticky;
  top: 132px;
}

.workflow-steps {
  display: grid;
  gap: 16px;
}

.workflow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(229, 0, 0, 0.09);
  color: var(--accent-deep);
}

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

.dark-section {
  color: #f7f4ee;
  background:
    radial-gradient(circle at top right, rgba(229, 0, 0, 0.18), transparent 30%),
    linear-gradient(180deg, #171515 0%, #0e0d0d 100%);
}

.dark-section h2,
.dark-section h3,
.dark-section blockquote {
  color: #fff8ee;
}

.dark-section p,
.dark-section .benefit-card p {
  color: rgba(247, 244, 238, 0.72);
}

.dark-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.dark-copy blockquote {
  margin: 32px 0 0;
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

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

.benefit-card {
  padding: 24px;
  border: 1px solid rgba(247, 244, 238, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.benefit-card::before {
  background: linear-gradient(90deg, transparent, rgba(255, 146, 125, 0.6), transparent);
}

.integration-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
}

.integration-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.integration-list article {
  padding: 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.integration-visual {
  position: relative;
  min-height: 520px;
  border: var(--border);
  border-radius: 32px;
  background:
    radial-gradient(circle at center, rgba(229, 0, 0, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(247, 244, 238, 0.74));
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.integration-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 18, 18, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 18, 18, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 36%, transparent 74%);
  -webkit-mask-image: radial-gradient(circle at center, black 36%, transparent 74%);
}

.hub-center,
.hub-node {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 999px;
  border: 1px solid rgba(38, 30, 22, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 24px rgba(18, 18, 18, 0.06);
}

.hub-center {
  left: 50%;
  top: 50%;
  width: 158px;
  height: 158px;
  flex-direction: column;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at top, rgba(229, 0, 0, 0.15), transparent 42%),
    rgba(255, 255, 255, 0.9);
  z-index: 1;
}

.hub-center span,
.hub-center strong {
  display: block;
}

.hub-center span {
  font-family: var(--font-accent);
  font-size: 1.45rem;
  font-style: italic;
}

.hub-center strong {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.hub-node {
  min-width: 120px;
  min-height: 120px;
  padding: 20px;
  font-weight: 700;
}

.hub-node::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 110px;
  background: linear-gradient(180deg, rgba(229, 0, 0, 0.24), transparent);
  z-index: -1;
}

.pos {
  left: 12%;
  top: 16%;
}

.pos::after {
  left: 108%;
  top: 90%;
  transform: rotate(40deg);
}

.erp {
  left: 62%;
  top: 10%;
}

.erp::after {
  left: -8%;
  top: 90%;
  transform: rotate(-35deg);
}

.ecommerce {
  left: 10%;
  top: 58%;
}

.ecommerce::after {
  left: 104%;
  top: -16%;
  transform: rotate(-18deg);
}

.logistics {
  right: 8%;
  top: 58%;
}

.logistics::after {
  left: -8%;
  top: -18%;
  transform: rotate(18deg);
}

.mobile {
  left: 39%;
  bottom: 7%;
}

.mobile::after {
  left: 50%;
  top: -104%;
}

.mobile-grid {
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
}

.pda-visual {
  display: flex;
  justify-content: center;
}

.pda-shot-card {
  width: 100%;
}

.stocktake-shot {
  border-radius: 24px;
  box-shadow: 0 20px 42px rgba(18, 18, 18, 0.08);
}

.pda-screen {
  display: grid;
  gap: 14px;
}

.pda-kicker {
  color: var(--accent-deep);
}

.pda-card {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(38, 30, 22, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.pda-card span,
.pda-card strong {
  display: block;
}

.pda-card span {
  color: var(--muted);
  font-size: 0.83rem;
}

.pda-card strong {
  margin-top: 4px;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.pda-card.accent {
  background: linear-gradient(180deg, rgba(229, 0, 0, 0.12), rgba(255, 255, 255, 0.82));
}

.check-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-2);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle at center, var(--accent) 0 35%, rgba(229, 0, 0, 0.16) 36% 100%);
}

.cta-section {
  padding-top: 60px;
}

.contact-shell {
  display: grid;
  gap: 22px;
}

.cta-card {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  padding: 34px;
  background:
    radial-gradient(circle at top left, rgba(229, 0, 0, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(249, 243, 235, 0.9));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.cta-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-panel {
  padding: 34px;
  border: var(--border);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(229, 0, 0, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(248, 242, 235, 0.92));
  box-shadow: var(--shadow-card);
}

.contact-head {
  max-width: 760px;
}

.contact-head h2 {
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 0.98;
}

.contact-head p {
  margin: 18px 0 0;
  color: var(--ink-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.contact-card {
  padding: 24px;
  border: 1px solid rgba(38, 30, 22, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 30px rgba(18, 18, 18, 0.04);
}

.contact-label {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-card h3 {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.contact-card p,
.contact-card address {
  margin: 14px 0 0;
  color: var(--muted);
  font-style: normal;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(38, 30, 22, 0.1);
  background: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(18, 18, 18, 0.05);
}

.contact-email:hover {
  color: var(--accent-deep);
}

.site-footer {
  padding: 32px 0 24px;
}

.footer-grid {
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(38, 30, 22, 0.1);
}

.footer-brand img {
  width: 210px;
  height: auto;
  object-fit: contain;
}

.footer-brand p {
  max-width: 280px;
  margin: 14px 0 0;
  color: var(--muted);
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-title {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(38, 30, 22, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@media (max-width: 900px) {
  :root {
    --gutter: 20px;
    --section-space: 78px;
  }

  .site-header {
    padding-top: 12px;
  }

  .brand-domain,
  .nav-links {
    display: none;
  }

  .nav {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-panel {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 10px;
  }

  .nav-open .nav-panel {
    display: flex;
  }

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

  .hero {
    padding-top: 34px;
  }

  h1 {
    line-height: 0.98;
  }

  .hero-grid,
  .section-head,
  .workflow-grid,
  .dark-grid,
  .integration-grid,
  .mobile-grid,
  .cta-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    gap: 36px;
  }

  .hero-meta,
  .stats-grid,
  .feature-grid,
  .module-grid,
  .benefit-grid,
  .integration-list,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .device-stack {
    grid-template-columns: 1fr;
  }

  .actual-interface-frame {
    max-width: 360px;
  }

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

  .workflow-copy {
    position: static;
  }

  .integration-visual {
    min-height: 420px;
  }

  .hub-node {
    min-width: 96px;
    min-height: 96px;
    font-size: 0.9rem;
  }

  .pos {
    left: 4%;
    top: 13%;
  }

  .erp {
    left: 60%;
    top: 8%;
  }

  .ecommerce {
    left: 2%;
    top: 58%;
  }

  .logistics {
    right: 4%;
    top: 56%;
  }

  .mobile {
    left: 34%;
    bottom: 7%;
  }

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

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