@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@500;600;700;800&family=JetBrains+Mono:wght@500;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: light;
  --ink: #172126;
  --muted: #607077;
  --line: #d6e4ff;
  --paper: #fbfcfa;
  --soft: #f0f6ff;
  --mint: #1677ff;
  --mint-dark: #0958d9;
  --blue-soft: #e6f4ff;
  --amber: #f1a83b;
  --coral: #df6b55;
  --violet: #7167d8;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(34, 48, 54, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(230, 244, 255, 0.82), rgba(251, 252, 250, 0) 520px),
    var(--paper);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1180px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  padding: 12px 0;
  background: rgba(251, 252, 250, 0.86);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.hero-actions,
.mock-toolbar,
.file-row,
.final-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: 178px;
  height: auto;
}

.site-nav {
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav a.active {
  color: var(--ink);
}

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

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.language-switch select {
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  outline: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.section-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 28px 0 82px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 54px;
  align-items: center;
  padding: 72px 0 58px;
}

.page-hero.compact {
  display: block;
  max-width: 1180px;
  padding-bottom: 28px;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.96;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 9ch;
  margin-bottom: 20px;
  font-size: clamp(62px, 7vw, 104px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 18px;
  color: #27363b;
  font-size: clamp(22px, 2.4vw, 31px);
  font-weight: 700;
  line-height: 1.18;
}

.hero-detail,
.section-heading p,
.solution-copy p,
.security-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.hero-detail {
  max-width: 650px;
  margin-bottom: 28px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
}

.button-primary {
  color: var(--white);
  background: var(--mint);
  box-shadow: 0 14px 28px rgba(22, 119, 255, 0.24);
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--white);
}

.trust-line {
  color: #64757b;
  font-size: 14px;
  font-weight: 700;
}

.product-visual {
  position: relative;
  min-width: 0;
}

.flow-strip {
  position: absolute;
  top: -28px;
  right: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - 40px);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 34px rgba(23, 33, 38, 0.13);
  backdrop-filter: blur(14px);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.flow-strip span,
.flow-strip b,
.flow-strip strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 6px;
}

.flow-strip span {
  background: var(--soft);
}

.flow-strip i {
  display: block;
  width: 14px;
  height: 2px;
  overflow: hidden;
  background: var(--mint);
}

.flow-strip b {
  color: var(--white);
  background: var(--mint);
}

.flow-strip strong {
  color: #05234c;
  background: #e6f4ff;
}

.app-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.window-top {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: #f8fbff;
}

.window-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.window-top span:nth-child(1) {
  background: var(--coral);
}

.window-top span:nth-child(2) {
  background: var(--amber);
}

.window-top span:nth-child(3) {
  background: var(--mint);
}

.window-top p {
  margin: 0 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.app-layout {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 520px;
}

.mock-top-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: #f3f8ff;
}

.mock-top-nav a {
  min-height: 34px;
  padding: 9px 12px;
  border-radius: 7px;
  color: #728187;
  font-size: 12px;
  font-weight: 800;
}

.mock-top-nav .active {
  color: var(--ink);
  background: var(--white);
}

.mock-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 12px;
  border-right: 1px solid var(--line);
  background: #f3f8ff;
}

.sidebar-logo {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--ink) 0 45%, transparent 45%),
    linear-gradient(135deg, var(--mint) 48%, var(--mint) 100%);
}

.mock-sidebar a {
  min-height: 34px;
  padding: 9px 10px;
  border-radius: 7px;
  color: #728187;
  font-size: 12px;
  font-weight: 800;
}

.mock-sidebar .active {
  color: var(--ink);
  background: var(--white);
}

.mock-main {
  padding: 22px;
}

.mock-content {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(180px, 0.88fr);
  gap: 14px;
}

.mock-left,
.mock-right {
  min-width: 0;
}

