:root {
  --ink: #12172B;
  --panel: #1B2242;
  --panel-2: #232B52;
  --surface: #F4F6F4;
  --surface-2: #FFFFFF;
  --business: #2FB6A6;
  --business-dim: #1F8577;
  --private: #F2A33B;
  --private-dim: #C97F1E;
  --line: rgba(18, 23, 43, 0.12);
  --line-dark: rgba(244, 246, 244, 0.14);
  --ink-soft: rgba(18, 23, 43, 0.62);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: 'Zilla Slab', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.mono {
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

a {
  color: inherit;
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 23, 43, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #F4F6F4;
  font-family: 'Zilla Slab', serif;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 9px;
}

.logo-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--business) 0%, var(--private) 100%);
  display: inline-block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(244, 246, 244, 0.72);
  font-size: 14.5px;
  font-weight: 500;
  transition: color .2s ease;
}

.nav-links a:hover {
  color: #F4F6F4;
}

.nav-cta {
  background: #F4F6F4;
  color: var(--ink) !important;
  padding: 9px 18px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 14px;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-mobile-toggle span {
  width: 22px;
  height: 2px;
  background: #F4F6F4;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-mobile-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-mobile-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-panel {
  display: none;
  flex-direction: column;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
  padding: 8px 28px 20px;
}

.nav-mobile-panel.open {
  display: flex;
}

.nav-mobile-panel a {
  color: rgba(244, 246, 244, 0.78);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 0;
  border-top: 1px solid var(--line-dark);
}

.nav-mobile-panel a:first-child {
  border-top: none;
}

.nav-mobile-panel .nav-cta {
  margin-top: 12px;
  text-align: center;
  border-top: none;
}

/* ---------- HERO ---------- */
.hero {
  background: var(--ink);
  color: #F4F6F4;
  padding: 88px 28px 72px;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--business);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--business);
  box-shadow: 0 0 0 4px rgba(47, 182, 166, 0.18);
}

.hero h1 {
  font-size: 44px;
  line-height: 1.1;
  color: #F4F6F4;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--business), var(--private));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lede {
  margin: 20px auto 0;
  font-size: 17px;
  color: rgba(244, 246, 244, 0.68);
  max-width: 560px;
  line-height: 1.65;
}

.hero-jump {
  margin-top: 34px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.jump-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  padding: 9px 16px;
  border-radius: 20px;
  border: 1px solid rgba(196, 154, 17, 0.24);
  color: rgba(62, 104, 155, 0.8);
  transition: border-color .2s ease, color .2s ease;
}

.jump-chip:hover {
  border-color: rgba(25, 127, 25, 0.55);
  color: #0b6d0b;
}

/* ---------- SECTION SHELLS ---------- */
section {
  padding: 84px 28px;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

/* ---------- INDUSTRY BLOCK ---------- */
.industry {
  border-top: 1px solid var(--line);
}

.industry:nth-of-type(odd) {
  background: var(--surface-2);
}

.industry-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.industry:nth-of-type(even) .industry-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.industry:nth-of-type(even) .phone-col {
  order: 2;
}

.industry:nth-of-type(even) .text-col {
  order: 1;
}

.industry-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 18px;
  background: rgba(47, 182, 166, 0.12);
  color: var(--business-dim);
}

.text-col h2 {
  font-size: 30px;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 14px;
}

.text-col p.pain {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 26px;
}

.pc-path {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--ink);
  border-radius: 10px;
  margin-top: 8px;
}

.pc-path .mono {
  font-size: 12px;
  color: var(--business);
  letter-spacing: 0.02em;
  text-transform: none;
  word-break: break-all;
}

.pc-path svg {
  flex-shrink: 0;
}

/* ---------- PHONE MOCKUP ---------- */
.phone-mock {
  background: var(--ink);
  border-radius: 26px;
  padding: 10px;
  box-shadow: 0 24px 60px rgba(18, 23, 43, 0.18);
  max-width: 300px;
  margin: 0 auto;
}

.phone-screen {
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
}

.phone-bar {
  background: var(--panel);
  color: #F4F6F4;
  font-weight: 600;
  font-size: 14.5px;
  padding: 16px 18px;
  font-family: 'Zilla Slab', serif;
}

.phone-body {
  padding: 16px 14px 20px;
}

.folder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.folder-chip {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 11px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  text-align: center;
}

.folder-chip.active {
  background: var(--business);
  color: #08211d;
  border-color: var(--business);
}

.phone-cta {
  margin-top: 12px;
  background: var(--business);
  color: #08211d;
  text-align: center;
  padding: 12px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 13px;
}

@media (max-width:900px) {

  .industry-grid,
  .industry:nth-of-type(even) .industry-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .industry:nth-of-type(even) .phone-col,
  .industry:nth-of-type(even) .text-col {
    order: initial;
  }

  .phone-col {
    order: -1;
  }
}

/* ---------- HOW IT WORKS RECAP ---------- */
.steps {
  background: var(--ink);
  color: #F4F6F4;
}

.steps .section-head {
  max-width: 640px;
  margin-bottom: 52px;
}

.steps .eyebrow {
  color: var(--private);
}

.steps .eyebrow::before {
  background: var(--private);
  box-shadow: 0 0 0 4px rgba(242, 163, 59, 0.18);
}

.steps h2 {
  font-size: 32px;
  color: #F4F6F4;
}

.steps .section-head p {
  color: rgba(244, 246, 244, 0.62);
  margin-top: 14px;
  font-size: 16px;
}

.step-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step {
  padding: 26px 0 0;
  border-top: 2px solid rgba(244, 246, 244, 0.3);
}

.step-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: rgba(244, 246, 244, 0.5);
  margin-bottom: 14px;
  display: block;
}

.step h3 {
  font-size: 19px;
  margin-bottom: 9px;
  color: #F4F6F4;
}

.step p {
  font-size: 14.5px;
  color: rgba(244, 246, 244, 0.6);
  line-height: 1.6;
}

@media (max-width:860px) {
  .step-row {
    grid-template-columns: 1fr;
  }
}

/* ---------- CTA ---------- */
.cta-section {
  background: var(--surface-2);
  text-align: center;
  padding: 100px 28px;
}

.cta-section h2 {
  font-size: 36px;
  max-width: 560px;
  margin: 0 auto 16px;
}

.cta-section p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 34px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 13px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14.5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--ink);
  color: #F4F6F4;
}

.btn-dark:hover {
  box-shadow: 0 8px 22px rgba(18, 23, 43, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: var(--ink);
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink);
  color: rgba(244, 246, 244, 0.55);
  padding: 72px 28px 0;
  font-size: 13.5px;
  border-top: 1px solid var(--line-dark);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand p {
  color: rgba(244, 246, 244, 0.5);
  max-width: 280px;
  line-height: 1.6;
  font-size: 13.5px;
}

.footer-col h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 246, 244, 0.4);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 11px;
}

.footer-col a {
  color: rgba(244, 246, 244, 0.68);
  transition: color .2s ease;
}

.footer-col a:hover {
  color: #F4F6F4;
}

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 22px 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(244, 246, 244, 0.4);
  font-size: 12.5px;
}

.footer-bottom strong {
  color: rgba(244, 246, 244, 0.65);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(244, 246, 244, 0.4);
  transition: color .2s ease;
}

.footer-bottom-links a:hover {
  color: rgba(244, 246, 244, 0.75);
}

@media (max-width:860px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width:520px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width:860px) {
  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 32px;
  }

  .cta-section h2 {
    font-size: 27px;
  }
}