.mock-toolbar {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.mock-toolbar p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.mock-toolbar h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

.mock-toolbar button {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.summary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.summary-grid article {
  min-height: 86px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.status-panel {
  padding: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(22, 119, 255, 0.14), transparent 60%),
    var(--white);
}

.status-panel span,
.status-panel p {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.status-panel strong {
  display: block;
  margin: 10px 0 8px;
  color: var(--mint);
  font-size: 44px;
  line-height: 0.9;
}

.summary-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.summary-grid strong {
  font-size: 31px;
  letter-spacing: 0;
}

.drop-zone {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 122px;
  margin-bottom: 16px;
  padding: 20px;
  border: 1px dashed #95bfb4;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(22, 119, 255, 0.13), rgba(241, 168, 59, 0.12)),
    #fbfdfb;
}

.drop-icon {
  display: grid;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--mint);
  font-size: 28px;
  font-weight: 500;
}

.drop-zone h3 {
  margin-bottom: 6px;
}

.drop-zone p,
.file-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.file-list {
  display: grid;
  gap: 10px;
}

.file-row {
  gap: 12px;
  min-height: 52px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.file-row p {
  flex: 1;
  color: var(--ink);
  font-weight: 700;
}

.file-row strong {
  color: var(--muted);
  font-size: 12px;
}

.doc-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  min-height: 28px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.doc-type.bill {
  background: #e6f4ff;
}

.doc-type.income {
  background: #ffe8c2;
}

.doc-type.statement {
  background: #e8e6ff;
}

.pain,
.features,
.workflow,
.comparison {
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.three-column,
.feature-grid,
.security-grid {
  display: grid;
  gap: 16px;
}

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

.feature-grid,
.security-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-grid .feature-card:nth-child(1),
.feature-grid .feature-card:nth-child(2) {
  grid-column: span 2;
}

.feature-card,
.team-card,
.security-grid article,
.steps article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-card {
  min-height: 230px;
  padding: 24px;
}

.feature-card p,
.team-card p,
.steps p,
.security-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  margin-bottom: 26px;
  padding: 0 10px;
  border-radius: 6px;
  color: var(--mint-dark);
  background: var(--blue-soft);
  font-size: 12px;
  font-weight: 900;
}

.solution {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 40px;
  align-items: center;
  padding: 74px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.solution-copy .button {
  margin-top: 8px;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.process-line::before {
  position: absolute;
  top: 30px;
  right: 8%;
  left: 8%;
  height: 3px;
  background: linear-gradient(90deg, var(--mint), #69b1ff, var(--violet));
  content: "";
}

.process-line div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 150px;
  padding: 0 6px;
  text-align: center;
}

.process-line span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 16px;
  border: 8px solid var(--paper);
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.process-line p {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.workflow {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.86)),
    var(--soft);
  box-shadow: 0 0 0 100vmax var(--soft);
  clip-path: inset(0 -100vmax);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.steps article {
  min-height: 280px;
  padding: 26px;
}

.steps span {
  display: block;
  margin-bottom: 54px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
}

.teams {
  padding: 92px 0 78px;
}

.team-card {
  min-height: 240px;
  padding: 30px;
}

.team-card.accent {
  color: var(--white);
  background: #05234c;
}

.team-card.accent p {
  color: rgba(255, 255, 255, 0.72);
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.table-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row span {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.table-row span:last-child {
  border-right: 0;
  color: var(--ink);
  font-weight: 800;
}

.table-head {
  background: var(--ink);
}

.table-head span,
.table-head span:last-child {
  color: var(--white);
  font-weight: 900;
}

.security {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 36px;
  align-items: start;
  padding: 86px 0;
  border-top: 1px solid var(--line);
}

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

.security-grid article {
  min-height: 190px;
  padding: 24px;
  background: #ffffff;
}

.integration-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.integration-panel span {
  display: grid;
  min-height: 92px;
  place-items: center;
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
}

.integration-panel p {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.final-cta {
  justify-content: space-between;
  gap: 24px;
  padding: 48px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(22, 119, 255, 0.32), rgba(113, 103, 216, 0.2)),
    #05234c;
  margin-bottom: 40px;
}

.final-cta .eyebrow {
  color: #91caff;
}

.final-cta h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.final-cta .button-primary {
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
  gap: 40px;
  padding: 42px 0 54px;
  border-top: 1px solid var(--line);
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.footer-brand .footer-company {
  margin-top: 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.footer-contact {
  display: inline-flex;
  margin-top: 8px;
  color: var(--mint-dark);
  font-size: 14px;
  font-weight: 800;
}

.footer-contact:hover {
  color: var(--mint);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.footer-links h3 {
  margin-bottom: 14px;
  font-size: 14px;
}

.footer-links span,
.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--mint);
}

@media (max-width: 980px) {
  .site-header {
    width: min(100% - 28px, 1180px);
  }

  .site-nav {
    display: none;
  }

  .hero,
  .page-hero,
  .solution,
  .security {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  h1 {
    max-width: 100%;
  }

  .product-visual {
    margin-top: 22px;
  }

  .three-column,
  .feature-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .feature-grid .feature-card:nth-child(1),
  .feature-grid .feature-card:nth-child(2) {
    grid-column: span 1;
  }

  .process-line {
    grid-template-columns: repeat(5, minmax(116px, 1fr));
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

@media (max-width: 680px) {
  .site-header,
  .section-band {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    min-height: 64px;
  }

  .nav-cta,
  .language-switch span {
    display: none;
  }

  .language-switch {
    padding: 0 6px;
  }

  .hero {
    padding-bottom: 54px;
  }

  .page-hero {
    padding: 46px 0 26px;
  }

  h1 {
    font-size: clamp(48px, 16vw, 66px);
  }

  h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .hero-lede {
    font-size: 21px;
  }

  .hero-detail,
  .section-heading p,
  .solution-copy p,
  .security-copy p {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .flow-strip {
    position: relative;
    top: auto;
    right: auto;
    flex-wrap: wrap;
    max-width: 100%;
    margin-bottom: 12px;
  }

  .app-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mock-content {
    grid-template-columns: 1fr;
  }

  .mock-top-nav {
    overflow-x: auto;
  }

  .mock-top-nav a {
    flex: 0 0 auto;
  }

  .mock-sidebar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .sidebar-logo {
    display: none;
  }

  .mock-sidebar a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 8px 4px;
    text-align: center;
  }

  .mock-main {
    padding: 16px;
  }

  .mock-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .mock-toolbar h2 {
    font-size: 24px;
  }

  .summary-grid,
  .three-column,
  .feature-grid,
  .steps,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .summary-grid article {
    min-height: 76px;
  }

  .drop-zone,
  .file-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .file-row strong {
    align-self: flex-start;
  }

  .pain,
  .features,
  .workflow,
  .comparison,
  .teams,
  .security {
    padding: 64px 0;
  }

  .solution {
    padding: 58px 0;
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .table-row span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .table-row span:last-child {
    border-bottom: 0;
  }

  .table-head {
    display: none;
  }

  .final-cta {
    padding: 30px 22px;
  }

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

  .integration-panel {
    grid-template-columns: 1fr;
  }
}

/* Industrial editorial redesign layer */
:root {
  --ink: #07182f;
  --ink-2: #0d2548;
  --muted: #64748b;
  --line: rgba(22, 119, 255, 0.18);
  --paper: #f7f9fc;
  --paper-2: #ffffff;
  --soft: #eef6ff;
  --mint: #1677ff;
  --mint-dark: #0958d9;
  --blue-soft: #e6f4ff;
  --amber: #f6b73c;
  --coral: #ff6b55;
  --violet: #6d5dfc;
  --white: #ffffff;
  --display-font: "Helvetica Neue", "Lucida Grande", "Segoe UI", sans-serif;
  --body-font: "Helvetica Neue", "Lucida Grande", "Segoe UI", sans-serif;
  --mono-font: "Courier New", Courier, monospace;
  --shadow: 0 26px 90px rgba(7, 24, 47, 0.16);
  --hard-shadow: 10px 10px 0 rgba(22, 119, 255, 0.12);
}

body {
  position: relative;
  overflow-x: hidden;
  font-family: var(--body-font);
  background:
    linear-gradient(rgba(22, 119, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 119, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 84% 8%, rgba(22, 119, 255, 0.24), transparent 30vw),
    radial-gradient(circle at 8% 18%, rgba(246, 183, 60, 0.14), transparent 24vw),
    linear-gradient(180deg, #fbfdff 0%, #f3f7fb 42%, #ffffff 100%);
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(7, 24, 47, 0.035) 0,
      rgba(7, 24, 47, 0.035) 1px,
      transparent 1px,
      transparent 16px
    );
  mask-image: linear-gradient(180deg, #000, transparent 72%);
  content: "";
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(transparent 0 96%, rgba(7, 24, 47, 0.08) 96%),
    radial-gradient(circle at 30% 40%, rgba(7, 24, 47, 0.08), transparent 1px);
  background-size: 100% 5px, 9px 9px;
  mix-blend-mode: multiply;
  content: "";
}

.site-header {
  width: min(1220px, calc(100% - 40px));
  min-height: 78px;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(22, 119, 255, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 60px rgba(7, 24, 47, 0.08);
}

.brand-logo {
  width: 190px;
  filter: drop-shadow(0 8px 18px rgba(22, 119, 255, 0.08));
}

.site-nav {
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(7, 24, 47, 0.08);
  background: rgba(247, 249, 252, 0.72);
}

.site-nav a {
  position: relative;
  min-height: 36px;
  padding: 10px 14px;
  color: #5c6d84;
  font-family: var(--mono-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--mint);
  background: var(--white);
}

.site-nav a.active::after {
  position: absolute;
  right: 10px;
  bottom: 5px;
  left: 10px;
  height: 2px;
  background: var(--mint);
  content: "";
}

.language-switch,
.nav-cta,
.button {
  border-radius: 0;
  font-family: var(--mono-font);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-switch {
  border-color: rgba(7, 24, 47, 0.1);
  background: rgba(255, 255, 255, 0.9);
}

.nav-cta {
  border-color: var(--mint);
  color: var(--white);
  background: var(--mint);
  box-shadow: 6px 6px 0 rgba(22, 119, 255, 0.16);
}

.section-band {
  width: min(1220px, calc(100% - 40px));
}

.hero {
  position: relative;
  grid-template-columns: minmax(0, 0.88fr) minmax(470px, 1.12fr);
  gap: 66px;
  padding: 76px 0 104px;
}

.page-hero {
  position: relative;
  padding-top: 94px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--mint);
  font-family: var(--mono-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.eyebrow::before {
  display: inline-block;
  width: 34px;
  height: 2px;
  background: var(--mint);
  content: "";
}

h1,
h2 {
  font-family: var(--display-font);
  font-weight: 750;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 10ch;
  color: var(--ink);
  font-size: clamp(76px, 8.4vw, 136px);
  line-height: 0.88;
}

.hero-title {
  max-width: 9.6ch;
}

.hero-title-accent {
  display: inline-block;
  color: var(--mint);
  text-shadow:
    0 0 0 var(--mint),
    10px 10px 0 rgba(22, 119, 255, 0.12);
}

.page-title-accent {
  color: var(--mint);
  text-shadow: 8px 8px 0 rgba(22, 119, 255, 0.1);
}

.page-hero h1 {
  font-size: clamp(56px, 7.2vw, 108px);
  line-height: 0.94;
}

h2 {
  color: var(--ink);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
}

h3 {
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 21px;
  font-weight: 600;
}

.feature-card h3,
.team-card h3,
.security-grid h3,
.steps h3 {
  max-width: 20ch;
  font-family: var(--body-font);
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.01em;
  line-height: 1.13;
  text-transform: none;
}

.feature-card h3 {
  color: #102a4c;
}

.hero-lede {
  max-width: 620px;
  color: var(--ink-2);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.1;
}

.hero-detail,
.page-hero p:not(.eyebrow),
.section-heading p,
.solution-copy p,
.security-copy p {
  color: #52677f;
  font-size: 18px;
}

.button {
  position: relative;
  overflow: hidden;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--mint);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button::after,
.nav-cta::after {
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  content: "";
  transition: transform 520ms ease;
}

.button:hover,
.nav-cta:hover {
  transform: translate(-2px, -2px);
}

.button:hover::after,
.nav-cta:hover::after {
  transform: translateX(120%) skewX(-18deg);
}

.button-primary {
  background: var(--mint);
  box-shadow: 8px 8px 0 rgba(22, 119, 255, 0.16);
}

.button-secondary {
  color: var(--mint-dark);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 8px 8px 0 rgba(7, 24, 47, 0.05);
}

.trust-line {
  display: inline-flex;
  padding: 9px 12px;
  border-left: 3px solid var(--mint);
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.74);
}

.integration-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.integration-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(22, 119, 255, 0.24);
  color: var(--mint-dark);
  background: rgba(255, 255, 255, 0.82);
  font-family: var(--mono-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.product-visual {
  isolation: isolate;
  animation: riseIn 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.product-visual::before {
  position: absolute;
  inset: -26px -18px 22px 18px;
  z-index: -1;
  border: 1px solid rgba(22, 119, 255, 0.22);
  transform: rotate(2deg);
  background:
    linear-gradient(135deg, rgba(22, 119, 255, 0.16), rgba(255, 255, 255, 0.28)),
    repeating-linear-gradient(90deg, rgba(22, 119, 255, 0.08) 0 1px, transparent 1px 18px);
  box-shadow: var(--hard-shadow);
  content: "";
}

.flow-strip {
  top: -38px;
  right: 34px;
  border-color: rgba(22, 119, 255, 0.28);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  font-family: var(--mono-font);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.flow-strip span,
.flow-strip b,
.flow-strip strong {
  border-radius: 0;
}

.flow-strip i {
  position: relative;
  width: 24px;
  height: 1px;
}

.flow-strip i::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--mint);
  border-right: 1px solid var(--mint);
  transform: rotate(45deg);
  content: "";
}

.app-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 24, 47, 0.12);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 34px 90px rgba(7, 24, 47, 0.2);
}

.app-window::after {
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -25%;
  width: 18%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(22, 119, 255, 0.18), transparent);
  animation: scanBeam 4.8s ease-in-out infinite;
  content: "";
}

.window-top,
.mock-sidebar,
.mock-top-nav,
.mock-main,
.summary-grid article,
.drop-zone,
.file-row,
.status-panel {
  position: relative;
  z-index: 1;
}

.window-top,
.mock-sidebar,
.mock-top-nav {
  background: rgba(246, 250, 255, 0.96);
}

.window-top p,
.mock-toolbar p,
.summary-grid span,
.file-row strong,
.status-panel span,
.status-panel p,
.card-icon,
.steps span {
  font-family: var(--mono-font);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sidebar-logo,
.drop-icon {
  border-radius: 0;
}

.mock-sidebar a,
.mock-top-nav a,
.summary-grid article,
.drop-zone,
.file-row,
.status-panel,
.feature-card,
.team-card,
.security-grid article,
.steps article,
.comparison-table,
.integration-panel,
.integration-panel span {
  border-radius: 0;
}

.mock-sidebar a.active {
  color: var(--mint);
  box-shadow: inset 0 -3px 0 var(--mint);
}

.mock-top-nav a.active {
  color: var(--mint);
  background: var(--white);
  box-shadow: inset 0 -3px 0 var(--mint);
}

.mock-toolbar button {
  border-radius: 0;
  background: var(--mint);
  font-family: var(--mono-font);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-grid article {
  background:
    linear-gradient(180deg, rgba(22, 119, 255, 0.07), transparent),
    var(--white);
}

.summary-grid strong {
  color: var(--ink);
  font-family: var(--display-font);
  font-size: 42px;
  line-height: 0.9;
}

.status-panel strong {
  font-family: var(--display-font);
}

.drop-zone {
  border-color: rgba(22, 119, 255, 0.42);
  background:
    linear-gradient(90deg, rgba(22, 119, 255, 0.08), transparent 45%),
    repeating-linear-gradient(135deg, rgba(22, 119, 255, 0.08) 0 1px, transparent 1px 10px),
    #fbfdff;
}

.file-row {
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.file-row:hover,
.feature-card:hover,
.team-card:hover,
.security-grid article:hover,
.steps article:hover {
  border-color: rgba(22, 119, 255, 0.54);
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 rgba(22, 119, 255, 0.1);
}

.feature-card,
.team-card,
.security-grid article,
.steps article {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76)),
    var(--white);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.feature-card::before,
.team-card::before,
.security-grid article::before,
.steps article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mint), transparent);
  content: "";
}

.feature-card:nth-child(2n)::before,
.team-card:nth-child(2n)::before,
.security-grid article:nth-child(2n)::before,
.steps article:nth-child(2n)::before {
  background: linear-gradient(90deg, var(--amber), transparent);
}

.card-icon {
  min-width: 48px;
  height: 34px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 5px 5px 0 rgba(22, 119, 255, 0.18);
}

.solution {
  position: relative;
  border-top: 1px solid rgba(22, 119, 255, 0.22);
  border-bottom: 1px solid rgba(22, 119, 255, 0.22);
}

.solution::before {
  position: absolute;
  inset: 18px auto 18px 50%;
  width: 1px;
  background: rgba(22, 119, 255, 0.28);
  content: "";
}

.process-line span {
  border-color: var(--paper);
  background: var(--mint);
  box-shadow: 0 0 0 1px rgba(22, 119, 255, 0.22), 8px 8px 0 rgba(22, 119, 255, 0.12);
}

.workflow {
  position: relative;
  background:
    linear-gradient(180deg, rgba(7, 24, 47, 0.02), rgba(255, 255, 255, 0.84)),
    var(--soft);
}

.steps article {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.steps span {
  color: var(--mint);
}

.team-card.accent {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(22, 119, 255, 0.16), rgba(255, 255, 255, 0.72) 48%),
    #f4f9ff;
}

.team-card.accent h3 {
  color: #063b80;
}

.team-card.accent p {
  color: #42576f;
}

.comparison-table {
  box-shadow: var(--hard-shadow);
}

.table-head {
  background:
    linear-gradient(90deg, var(--ink), #05234c 58%, var(--mint));
}

.table-row span:last-child {
  color: var(--mint-dark);
}

.integration-panel {
  grid-template-columns: repeat(4, 1fr);
  background:
    linear-gradient(135deg, rgba(22, 119, 255, 0.12), transparent 42%),
    var(--white);
  box-shadow: var(--hard-shadow);
}

.integration-panel span {
  color: var(--mint);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(230, 244, 255, 0.9)),
    var(--soft);
  font-family: var(--display-font);
  font-size: 34px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(22, 119, 255, 0.36);
  border-radius: 0;
  color: #ffffff;
  background:
    linear-gradient(115deg, rgba(22, 119, 255, 0.38), transparent 40%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 24px),
    #031226;
  box-shadow: 0 30px 80px rgba(3, 18, 38, 0.22);
}

.final-cta .eyebrow {
  color: #ffffff;
  background: #1677ff;
  padding: 7px 12px;
}

.final-cta .eyebrow::before {
  background: #ffffff;
}

.final-cta h2 {
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.24);
}

.final-cta .button-primary {
  position: relative;
  z-index: 1;
  color: #031226;
  border-color: #ffffff;
  background: #ffffff;
  box-shadow: 8px 8px 0 rgba(22, 119, 255, 0.42);
}

.final-cta::after {
  position: absolute;
  top: -80px;
  right: 60px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(145, 202, 255, 0.34);
  transform: rotate(20deg);
  content: "";
}

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

.site-footer {
  border-top-color: rgba(22, 119, 255, 0.22);
}

.footer-links h3 {
  font-family: var(--mono-font);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-hero {
  max-width: 1220px;
}

.legal-updated {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 11px;
  border: 1px solid rgba(22, 119, 255, 0.22);
  color: var(--mint-dark);
  background: rgba(255, 255, 255, 0.76);
  font-family: var(--mono-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.legal-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 36px 0 92px;
}

.legal-section {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(22, 119, 255, 0.05), transparent),
    rgba(255, 255, 255, 0.86);
}

.legal-section h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1;
}

.legal-section p {
  margin: 0;
  color: #52677f;
  font-size: 16px;
  line-height: 1.72;
}

.faq-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 36px 0 92px;
}

.faq-item {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(22, 119, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(22, 119, 255, 0.06), transparent 46%),
    rgba(255, 255, 255, 0.88);
  box-shadow: 8px 8px 0 rgba(22, 119, 255, 0.08);
}

.faq-item h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.08;
}

.faq-item p {
  margin: 0;
  color: #52677f;
  font-size: 16px;
  line-height: 1.72;
}

.resource-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 36px 0 92px;
}

.third-party-notice {
  margin-top: -28px;
  padding: 0 0 14px;
}

.third-party-notice p {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid rgba(22, 119, 255, 0.24);
  border-left: 4px solid var(--mint);
  background: rgba(255, 255, 255, 0.9);
  color: #34465a;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.resource-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid rgba(22, 119, 255, 0.18);
  background:
    radial-gradient(circle at 24px 24px, rgba(22, 119, 255, 0.12), transparent 34px),
    rgba(255, 255, 255, 0.9);
  box-shadow: 8px 8px 0 rgba(22, 119, 255, 0.08);
}

.resource-card span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--mint);
  font-family: var(--mono-font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.resource-card h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
}

.resource-card p {
  margin: 0;
  color: #52677f;
  font-size: 16px;
  line-height: 1.72;
}

.login-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(22, 119, 255, 0.22);
  color: var(--mint-dark);
  background: rgba(255, 255, 255, 0.78);
  font-family: var(--mono-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.login-link:hover {
  border-color: var(--mint);
  color: var(--mint);
}

.pricing-note {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 11px;
  border: 1px solid rgba(22, 119, 255, 0.22);
  color: var(--mint-dark);
  background: rgba(255, 255, 255, 0.76);
  font-family: var(--mono-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.billing-block {
  padding: 36px 0 92px;
}

.billing-tabs {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 18px;
  padding: 4px;
  border: 1px solid rgba(22, 119, 255, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.billing-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 15px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.billing-tabs .active {
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(7, 24, 47, 0.1);
}

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

.pricing-section[hidden] {
  display: none !important;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 32px;
  border: 1px solid rgba(22, 119, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(22, 119, 255, 0.05), transparent 40%),
    rgba(255, 255, 255, 0.9);
  box-shadow: 10px 10px 0 rgba(22, 119, 255, 0.08);
}

.pricing-card.featured {
  border-color: rgba(22, 119, 255, 0.46);
  background:
    linear-gradient(135deg, rgba(22, 119, 255, 0.12), transparent 44%),
    rgba(255, 255, 255, 0.94);
  box-shadow: 12px 12px 0 rgba(22, 119, 255, 0.14);
}

.pricing-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.pricing-card-head h2 {
  margin: 0 0 8px;
  font-size: clamp(30px, 3.4vw, 42px);
}

.pricing-card-head p,
.billed-line {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.pricing-card-head span {
  padding: 6px 9px;
  color: #ffffff;
  background: var(--mint);
  font-family: var(--mono-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 8px 0 4px;
}

.price-line strong {
  color: var(--ink);
  font-size: clamp(48px, 5.2vw, 64px);
  line-height: 0.9;
}

.price-line span {
  color: var(--muted);
  font-size: 16px;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 22px;
  color: #34465a;
  line-height: 1.45;
}

.pricing-card li::before {
  position: absolute;
  left: 0;
  color: #16a34a;
  content: "✓";
}

.pricing-button {
  width: 100%;
  margin-top: auto;
}

.credit-rules {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  margin: 34px 0 8px;
  padding: 26px;
  border: 1px solid rgba(22, 119, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(22, 119, 255, 0.08), transparent 46%),
    rgba(255, 255, 255, 0.84);
}

.credit-rules h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 3vw, 40px);
}

.credit-rules p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.credit-rule-grid article {
  padding: 18px;
  border: 1px solid rgba(22, 119, 255, 0.16);
  background: rgba(255, 255, 255, 0.74);
}

.credit-rule-grid h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.topups-heading {
  margin: 42px 0 16px;
}

.topups-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(30px, 3vw, 42px);
}

.topups-heading p {
  margin: 0;
  color: var(--muted);
}

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

.topup-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 104px;
  padding: 20px 22px;
  border: 1px solid rgba(22, 119, 255, 0.18);
  background: rgba(255, 255, 255, 0.88);
}

.topup-card h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.topup-card h3 span {
  margin-left: 6px;
  color: var(--ink);
}

.topup-card p,
.topup-card small {
  display: block;
  margin: 0;
  color: var(--muted);
}

.topup-card small {
  margin-top: 4px;
  opacity: 0.78;
}

.topup-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 38px;
  color: var(--mint-dark);
  background: rgba(22, 119, 255, 0.16);
  font-weight: 700;
}

.hero-copy,
.section-heading,
.solution-copy,
.page-hero > div,
.features,
.workflow,
.teams,
.comparison,
.security,
.final-cta {
  animation: riseIn 680ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.pain,
.solution,
.features,
.workflow,
.teams,
.comparison,
.security,
.final-cta {
  animation-delay: 80ms;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes scanBeam {
  0%,
  38% {
    transform: translateX(0) rotate(18deg);
  }

  78%,
  100% {
    transform: translateX(680%) rotate(18deg);
  }
}

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

@media (max-width: 980px) {
  .site-header {
    margin-top: 10px;
  }

  .hero,
  .page-hero {
    padding-top: 54px;
  }

  .solution::before {
    display: none;
  }
}

@media (max-width: 680px) {
  .site-header,
  .section-band {
    width: min(100% - 24px, 1220px);
  }

  .site-header {
    padding: 10px;
  }

  .brand-logo {
    width: 150px;
  }

  .hero {
    padding-top: 36px;
  }

  h1 {
    font-size: clamp(56px, 18vw, 76px);
    line-height: 0.86;
  }

  .page-hero h1 {
    font-size: clamp(44px, 14vw, 66px);
  }

  h2 {
    font-size: clamp(36px, 11vw, 54px);
  }

  .product-visual::before {
    inset: -12px -8px 12px 8px;
  }

  .flow-strip {
    right: auto;
  }

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

  .legal-content {
    grid-template-columns: 1fr;
    padding-bottom: 64px;
  }

  .faq-content,
  .resource-content {
    grid-template-columns: 1fr;
    padding-bottom: 64px;
  }

  .login-link {
    display: none;
  }

  .pricing-section,
  .credit-rules,
  .topup-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: auto;
    padding: 24px;
  }

  .billing-block {
    padding-bottom: 64px;
  }

  .credit-rule-grid {
    grid-template-columns: 1fr;
  }

  .topup-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Nocturne ledger redesign layer */
:root {
  color-scheme: dark;
  --ink: #f7fbff;
  --ink-2: #d9e7f3;
  --muted: #8fa0ad;
  --line: rgba(255, 133, 0, 0.34);
  --paper: #07111c;
  --paper-2: #0c1824;
  --soft: #101d29;
  --mint: #ff7a18;
  --mint-dark: #ff9d43;
  --blue-soft: rgba(31, 217, 255, 0.14);
  --amber: #ff8500;
  --coral: #ff4f65;
  --violet: #23d7ff;
  --white: #fffaf3;
  --display-font: "Bricolage Grotesque", "Manrope", sans-serif;
  --body-font: "Manrope", "Helvetica Neue", sans-serif;
  --mono-font: "JetBrains Mono", "SFMono-Regular", monospace;
  --shadow: 0 34px 110px rgba(0, 0, 0, 0.45);
  --hard-shadow: 0 22px 80px rgba(255, 122, 24, 0.16);
  --panel: rgba(12, 24, 36, 0.82);
  --panel-strong: rgba(16, 32, 47, 0.94);
  --panel-line: rgba(255, 255, 255, 0.09);
}

* {
  letter-spacing: 0 !important;
}

::selection {
  color: #130b05;
  background: #ff9d43;
}

html {
  background: #07111c;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--body-font);
  background:
    linear-gradient(118deg, rgba(255, 133, 0, 0.18) 0%, rgba(255, 133, 0, 0) 24%),
    linear-gradient(245deg, rgba(35, 215, 255, 0.11) 0%, rgba(35, 215, 255, 0) 28%),
    linear-gradient(180deg, #0e1b2a 0%, #07111c 44%, #090d14 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 133, 0, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 133, 0, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 45%, rgba(255, 133, 0, 0.08) 45% 45.5%, transparent 45.5% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 38%);
  background-size: 44px 44px, 44px 44px, 100% 100%, 100% 100%;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.9) 44%, transparent 100%);
  content: "";
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 11px);
  mix-blend-mode: screen;
  content: "";
}

#site-header,
#page-root,
#site-footer {
  position: relative;
  z-index: 1;
}

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

a,
button,
select {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  width: min(1240px, calc(100% - 36px));
  min-height: 82px;
  margin-top: 0;
  padding: 14px 18px;
  border: 1px solid rgba(255, 133, 0, 0.44);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 133, 0, 0.11), transparent 36%),
    rgba(7, 17, 28, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 24px 70px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px) saturate(1.25);
}

.site-header::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 8px;
  background:
    linear-gradient(90deg, #ff8500, transparent 18% 82%, #ff8500),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 48%);
  opacity: 0.24;
  content: "";
}

.brand {
  gap: 12px;
}

.brand-logo {
  width: 196px;
  filter: drop-shadow(0 14px 26px rgba(255, 133, 0, 0.16));
}

.site-nav {
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.site-nav a {
  min-height: 36px;
  padding: 10px 13px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #a7b4bf;
  font-family: var(--mono-font);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff8ee;
  border-color: rgba(255, 133, 0, 0.36);
  background:
    linear-gradient(180deg, rgba(255, 133, 0, 0.2), rgba(255, 133, 0, 0.06)),
    rgba(255, 255, 255, 0.04);
}

.site-nav a.active::after {
  display: none;
}

.menu-toggle {
  display: none;
}

.mobile-language-switch {
  display: none;
}

.header-actions {
  gap: 10px;
}

.language-switch,
.login-link,
.nav-cta,
.button,
.billing-tabs,
.pricing-note,
.legal-updated {
  border-radius: 8px;
  font-family: var(--mono-font);
  text-transform: uppercase;
}

.language-switch,
.login-link {
  min-height: 42px;
  border-color: rgba(255, 255, 255, 0.1);
  color: #becad3;
  background: rgba(255, 255, 255, 0.045);
}

.language-switch select {
  color: #f7fbff;
  background: transparent;
}

.login-link:hover {
  border-color: rgba(255, 133, 0, 0.54);
  color: #ffb269;
  background: rgba(255, 133, 0, 0.08);
}

.nav-cta {
  position: relative;
  overflow: hidden;
  min-height: 42px;
  padding: 0 17px;
  border-color: rgba(255, 133, 0, 0.72);
  color: #170b03;
  background: linear-gradient(180deg, #ffa449, #ff7417);
  box-shadow:
    0 14px 34px rgba(255, 116, 23, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.nav-cta::after {
  content: none;
}

.section-band {
  width: min(1240px, calc(100% - 36px));
}

.hero {
  min-height: calc(100vh - 100px);
  grid-template-columns: minmax(0, 0.86fr) minmax(470px, 1.14fr);
  gap: 70px;
  padding: 82px 0 112px;
}

.page-hero {
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1.14fr);
  gap: 62px;
  padding: 92px 0 62px;
}

.page-hero.compact {
  padding-top: 92px;
}

.hero-copy,
.page-hero > div,
.section-heading {
  position: relative;
}

.hero-copy::before,
.page-hero > div::before {
  position: absolute;
  top: -26px;
  left: -28px;
  width: 92px;
  height: 92px;
  border-top: 1px solid rgba(255, 133, 0, 0.52);
  border-left: 1px solid rgba(255, 133, 0, 0.52);
  content: "";
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 133, 0, 0.36);
  border-radius: 6px;
  color: #ffad5e;
  background: rgba(255, 133, 0, 0.075);
  font-family: var(--mono-font);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 1px;
  background: #ff8500;
}

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

h1,
h2 {
  font-family: var(--display-font);
  font-weight: 800;
}

h1 {
  max-width: 10.5ch;
  margin-bottom: 22px;
  font-size: clamp(72px, 8.2vw, 132px);
  line-height: 0.9;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(52px, 6.8vw, 104px);
  line-height: 0.96;
}

h2 {
  font-size: clamp(38px, 4.8vw, 68px);
  line-height: 1;
}

h3 {
  font-family: var(--display-font);
  font-size: 22px;
  font-weight: 700;
}

.hero-title-accent,
.page-title-accent {
  color: #ff8500;
  text-shadow:
    0 0 22px rgba(255, 133, 0, 0.5),
    0 0 1px #ff8500;
}

.hero-lede {
  max-width: 650px;
  color: #f1f5f9;
  font-size: clamp(24px, 2.35vw, 34px);
  font-weight: 700;
  line-height: 1.16;
}

.hero-detail,
.page-hero p:not(.eyebrow),
.section-heading p,
.solution-copy p,
.security-copy p {
  color: #a7b5c1;
  font-size: 18px;
  line-height: 1.72;
}

.button {
  min-height: 52px;
  padding: 0 23px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: rgba(255, 176, 96, 0.9);
  color: #160a02;
  background: linear-gradient(180deg, #ffad5e 0%, #ff7a18 62%, #f05f0a 100%);
  box-shadow:
    0 18px 46px rgba(255, 122, 24, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.button-secondary {
  border-color: rgba(255, 133, 0, 0.46);
  color: #f7fbff;
  background:
    linear-gradient(180deg, rgba(255, 133, 0, 0.08), rgba(255, 133, 0, 0.02)),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.trust-line {
  display: inline-flex;
  max-width: 670px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 133, 0, 0.24);
  border-left: 3px solid #ff8500;
  border-radius: 6px;
  color: #cbd6df;
  background: rgba(255, 255, 255, 0.035);
  font-size: 14px;
  font-weight: 700;
}

.integration-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.integration-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(35, 215, 255, 0.28);
  border-radius: 6px;
  color: #b9f2ff;
  background: rgba(35, 215, 255, 0.07);
  font-family: var(--mono-font);
  font-size: 12px;
  font-weight: 700;
}

.product-visual {
  min-width: 0;
  isolation: isolate;
  perspective: 1200px;
}

.product-visual::before {
  position: absolute;
  inset: -34px -24px 28px 26px;
  z-index: -2;
  border: 1px solid rgba(255, 133, 0, 0.58);
  border-radius: 8px;
  transform: rotate(-1.6deg);
  background:
    linear-gradient(132deg, rgba(255, 133, 0, 0.18), rgba(255, 133, 0, 0.02) 38%, rgba(35, 215, 255, 0.1)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 28px 28px;
  box-shadow:
    0 0 80px rgba(255, 116, 23, 0.18),
    inset 0 0 70px rgba(255, 133, 0, 0.06);
  content: "";
}

.product-visual::after {
  position: absolute;
  right: -8px;
  bottom: -34px;
  z-index: -1;
  width: 210px;
  height: 148px;
  border: 1px solid rgba(35, 215, 255, 0.2);
  border-radius: 8px;
  transform: rotate(10deg);
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(35, 215, 255, 0.32) 18% 22%, transparent 22% 100%),
    linear-gradient(0deg, transparent 0 26%, rgba(255, 133, 0, 0.4) 26% 31%, transparent 31% 100%),
    rgba(12, 24, 36, 0.62);
  box-shadow: 0 20px 60px rgba(35, 215, 255, 0.08);
  content: "";
}

.flow-strip {
  top: -34px;
  right: 28px;
  padding: 8px;
  border-color: rgba(255, 133, 0, 0.46);
  border-radius: 8px;
  color: #e7eff6;
  background: rgba(9, 20, 31, 0.88);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  font-family: var(--mono-font);
  text-transform: uppercase;
}

.flow-strip span,
.flow-strip b,
.flow-strip strong {
  min-height: 28px;
  border-radius: 6px;
}

.flow-strip span {
  color: #adc0cc;
  background: rgba(255, 255, 255, 0.055);
}

.flow-strip i {
  width: 22px;
  height: 1px;
  background: #ff8500;
}

.flow-strip b {
  color: #150901;
  background: #ff8500;
}

.flow-strip strong {
  color: #bdf4ff;
  background: rgba(35, 215, 255, 0.12);
}

.app-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 133, 0, 0.4);
  border-radius: 8px;
  transform: rotateX(8deg) rotateZ(-2.6deg);
  transform-origin: 50% 60%;
  background:
    linear-gradient(140deg, rgba(255, 133, 0, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(18, 36, 53, 0.98), rgba(7, 17, 28, 0.98));
  box-shadow:
    0 44px 120px rgba(0, 0, 0, 0.48),
    0 0 70px rgba(255, 122, 24, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.app-window::before {
  position: absolute;
  inset: 12px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 6px;
  background:
    linear-gradient(rgba(255, 133, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 133, 0, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  content: "";
}

.app-window::after {
  top: -40%;
  bottom: -40%;
  left: -36%;
  width: 20%;
  background: linear-gradient(90deg, transparent, rgba(255, 133, 0, 0.24), rgba(35, 215, 255, 0.16), transparent);
  animation: scanBeam 5.6s ease-in-out infinite;
}

.window-top,
.mock-top-nav,
.mock-main,
.summary-grid article,
.drop-zone,
.file-row,
.status-panel {
  position: relative;
  z-index: 1;
}

.window-top,
.mock-top-nav {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(4, 11, 19, 0.64);
}

.window-top span:nth-child(1) {
  background: #ff4f65;
}

.window-top span:nth-child(2) {
  background: #ff8500;
}

.window-top span:nth-child(3) {
  background: #23d7ff;
}

.window-top p,
.mock-toolbar p,
.summary-grid span,
.file-row strong,
.status-panel span,
.status-panel p,
.card-icon,
.steps span,
.resource-card span,
.pricing-card-head span {
  color: #94a7b6;
  font-family: var(--mono-font);
  font-weight: 700;
  text-transform: uppercase;
}

.mock-top-nav {
  gap: 6px;
  padding: 12px 14px;
}

.mock-top-nav a {
  border: 1px solid transparent;
  border-radius: 6px;
  color: #8395a4;
  background: transparent;
}

.mock-top-nav a.active,
.mock-top-nav a:hover {
  color: #fff5e8;
  border-color: rgba(255, 133, 0, 0.34);
  background: rgba(255, 133, 0, 0.09);
  box-shadow: none;
}

.mock-main {
  padding: 24px;
  background: transparent;
}

.mock-toolbar h2 {
  color: #f8fbff;
  font-size: 30px;
}

.mock-toolbar button {
  border: 1px solid rgba(255, 176, 96, 0.62);
  border-radius: 8px;
  color: #170b03;
  background: linear-gradient(180deg, #ffad5e, #ff7417);
  box-shadow: 0 12px 28px rgba(255, 122, 24, 0.22);
  font-family: var(--mono-font);
  font-weight: 700;
}

.summary-grid article,
.drop-zone,
.file-row,
.status-panel,
.feature-card,
.team-card,
.security-grid article,
.steps article,
.comparison-table,
.integration-panel,
.pricing-card,
.credit-rules,
.credit-rule-grid article,
.topup-card,
.faq-item,
.resource-card,
.legal-section,
.third-party-notice p {
  border-color: rgba(255, 133, 0, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(12, 24, 36, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 62px rgba(0, 0, 0, 0.18);
}

.summary-grid article {
  min-height: 92px;
}

.summary-grid strong {
  color: #f8fbff;
  font-family: var(--display-font);
  font-size: 42px;
  line-height: 0.95;
}

.status-panel {
  min-height: 182px;
  overflow: hidden;
  border-color: rgba(35, 215, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(35, 215, 255, 0.1), transparent 48%),
    rgba(8, 18, 29, 0.86);
}

.status-panel::before {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background:
    conic-gradient(from -40deg, #ff8500 0 70%, rgba(255, 255, 255, 0.1) 70% 100%);
  box-shadow: 0 0 36px rgba(255, 133, 0, 0.22);
  content: "";
}

.status-panel::after {
  position: absolute;
  right: 36px;
  bottom: 36px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #08121d;
  content: "";
}

.status-panel strong {
  position: relative;
  z-index: 1;
  color: #ff8a1f;
  font-family: var(--display-font);
  text-shadow: 0 0 28px rgba(255, 133, 0, 0.32);
}

.drop-zone {
  border-style: dashed;
  border-color: rgba(255, 133, 0, 0.46);
  background:
    linear-gradient(135deg, rgba(255, 133, 0, 0.12), rgba(35, 215, 255, 0.05)),
    rgba(10, 23, 35, 0.82);
}

.drop-icon {
  border-radius: 8px;
  color: #120801;
  background: linear-gradient(180deg, #ffad5e, #ff7417);
  box-shadow: 0 12px 24px rgba(255, 122, 24, 0.24);
}

.drop-zone h3,
.file-row p {
  color: #f7fbff;
}

.drop-zone p,
.file-row strong,
.feature-card p,
.team-card p,
.steps p,
.security-grid p,
.integration-panel p,
.faq-item p,
.resource-card p,
.legal-section p,
.pricing-card-head p,
.billed-line,
.pricing-card li,
.credit-rules p,
.topups-heading p,
.topup-card p,
.topup-card small {
  color: #9dafbb;
}

.file-row {
  background: rgba(255, 255, 255, 0.035);
}

.file-row:hover,
.feature-card:hover,
.team-card:hover,
.security-grid article:hover,
.steps article:hover,
.pricing-card:hover,
.resource-card:hover,
.faq-item:hover {
  border-color: rgba(255, 133, 0, 0.54);
  transform: translateY(-4px);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.28),
    0 0 42px rgba(255, 133, 0, 0.12);
}

.doc-type {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: #f8fbff;
}

.doc-type.bill {
  background: rgba(35, 215, 255, 0.14);
}

.doc-type.income {
  background: rgba(255, 133, 0, 0.18);
}

.doc-type.statement {
  background: rgba(255, 79, 101, 0.16);
}

.pain,
.features,
.workflow,
.comparison,
.teams,
.security {
  padding: 104px 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 36px;
}

.feature-card,
.team-card,
.security-grid article,
.steps article,
.pricing-card,
.resource-card,
.faq-item,
.legal-section,
.topup-card {
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card::before,
.team-card::before,
.security-grid article::before,
.steps article::before,
.pricing-card::before,
.resource-card::before,
.faq-item::before,
.legal-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff8500, rgba(255, 133, 0, 0), #23d7ff);
  content: "";
}

.feature-card h3,
.team-card h3,
.security-grid h3,
.steps h3,
.faq-item h2,
.resource-card h2,
.legal-section h2,
.pricing-card-head h2 {
  color: #f8fbff;
}

.card-icon {
  min-width: 48px;
  height: 34px;
  border: 1px solid rgba(255, 133, 0, 0.36);
  border-radius: 6px;
  color: #ffd8b4;
  background: rgba(255, 133, 0, 0.11);
  box-shadow: none;
}

.solution {
  position: relative;
  padding: 84px 0;
  border-top: 1px solid rgba(255, 133, 0, 0.25);
  border-bottom: 1px solid rgba(255, 133, 0, 0.25);
}

.solution::before {
  position: absolute;
  inset: 22px auto 22px 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 133, 0, 0.4), transparent);
  content: "";
}

.process-line::before {
  top: 31px;
  background: linear-gradient(90deg, #ff8500, #23d7ff, #ff4f65);
  box-shadow: 0 0 24px rgba(255, 133, 0, 0.22);
}

.process-line span {
  border-color: #07111c;
  color: #130801;
  background: linear-gradient(180deg, #ffad5e, #ff7417);
  box-shadow:
    0 0 0 1px rgba(255, 133, 0, 0.28),
    0 18px 34px rgba(255, 122, 24, 0.18);
}

.process-line p {
  color: #d9e7f3;
}

.workflow {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 133, 0, 0.05), rgba(35, 215, 255, 0.035)),
    #0a1622;
  box-shadow: 0 0 0 100vmax #0a1622;
}

.steps span {
  color: #ff9d43;
}

.team-card.accent,
.pricing-card.featured {
  color: #f7fbff;
  border-color: rgba(255, 133, 0, 0.52);
  background:
    linear-gradient(140deg, rgba(255, 133, 0, 0.24), rgba(255, 133, 0, 0.04) 46%, rgba(35, 215, 255, 0.08)),
    rgba(13, 27, 40, 0.94);
  box-shadow:
    0 28px 82px rgba(255, 122, 24, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.team-card.accent h3,
.team-card.accent p {
  color: #f7fbff;
}

.comparison-table {
  border-color: rgba(255, 133, 0, 0.28);
  background: rgba(10, 22, 34, 0.9);
  box-shadow: var(--hard-shadow);
}

.table-row {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.table-row span {
  border-right-color: rgba(255, 255, 255, 0.08);
  color: #9dafbb;
}

.table-row span:last-child {
  color: #f7fbff;
}

.table-head {
  background:
    linear-gradient(90deg, rgba(255, 133, 0, 0.86), rgba(255, 116, 23, 0.56)),
    #140902;
}

.table-head span,
.table-head span:last-child {
  color: #140902;
}

.security {
  border-top-color: rgba(255, 133, 0, 0.24);
}

.integration-panel {
  grid-template-columns: repeat(3, 1fr);
  border-color: rgba(35, 215, 255, 0.2);
  background:
    linear-gradient(130deg, rgba(35, 215, 255, 0.1), rgba(255, 133, 0, 0.04)),
    rgba(12, 24, 36, 0.86);
  box-shadow: var(--hard-shadow);
}

.integration-panel span {
  min-height: 94px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #bdf4ff;
  background: rgba(35, 215, 255, 0.08);
  font-family: var(--display-font);
  font-size: 32px;
}

.integration-panel p {
  grid-column: 1 / -1;
}

.final-cta {
  position: relative;
  overflow: hidden;
  gap: 28px;
  margin-bottom: 44px;
  padding: 52px;
  border: 1px solid rgba(255, 133, 0, 0.58);
  border-radius: 8px;
  color: #f7fbff;
  background:
    linear-gradient(118deg, rgba(255, 133, 0, 0.28), rgba(255, 133, 0, 0.04) 42%, rgba(35, 215, 255, 0.1)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    #07111c;
  background-size: auto, 26px 26px, auto;
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.34),
    0 0 72px rgba(255, 122, 24, 0.14);
}

.final-cta::after {
  top: 16px;
  right: 28px;
  width: 210px;
  height: 210px;
  border-color: rgba(255, 133, 0, 0.2);
  border-radius: 8px;
}

.final-cta .eyebrow {
  color: #ffbf7a;
  background: rgba(255, 133, 0, 0.12);
}

.final-cta h2 {
  color: #f7fbff;
}

.final-cta .button-primary {
  border-color: rgba(255, 176, 96, 0.9);
  color: #160a02;
  background: linear-gradient(180deg, #ffad5e, #ff7417);
}

.site-footer {
  border-top-color: rgba(255, 133, 0, 0.2);
}

.footer-brand p,
.footer-links span,
.footer-links a {
  color: #9dafbb;
}

.footer-brand .footer-company,
.footer-links h3 {
  color: #f7fbff;
}

.footer-contact,
.footer-links a:hover {
  color: #ff9d43;
}

.legal-content,
.faq-content,
.resource-content {
  padding: 42px 0 104px;
}

.legal-updated,
.pricing-note {
  border-color: rgba(255, 133, 0, 0.34);
  color: #ffbf7a;
  background: rgba(255, 133, 0, 0.08);
}

.third-party-notice p {
  border-left: 3px solid #ff8500;
  color: #d9e7f3;
}

.billing-block {
  padding: 40px 0 104px;
}

.billing-tabs {
  gap: 5px;
  padding: 5px;
  border-color: rgba(255, 133, 0, 0.24);
  background: rgba(255, 255, 255, 0.035);
}

.billing-tabs button {
  min-height: 38px;
  border-radius: 6px;
  color: #a6b5c1;
  font: inherit;
  cursor: pointer;
}

.billing-tabs .active {
  color: #150901;
  background: linear-gradient(180deg, #ffad5e, #ff7417);
  box-shadow: 0 12px 26px rgba(255, 122, 24, 0.2);
}

.pricing-section {
  gap: 18px;
}

.pricing-card {
  min-height: 440px;
  padding: 32px;
}

.price-line strong {
  color: #f7fbff;
  font-family: var(--display-font);
}

.price-line span {
  color: #9dafbb;
}

.pricing-card li::before {
  color: #23d7ff;
}

.pricing-card-head span {
  border: 1px solid rgba(255, 133, 0, 0.4);
  border-radius: 6px;
  color: #160a02;
  background: #ff8500;
}

.credit-rules {
  border-color: rgba(35, 215, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(35, 215, 255, 0.11), rgba(255, 133, 0, 0.04)),
    rgba(12, 24, 36, 0.82);
}

.credit-rule-grid article {
  border-color: rgba(255, 255, 255, 0.08);
}

.credit-rule-grid h3,
.topup-card h3,
.topup-card h3 span,
.topups-heading h2,
.credit-rules h2 {
  color: #f7fbff;
}

.topup-card a {
  min-width: 78px;
  min-height: 40px;
  border: 1px solid rgba(255, 133, 0, 0.4);
  border-radius: 8px;
  color: #160a02;
  background: #ff8500;
}

.hero-copy,
.section-heading,
.solution-copy,
.page-hero > div,
.features,
.workflow,
.teams,
.comparison,
.security,
.final-cta {
  animation: riseIn 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }

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

@keyframes scanBeam {
  0%,
  34% {
    transform: translateX(0) rotate(18deg);
  }

  76%,
  100% {
    transform: translateX(820%) rotate(18deg);
  }
}

@media (max-width: 1120px) {
  #site-header {
    z-index: 50;
  }

  .site-header {
    z-index: 60;
    justify-content: space-between;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    z-index: 100;
    display: none;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    padding: 10px;
    border: 1px solid rgba(255, 133, 0, 0.34);
    border-radius: 8px;
    background:
      linear-gradient(115deg, rgba(255, 133, 0, 0.14), transparent 42%),
      rgba(7, 17, 28, 0.96);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(22px) saturate(1.2);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    justify-content: center;
    text-align: center;
  }

  .desktop-language-switch {
    display: none;
  }

  .mobile-language-switch {
    display: inline-flex;
    justify-content: space-between;
    grid-column: 1 / -1;
    min-height: 44px;
    margin-top: 4px;
  }

  .menu-toggle {
    display: inline-grid;
    position: relative;
    z-index: 110;
    flex: 0 0 auto;
    margin-left: auto;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 133, 0, 0.42);
    border-radius: 8px;
    background: rgba(255, 133, 0, 0.08);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #ffad5e;
    transition: transform 180ms ease, opacity 180ms ease;
  }

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

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

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

@media (max-width: 980px) {
  .site-header {
    width: min(100% - 28px, 1240px);
    margin-top: 0;
  }

  .hero,
  .page-hero {
    grid-template-columns: 1fr;
    padding-top: 56px;
  }

  .hero {
    min-height: auto;
  }

  .product-visual {
    max-width: 760px;
    margin: 20px auto 0;
  }

  .app-window {
    transform: rotateX(5deg) rotateZ(-1.2deg);
  }

  .solution::before {
    display: none;
  }

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

@media (max-width: 680px) {
  .site-header,
  .section-band {
    width: min(100% - 24px, 1240px);
  }

  .site-header {
    min-height: 66px;
    padding: 10px;
  }

  .brand-logo {
    width: 152px;
  }

  .header-actions {
    display: none;
  }

  .site-nav {
    grid-template-columns: 1fr;
  }

  .site-nav a {
    min-height: 42px;
  }

  .language-switch {
    position: relative;
    z-index: 2;
    min-height: 38px;
  }

  .language-switch select {
    min-width: 54px;
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 60px;
  }

  .page-hero,
  .page-hero.compact {
    padding-top: 52px;
  }

  .hero-copy::before,
  .page-hero > div::before {
    top: -16px;
    left: -12px;
    width: 56px;
    height: 56px;
  }

  h1 {
    font-size: clamp(50px, 17vw, 72px);
    line-height: 0.92;
  }

  .page-hero h1 {
    font-size: clamp(40px, 13vw, 62px);
  }

  h2 {
    font-size: clamp(34px, 10vw, 50px);
  }

  .hero-lede {
    font-size: 21px;
  }

  .hero-detail,
  .page-hero p:not(.eyebrow),
  .section-heading p,
  .solution-copy p,
  .security-copy p {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .product-visual::before {
    inset: -16px -8px 16px 8px;
    transform: rotate(-0.6deg);
  }

  .product-visual::after {
    display: none;
  }

  .product-visual {
    --mock-scale: 0.64;
    width: 100%;
    max-width: 640px;
    height: 420px;
    margin: 20px 0 0;
  }

  .flow-strip {
    position: absolute;
    top: -34px;
    right: 28px;
    flex-wrap: nowrap;
    max-width: calc(100% - 40px);
    margin-bottom: 0;
    transform: scale(var(--mock-scale));
    transform-origin: top right;
  }

  .app-window {
    width: 640px;
    transform: scale(var(--mock-scale));
    transform-origin: top left;
  }

  .mock-main {
    padding: 24px;
  }

  .mock-content {
    grid-template-columns: minmax(0, 1.12fr) minmax(180px, 0.88fr);
  }

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

  .three-column,
  .feature-grid,
  .steps,
  .security-grid,
  .legal-content,
  .faq-content,
  .resource-content,
  .pricing-section,
  .credit-rules,
  .credit-rule-grid,
  .topup-grid,
  .integration-panel {
    grid-template-columns: 1fr;
  }

  .pain,
  .features,
  .workflow,
  .comparison,
  .teams,
  .security {
    padding: 68px 0;
  }

  .solution {
    padding: 62px 0;
  }

  .final-cta {
    padding: 30px 22px;
  }

  .pricing-card {
    min-height: auto;
    padding: 24px;
  }

  .billing-block,
  .legal-content,
  .faq-content,
  .resource-content {
    padding-bottom: 68px;
  }

  .drop-zone,
  .file-row {
    align-items: center;
    flex-direction: row;
  }

  .topup-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .product-visual {
    --mock-scale: 0.55;
    height: 360px;
  }
}

@media (max-width: 360px) {
  .product-visual {
    --mock-scale: 0.46;
    height: 310px;
  }
}
