:root {
  --bg: #030506;
  --bg-soft: #07100f;
  --surface: #0a1414;
  --surface-strong: #101d1c;
  --line: rgba(227, 252, 248, 0.13);
  --glass: rgba(5, 13, 13, 0.14);
  --glass-strong: rgba(7, 18, 18, 0.22);
  --glass-soft: rgba(255, 255, 255, 0.026);
  --glass-line: rgba(221, 255, 249, 0.2);
  --text: #f8fafc;
  --muted: #a9b5c8;
  --cyan: #45f2e4;
  --blue: #8ba7ff;
  --green: #77f7ad;
  --amber: #ffd166;
  --danger: #fca5a5;
  --radius: 8px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(118deg, rgba(69, 242, 228, 0.06), transparent 28%),
    linear-gradient(252deg, rgba(255, 209, 102, 0.04), transparent 32%),
    linear-gradient(180deg, #030506 0%, #06100f 46%, #030506 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 78%);
  pointer-events: none;
}
a { color: inherit; text-decoration: none; }
p { color: var(--muted); }
h1, h2, h3, p { overflow-wrap: break-word; }
img { display: block; max-width: 100%; height: auto; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 780px; }
.text-center { text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(226, 241, 255, 0.13);
  background: rgba(3, 7, 9, 0.82);
  backdrop-filter: blur(22px) saturate(150%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset, 0 18px 70px rgba(0, 0, 0, 0.28);
}
.nav-wrap { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #dffefa, var(--cyan) 54%, #77f7ad);
  color: #031313;
  font-weight: 900;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22) inset, 0 18px 42px rgba(25, 216, 246, 0.18);
}
.brand strong { display: block; font-size: 18px; letter-spacing: 0; }
.brand small { display: block; margin-top: -4px; color: var(--muted); font-size: 11px; }
.desktop-nav { display: flex; align-items: center; gap: 4px; }
.nav-link { display: inline-flex; padding: 10px 12px; border-radius: var(--radius); color: #dbe5e8; font-weight: 760; font-size: 14px; }
.nav-link:hover, .nav-link.active { color: var(--cyan); background: rgba(255, 255, 255, 0.06); }
.nav-dropdown { position: relative; }
.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 380px;
  display: none;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--glass-line);
  border-radius: 10px;
  background: rgba(4, 10, 12, 0.88);
  backdrop-filter: blur(24px) saturate(150%);
  box-shadow: var(--shadow), 0 1px 0 rgba(255, 255, 255, 0.15) inset;
}
.nav-dropdown:hover .dropdown-panel { display: grid; }
.dropdown-panel a { display: grid; grid-template-columns: 38px 1fr; gap: 0 10px; padding: 12px; border-radius: var(--radius); background: rgba(255, 255, 255, 0.028); border: 1px solid rgba(255, 255, 255, 0.035); }
.dropdown-panel a:hover { background: rgba(69, 242, 228, 0.07); }
.dropdown-panel span { grid-row: span 2; color: var(--cyan); font-weight: 900; }
.dropdown-panel small { color: var(--muted); }
.mobile-toggle, .mobile-nav { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  border-color: rgba(128, 235, 255, 0.26);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 32%),
    linear-gradient(135deg, rgba(69, 242, 228, 0.16), rgba(119, 247, 173, 0.06)),
    rgba(4, 13, 13, 0.72);
  color: #eaffff;
  text-shadow: 0 1px 10px rgba(4, 19, 33, 0.42);
  backdrop-filter: blur(24px) saturate(175%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 0 0 1px rgba(255, 255, 255, 0.02) inset,
    0 18px 42px rgba(25, 216, 246, 0.045);
}
.btn-primary:hover {
  border-color: rgba(151, 240, 255, 0.3);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), transparent 34%),
    linear-gradient(135deg, rgba(25, 216, 246, 0.14), rgba(17, 183, 218, 0.075)),
    rgba(5, 14, 26, 0.34);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 0 0 1px rgba(255, 255, 255, 0.026) inset,
    0 22px 52px rgba(25, 216, 246, 0.07);
}
.btn-outline { border-color: rgba(224, 242, 255, 0.22); background: rgba(4, 10, 12, 0.54); color: var(--text); backdrop-filter: blur(22px) saturate(150%); }
.btn-outline:hover { border-color: rgba(69, 242, 228, 0.42); color: #e9fffc; background: rgba(69, 242, 228, 0.08); }
.btn.full { width: 100%; }

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 76px 0 84px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 18% 3% 10% 36%;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(69, 242, 228, 0.12), transparent 34%),
    linear-gradient(300deg, rgba(255, 209, 102, 0.055), transparent 40%);
  filter: blur(16px);
  opacity: 0.42;
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 60%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(69, 242, 228, 0.05), transparent 68%);
  filter: none;
}
.grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 82%);
  opacity: 0.24;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(500px, 1.16fr);
  gap: 46px;
  align-items: center;
  text-align: left;
}
.hero-grid > * { min-width: 0; }
.hero-copy { max-width: 650px; }
.hero .reveal {
  opacity: 1;
  transform: none;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 11px;
  border: 1px solid rgba(128, 235, 255, 0.18);
  border-radius: 999px;
  background: rgba(4, 12, 12, 0.6);
  color: #b8fff8;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.045) inset, 0 18px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(34px) saturate(175%);
}
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: 0; }
.hero h1 { margin-bottom: 20px; font-size: clamp(50px, 5.6vw, 76px); }
.page-hero h1 { margin-bottom: 22px; font-size: clamp(38px, 4.6vw, 56px); }
.hero h1 { max-width: 680px; line-height: 0.98; text-shadow: 0 18px 60px rgba(0, 0, 0, 0.42); }
.hero p, .page-hero p { margin-bottom: 28px; font-size: clamp(17px, 2vw, 20px); }
.hero p { max-width: 640px; color: #dce8f6; }
.hero-actions, .row-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: flex-start; }
.hero-actions .btn { max-width: 100%; min-width: 0; text-align: center; white-space: normal; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(226, 241, 255, 0.13);
  border-radius: 999px;
  background: rgba(4, 12, 12, 0.54);
  color: #cfd9e8;
  font-size: 13px;
  font-weight: 800;
}

.hero-media {
  position: relative;
  min-width: 0;
}
.hero-media-mobile {
  display: none;
}
.hero-picture-frame {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(203, 213, 225, 0.16);
  border-radius: 24px;
  background: #071321;
  box-shadow: 0 42px 130px rgba(0, 0, 0, 0.42), 0 1px 0 rgba(255, 255, 255, 0.08) inset;
  isolation: isolate;
}
.hero-picture-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(203, 213, 225, 0.1);
  border-radius: 18px;
  pointer-events: none;
}
.hero-picture-frame img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
  filter: saturate(0.95) contrast(1.04);
}
.hero-picture-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 13, 25, 0.36), transparent 34%, rgba(5, 13, 25, 0.18)),
    linear-gradient(180deg, rgba(5, 13, 25, 0.02), transparent 42%, rgba(5, 13, 25, 0.72));
  pointer-events: none;
}
.hero-picture-rail {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.hero-picture-rail span {
  display: grid;
  gap: 2px;
  min-height: 76px;
  align-content: center;
  padding: 13px;
  border: 1px solid rgba(203, 213, 225, 0.16);
  border-radius: 12px;
  background: rgba(4, 12, 23, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}
.hero-picture-rail strong {
  color: #f8fbff;
  font-size: 13px;
  line-height: 1.15;
}
.hero-picture-rail small {
  color: #aebcd0;
  font-size: 11px;
  line-height: 1.35;
}
.mobile-hero-picture {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.45;
  border: 1px solid rgba(203, 213, 225, 0.16);
  border-radius: 20px;
  background: #071321;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34), 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}
.mobile-hero-picture::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 13, 25, 0.04), transparent 48%, rgba(5, 13, 25, 0.52)),
    radial-gradient(circle at 12% 12%, rgba(25, 216, 246, 0.14), transparent 36%);
  pointer-events: none;
}
.mobile-hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.94;
}
.mobile-product-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}
.mobile-product-strip span {
  display: grid;
  place-items: center;
  min-height: 38px;
  padding: 7px 6px;
  border: 1px solid rgba(203, 213, 225, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #dce8f6;
  font-size: 12px;
  font-weight: 850;
}
.screen-showcase {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(226, 241, 255, 0.12);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 30%),
    linear-gradient(180deg, rgba(69, 242, 228, 0.035), transparent 62%),
    rgba(4, 11, 12, 0.22);
  backdrop-filter: blur(56px) saturate(170%);
  box-shadow: 0 44px 150px rgba(0, 0, 0, 0.56), 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 0 0 1px rgba(255, 255, 255, 0.018) inset;
  isolation: isolate;
}
.hero-screen-showcase {
  min-height: 560px;
  transform-style: preserve-3d;
  perspective: 1200px;
}
.screen-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 42% 38%, #000, transparent 74%);
  opacity: 0.36;
}
.screen-showcase::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: -1;
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 30%),
    linear-gradient(300deg, rgba(119, 247, 173, 0.04), transparent 45%);
  filter: none;
}
.product-screen {
  position: absolute;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(226, 241, 255, 0.13);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 32%),
    linear-gradient(180deg, rgba(69, 242, 228, 0.03), transparent 72%),
    rgba(4, 11, 12, 0.28);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.46), 0 1px 0 rgba(255, 255, 255, 0.08) inset, 0 0 0 1px rgba(255, 255, 255, 0.018) inset;
  backdrop-filter: blur(52px) saturate(195%);
  isolation: isolate;
}
.screen-operations {
  top: 58px;
  left: 24px;
  z-index: 2;
  width: 61%;
  min-height: 360px;
  transform: rotateY(-8deg) rotateX(2deg);
  transform-origin: left center;
}
.screen-books {
  top: 34px;
  right: 26px;
  z-index: 4;
  width: 38%;
  min-height: 206px;
}
.screen-tax {
  right: 36px;
  bottom: 76px;
  z-index: 4;
  width: 39%;
  min-height: 210px;
}
.screen-access {
  left: 54px;
  bottom: 34px;
  z-index: 5;
  width: 38%;
  min-height: 142px;
  transform: translateZ(34px);
}
.screen-toolbar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(226, 241, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #eaf6ff;
  font-size: 12px;
  font-weight: 900;
}
.screen-toolbar strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.screen-toolbar em {
  margin-left: auto;
  padding: 4px 7px;
  border: 1px solid rgba(25, 216, 246, 0.22);
  border-radius: 999px;
  color: #9ff4ff;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}
.window-dot {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(203, 213, 225, 0.42);
}
.window-dot:nth-child(1) { background: rgba(25, 216, 246, 0.78); }
.window-dot:nth-child(2) { background: rgba(55, 211, 145, 0.74); }
.window-dot:nth-child(3) { background: rgba(248, 199, 97, 0.72); }
.screen-content {
  display: grid;
  gap: 16px;
  padding: 18px;
}
.screen-content > * { min-width: 0; }
.command-summary,
.mini-summary {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}
.command-summary span,
.mini-summary span,
.metric-cards span {
  color: #aebcd0;
  font-size: 12px;
  font-weight: 850;
}
.command-summary strong {
  color: #f8fbff;
  font-size: 44px;
  line-height: 1;
}
.mini-summary {
  align-items: start;
  flex-direction: column;
  gap: 4px;
}
.mini-summary strong {
  color: #f8fbff;
  font-size: 18px;
  line-height: 1.12;
}
.metric-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.metric-cards div {
  min-height: 94px;
  display: grid;
  align-content: space-between;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(226, 241, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.038);
}
.metric-cards strong {
  color: #f8fbff;
  font-size: 28px;
  line-height: 1;
}
.metric-cards small {
  color: rgba(169, 181, 200, 0.85);
  font-size: 11px;
  font-weight: 750;
}
.workflow-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  align-items: end;
  min-height: 96px;
}
.workflow-map span {
  position: relative;
  border-radius: 999px 999px 5px 5px;
  background: linear-gradient(180deg, rgba(69, 242, 228, 0.88), rgba(139, 167, 255, 0.16));
  box-shadow: 0 18px 38px rgba(25, 216, 246, 0.12);
}
.workflow-map span:nth-child(1) { height: 36px; }
.workflow-map span:nth-child(2) { height: 62px; background: linear-gradient(180deg, rgba(119, 247, 173, 0.82), rgba(119, 247, 173, 0.12)); }
.workflow-map span:nth-child(3) { height: 48px; background: linear-gradient(180deg, rgba(255, 209, 102, 0.85), rgba(255, 209, 102, 0.12)); }
.workflow-map span:nth-child(4) { height: 78px; }
.compact-screen {
  gap: 14px;
  padding: 15px;
}
.ledger-lines,
.tax-steps {
  display: grid;
  gap: 9px;
}
.ledger-lines span {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(25, 216, 246, 0.72), rgba(255, 255, 255, 0.08));
}
.ledger-lines span:nth-child(2) { width: 72%; background: linear-gradient(90deg, rgba(55, 211, 145, 0.68), rgba(255, 255, 255, 0.08)); }
.ledger-lines span:nth-child(3) { width: 86%; background: linear-gradient(90deg, rgba(248, 199, 97, 0.68), rgba(255, 255, 255, 0.08)); }
.ledger-lines span:nth-child(4) { width: 56%; }
.tax-steps {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.tax-steps span {
  min-height: 56px;
  border: 1px solid rgba(226, 241, 255, 0.16);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 30%, rgba(25, 216, 246, 0.4), transparent 22%),
    rgba(255, 255, 255, 0.04);
}
.tax-steps span:nth-child(2) { background: radial-gradient(circle at 50% 30%, rgba(55, 211, 145, 0.38), transparent 22%), rgba(255, 255, 255, 0.04); }
.tax-steps span:nth-child(3) { background: radial-gradient(circle at 50% 30%, rgba(248, 199, 97, 0.38), transparent 22%), rgba(255, 255, 255, 0.04); }
.access-stack {
  display: grid;
  gap: 9px;
}
.access-stack span {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(25, 216, 246, 0.76), rgba(255, 255, 255, 0.08));
}
.access-stack span:nth-child(2) {
  width: 78%;
  background: linear-gradient(90deg, rgba(55, 211, 145, 0.7), rgba(255, 255, 255, 0.08));
}
.access-stack span:nth-child(3) {
  width: 58%;
  background: linear-gradient(90deg, rgba(248, 199, 97, 0.72), rgba(255, 255, 255, 0.08));
}
.screen-ai-flow {
  position: absolute;
  left: 26%;
  right: 20%;
  bottom: 24px;
  z-index: 3;
  display: grid;
  grid-template-columns: 28px 1fr 28px 1fr 28px 1fr 28px;
  align-items: center;
  gap: 8px;
  min-height: 56px;
  padding: 12px;
  border: 1px solid rgba(226, 241, 255, 0.2);
  border-radius: 14px;
  background: rgba(5, 13, 25, 0.24);
  backdrop-filter: blur(36px) saturate(180%);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.36);
}
.screen-ai-flow span {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(25, 216, 246, 0.34);
  border-radius: 9px;
  background:
    radial-gradient(circle at 50% 50%, rgba(25, 216, 246, 0.52), transparent 34%),
    rgba(255, 255, 255, 0.05);
}
.screen-ai-flow span:nth-of-type(3) {
  border-color: rgba(55, 211, 145, 0.36);
  background:
    radial-gradient(circle at 50% 50%, rgba(55, 211, 145, 0.44), transparent 34%),
    rgba(255, 255, 255, 0.05);
}
.screen-ai-flow span:nth-of-type(4) {
  border-color: rgba(248, 199, 97, 0.38);
  background:
    radial-gradient(circle at 50% 50%, rgba(248, 199, 97, 0.48), transparent 34%),
    rgba(255, 255, 255, 0.05);
}
.screen-ai-flow i {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(25, 216, 246, 0.18), rgba(55, 211, 145, 0.72));
}
.hero-insight {
  position: absolute;
  right: -14px;
  bottom: 26px;
  width: min(270px, 44%);
  padding: 16px;
  border: 1px solid rgba(226, 241, 255, 0.13);
  border-radius: 12px;
  background: rgba(5, 13, 25, 0.32);
  backdrop-filter: blur(38px) saturate(180%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}
.hero-insight strong { display: block; margin-bottom: 4px; }
.hero-insight span { color: var(--muted); font-size: 13px; }
.section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}
.section::before {
  content: "";
  position: absolute;
  inset: 8% -10%;
  z-index: 0;
  background:
    linear-gradient(120deg, rgba(69, 242, 228, 0.035), transparent 34%),
    linear-gradient(300deg, rgba(255, 209, 102, 0.022), transparent 40%);
  filter: none;
  opacity: 0.42;
  pointer-events: none;
}
.section > .container {
  position: relative;
  z-index: 1;
}
.section.alt {
  background:
    linear-gradient(120deg, rgba(69, 242, 228, 0.026), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.008));
  border-block: 1px solid rgba(226, 241, 255, 0.08);
}
.section-heading { margin-bottom: 42px; }
.section-heading h2, .section h2 { font-size: clamp(30px, 4vw, 48px); }
.cards { display: grid; gap: 20px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card, .form-card, .info-card, .legal-card, .showcase-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), transparent 32%),
    rgba(4, 11, 12, 0.22);
  backdrop-filter: blur(46px) saturate(165%);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.42), 0 1px 0 rgba(255, 255, 255, 0.075) inset, 0 0 0 1px rgba(255, 255, 255, 0.018) inset;
}
.card::before, .form-card::before, .info-card::before, .legal-card::before, .showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), transparent 31%),
    linear-gradient(300deg, rgba(69, 242, 228, 0.04), transparent 46%);
  opacity: 0.72;
  pointer-events: none;
}
.card > *, .form-card > *, .info-card > *, .legal-card > *, .showcase-card > * {
  position: relative;
  z-index: 1;
}
.card { padding: 28px; }
.card h3 { margin-bottom: 10px; font-size: 23px; }
.card p:last-child { margin-bottom: 0; }
.kicker { color: var(--cyan); font-weight: 900; font-size: 13px; }
.status-pill {
  display: inline-flex;
  width: max-content;
  padding: 6px 9px;
  border: 1px solid rgba(25, 216, 246, 0.22);
  border-radius: var(--radius);
  background: rgba(25, 216, 246, 0.08);
  color: var(--cyan);
  font: 800 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}
.showcase-grid { display: grid; gap: 22px; }
.showcase-card { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding: 32px; align-items: center; }
.showcase-card:hover, .card:hover {
  border-color: rgba(128, 235, 255, 0.26);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.068), transparent 31%),
    rgba(5, 16, 16, 0.34);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48), 0 1px 0 rgba(255, 255, 255, 0.09) inset;
}
.mockup {
  min-height: 260px;
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(69, 242, 228, 0.055), transparent 35%),
    rgba(4, 11, 12, 0.34);
  backdrop-filter: blur(34px) saturate(170%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset;
}
.mockup-row { display: grid; grid-template-columns: 1fr 92px; gap: 12px; align-items: center; padding: 12px; border: 1px solid rgba(226, 241, 255, 0.1); border-radius: var(--radius); background: rgba(255, 255, 255, 0.026); }
.mockup-bar { height: 8px; border-radius: 999px; background: linear-gradient(90deg, var(--cyan), var(--blue)); }
.mockup-small { height: 8px; border-radius: 999px; background: rgba(203, 213, 225, 0.2); }
.mockup-status { color: var(--green); font-weight: 800; font-size: 12px; }
.workflow-lanes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.workflow-lane {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(224, 242, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 34%),
    linear-gradient(300deg, rgba(69, 242, 228, 0.05), transparent 46%),
    rgba(4, 11, 12, 0.24);
  backdrop-filter: blur(46px) saturate(190%);
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.34), 0 1px 0 rgba(255, 255, 255, 0.07) inset;
}
.workflow-lane::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(25, 216, 246, 0.8), rgba(55, 211, 145, 0.32), transparent);
}
.workflow-lane span {
  width: max-content;
  padding: 6px 9px;
  border: 1px solid rgba(25, 216, 246, 0.2);
  border-radius: 999px;
  background: rgba(25, 216, 246, 0.06);
  color: var(--cyan);
  font: 900 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}
.workflow-lane h3 {
  margin-bottom: 8px;
  font-size: 24px;
}
.workflow-lane p { margin: 0; }
.product-hero-layout {
  align-items: center;
}
.product-hero-layout > * {
  min-width: 0;
}
.product-hero-window {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(226, 241, 255, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 32%),
    linear-gradient(300deg, rgba(69, 242, 228, 0.054), transparent 42%),
    rgba(4, 11, 12, 0.24);
  backdrop-filter: blur(54px) saturate(195%);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.42), 0 1px 0 rgba(255, 255, 255, 0.08) inset;
  isolation: isolate;
}
.product-hero-window::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 48% 40%, #000, transparent 78%);
}
.product-hero-window::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border-radius: 16px;
  background:
    radial-gradient(circle at 24% 18%, rgba(25, 216, 246, 0.06), transparent 34%),
    radial-gradient(circle at 84% 76%, rgba(55, 211, 145, 0.045), transparent 30%);
  filter: blur(18px);
}
.product-window-toolbar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(226, 241, 255, 0.12);
  background: rgba(255, 255, 255, 0.028);
  color: #edf8ff;
  font-size: 13px;
  font-weight: 900;
}
.product-window-toolbar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(25, 216, 246, 0.74);
}
.product-window-toolbar span:nth-child(2) { background: rgba(55, 211, 145, 0.72); }
.product-window-toolbar span:nth-child(3) { background: rgba(248, 199, 97, 0.68); }
.product-window-toolbar strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-window-toolbar em {
  margin-left: auto;
  padding: 5px 8px;
  border: 1px solid rgba(25, 216, 246, 0.22);
  border-radius: 999px;
  color: #9ff4ff;
  font-size: 10px;
  font-style: normal;
}
.product-window-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 14px;
  padding: 18px;
  min-width: 0;
}
.product-window-grid > * { min-width: 0; }
.window-panel {
  min-height: 116px;
  display: grid;
  align-content: space-between;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(226, 241, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.026), transparent 34%),
    rgba(4, 11, 12, 0.32);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.045) inset;
  min-width: 0;
}
.window-panel-large {
  grid-row: span 2;
  min-height: 246px;
}
.window-panel-wide {
  grid-column: 1 / -1;
  min-height: 96px;
}
.window-label {
  color: #aebcd0;
  font-size: 12px;
  font-weight: 850;
}
.window-score {
  color: #f8fbff;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
}
.window-panel strong {
  color: #f8fbff;
  font-size: 34px;
  line-height: 1;
}
.window-panel small {
  color: rgba(169, 181, 200, 0.86);
  font-weight: 750;
}
.window-bars,
.ledger-preview {
  display: grid;
  gap: 9px;
}
.window-bars span,
.ledger-preview span,
.access-stack span {
  height: 10px;
  border-radius: 999px;
}
.window-bars span {
  background: linear-gradient(90deg, rgba(25, 216, 246, 0.74), rgba(255, 255, 255, 0.06));
}
.window-bars span:nth-child(2) { width: 72%; background: linear-gradient(90deg, rgba(55, 211, 145, 0.64), rgba(255, 255, 255, 0.06)); }
.window-bars span:nth-child(3) { width: 52%; background: linear-gradient(90deg, rgba(248, 199, 97, 0.62), rgba(255, 255, 255, 0.06)); }
.window-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: end;
  min-height: 56px;
}
.window-timeline span {
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, rgba(25, 216, 246, 0.68), rgba(25, 216, 246, 0.08));
}
.window-timeline span:nth-child(1) { height: 28px; }
.window-timeline span:nth-child(2) { height: 44px; background: linear-gradient(180deg, rgba(55, 211, 145, 0.64), rgba(55, 211, 145, 0.08)); }
.window-timeline span:nth-child(3) { height: 34px; background: linear-gradient(180deg, rgba(248, 199, 97, 0.62), rgba(248, 199, 97, 0.08)); }
.window-timeline span:nth-child(4) { height: 54px; }
.ledger-preview span {
  background: linear-gradient(90deg, rgba(25, 216, 246, 0.66), rgba(255, 255, 255, 0.05));
}
.ledger-preview span:nth-child(2) { width: 82%; background: linear-gradient(90deg, rgba(55, 211, 145, 0.62), rgba(255, 255, 255, 0.05)); }
.ledger-preview span:nth-child(3) { width: 94%; background: linear-gradient(90deg, rgba(248, 199, 97, 0.6), rgba(255, 255, 255, 0.05)); }
.ledger-preview span:nth-child(4) { width: 68%; }
.ledger-preview span:nth-child(5) { width: 76%; background: linear-gradient(90deg, rgba(91, 140, 255, 0.58), rgba(255, 255, 255, 0.05)); }
.report-rings,
.tax-flow-preview,
.entity-path {
  display: grid;
  gap: 10px;
}
.report-rings {
  grid-template-columns: repeat(3, 1fr);
}
.report-rings span,
.tax-flow-preview span {
  min-height: 54px;
  border: 1px solid rgba(226, 241, 255, 0.11);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 48%, rgba(25, 216, 246, 0.34), transparent 30%),
    rgba(255, 255, 255, 0.025);
}
.report-rings span:nth-child(2),
.tax-flow-preview span:nth-child(2) { background: radial-gradient(circle at 50% 48%, rgba(55, 211, 145, 0.3), transparent 30%), rgba(255, 255, 255, 0.025); }
.report-rings span:nth-child(3),
.tax-flow-preview span:nth-child(3) { background: radial-gradient(circle at 50% 48%, rgba(248, 199, 97, 0.3), transparent 30%), rgba(255, 255, 255, 0.025); }
.tax-flow-preview {
  grid-template-columns: repeat(2, 1fr);
}
.entity-path {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.entity-path span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid rgba(226, 241, 255, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.026);
  color: #dff8ff;
  font-weight: 900;
}
.detail-list {
  display: grid;
  gap: 7px;
}
.detail-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  color: rgba(214, 226, 241, 0.82);
  font-size: 11px;
  font-weight: 800;
}
.detail-list b {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(55, 211, 145, 0.72);
  box-shadow: 0 0 18px rgba(55, 211, 145, 0.18);
}
.mini-data-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}
.mini-data-grid span {
  display: grid;
  place-items: center;
  min-height: 30px;
  border: 1px solid rgba(226, 241, 255, 0.1);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.024);
  color: rgba(220, 232, 246, 0.82);
  font-size: 10px;
  font-weight: 850;
}
.transaction-table {
  display: grid;
  grid-template-columns: 1fr 1fr 52px;
  gap: 6px;
}
.transaction-table span {
  min-height: 24px;
  display: flex;
  align-items: center;
  padding: 4px 7px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.024);
  color: rgba(220, 232, 246, 0.8);
  font-size: 10px;
  font-weight: 800;
}
.transaction-table span:nth-child(-n+3) {
  color: rgba(159, 244, 255, 0.86);
  background: rgba(25, 216, 246, 0.045);
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 122px 0 64px;
  border-bottom: 1px solid rgba(226, 241, 255, 0.08);
  background:
    radial-gradient(circle at 50% 0%, rgba(25, 216, 246, 0.06), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .narrow { text-align: center; margin-inline: auto; }
.page-hero .eyebrow { margin-left: auto; margin-right: auto; }
.split { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 42px; align-items: start; }
.list { display: grid; gap: 12px; padding: 0; margin: 22px 0; list-style: none; color: #dbe5f2; }
.list li { padding-left: 24px; position: relative; }
.list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.timeline { display: grid; gap: 18px; }
.timeline-item { display: grid; grid-template-columns: 120px 1fr; gap: 20px; }
.timeline-status { color: var(--cyan); font-weight: 900; font-size: 13px; }

form { display: grid; gap: 18px; }
.form-card, .info-card, .legal-card { padding: 30px; }
.contact-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 28px; align-items: start; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label, legend { color: #e8eef7; font-weight: 800; }
input, textarea, select {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  border: 1px solid rgba(226, 241, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(3, 10, 19, 0.31);
  color: var(--text);
  font: inherit;
  backdrop-filter: blur(24px) saturate(165%);
}
input:focus, textarea:focus, select:focus { outline: 2px solid rgba(25, 216, 246, 0.26); border-color: rgba(25, 216, 246, 0.55); }
fieldset { display: grid; gap: 10px; padding: 0; margin: 0; border: 0; }
.check { display: flex; align-items: center; gap: 10px; color: var(--muted); font-weight: 600; }
.check input { width: auto; margin: 0; }
.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.form-status { margin: 0; text-align: center; }
.form-status.error { color: var(--danger); }
.success-box { text-align: center; padding: 28px 8px; }
.success-box .ok { width: 62px; height: 62px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 50%; background: rgba(55, 211, 145, 0.12); color: var(--green); font-size: 32px; }
.fine-print { font-size: 13px; color: var(--muted); }
.legal-card h2 { margin-top: 34px; font-size: 25px; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card a, .info-card a { color: var(--cyan); }

.site-footer {
  border-top: 1px solid rgba(226, 241, 255, 0.08);
  padding: 34px 0 18px;
  background:
    radial-gradient(circle at 12% 0%, rgba(25, 216, 246, 0.032), transparent 26%),
    rgba(3, 9, 17, 0.32);
  backdrop-filter: blur(36px) saturate(175%);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
.footer-grid h4 { margin: 0 0 14px; }
.footer-links { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-links a { display: inline-block; color: #d3deeb; line-height: 1.35; }
.footer-links a:hover { color: var(--cyan); }
.footer-compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.footer-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-actions > a:not(.btn) {
  color: #d9e7f7;
  font-weight: 800;
}
.footer-actions > a:not(.btn):hover { color: var(--cyan); }
.footer-actions .btn {
  min-height: 40px;
  padding: 9px 14px;
}
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; margin-top: 34px; border-top: 1px solid rgba(226, 241, 255, 0.08); color: var(--muted); font-size: 13px; }
.footer-bottom div { display: flex; gap: 18px; }
.footer-bottom-simple {
  margin-top: 22px;
  padding-top: 18px;
}
.footer-bottom-simple p { margin: 0; }

.reveal { opacity: 1; transform: none; transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 940px) {
  .desktop-nav, .nav-cta { display: none; }
  .mobile-toggle {
    display: grid;
    gap: 5px;
    border: 1px solid rgba(221, 255, 249, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    padding: 10px;
  }
  .mobile-toggle span { width: 26px; height: 2px; background: var(--text); border-radius: 999px; }
  .mobile-nav {
    position: fixed;
    top: 84px;
    left: 16px;
    right: 16px;
    display: none;
    gap: 8px;
    max-height: calc(100vh - 104px);
    overflow-y: auto;
    padding: 12px;
    border: 1px solid rgba(221, 255, 249, 0.22);
    border-radius: 10px;
    background: #03080a;
    backdrop-filter: blur(18px) saturate(140%);
    box-shadow: 0 34px 110px rgba(0, 0, 0, 0.72), 0 0 0 100vmax rgba(0, 0, 0, 0.34), 0 1px 0 rgba(255, 255, 255, 0.12) inset;
  }
  .mobile-nav.open { display: grid; }
  .mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 12px 14px;
    border: 1px solid rgba(221, 255, 249, 0.1);
    border-radius: 8px;
    background: #071111;
    color: #f5fffd;
    font-weight: 850;
  }
  .mobile-nav a:not(.mobile-nav-primary):not(.mobile-nav-cta) {
    min-height: 40px;
    margin-left: 12px;
    color: #c9d8d7;
    font-size: 14px;
  }
  .mobile-nav a:hover { background: rgba(69, 242, 228, 0.08); color: var(--cyan); }
  .mobile-nav-primary {
    border-color: rgba(69, 242, 228, 0.22);
    background: rgba(69, 242, 228, 0.065);
  }
  .mobile-nav-cta {
    justify-content: center;
    margin-top: 4px;
    border-color: rgba(69, 242, 228, 0.34);
    background: linear-gradient(135deg, rgba(69, 242, 228, 0.16), rgba(119, 247, 173, 0.08));
    color: #effffc;
  }
  .hero { min-height: auto; padding: 70px 0 62px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-copy { max-width: 720px; margin: 0 auto; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-media-desktop { display: none; }
  .hero-media-mobile { display: block; width: min(100%, 720px); margin: 0 auto; }
  .screen-showcase { min-height: 500px; }
  .screen-operations { left: 24px; width: 66%; transform: rotateY(-6deg) rotateX(1deg); }
  .screen-books { right: 24px; width: 42%; }
  .screen-tax { right: 34px; width: 44%; }
  .screen-access { left: 34px; width: 42%; }
  .screen-ai-flow { left: 30%; right: 18%; }
  .hero-insight { display: none; }
  .hero-grid, .split, .showcase-card, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .cards.three, .cards.four { grid-template-columns: repeat(2, 1fr); }
  .product-hero-window { margin: 0 auto; }
  .workflow-lanes { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), 1160px); }
  .nav-wrap { min-height: 72px; }
  .mobile-nav { top: 80px; }
  .hero { padding: 42px 0 54px; }
  .hero-grid { gap: 24px; text-align: left; }
  .eyebrow { margin-bottom: 14px; font-size: 12px; }
  .hero h1 { max-width: none; margin-left: 0; margin-right: 0; margin-bottom: 16px; font-size: 37px; line-height: 1.02; }
  .page-hero h1 { font-size: 35px; line-height: 1.02; }
  .hero p { max-width: none; margin-left: 0; margin-right: 0; margin-bottom: 22px; font-size: 15px; }
  .page-hero .split {
    width: min(100%, 360px);
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .page-hero .split > .reveal:first-child {
    width: 100%;
  }
  .page-hero .split h1 {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    font-size: 34px;
  }
  .page-hero .split p {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    font-size: 15px;
  }
  .page-hero .split .btn {
    width: 100%;
  }
  .hero-copy,
  .hero-media,
  .hero-actions {
    width: min(100%, 360px);
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .row-actions { align-items: stretch; }
  .hero-actions .btn { width: 100%; min-height: 44px; padding: 10px 11px; font-size: 14px; }
  .row-actions .btn { width: 100%; }
  .hero-trust { display: flex; justify-content: flex-start; gap: 8px; margin-top: 18px; }
  .hero-trust span { min-height: 30px; padding: 6px 9px; font-size: 11px; }
  .hero-media-mobile { display: block; width: 100%; }
  .mobile-hero-picture { aspect-ratio: 1.35; border-radius: 18px; }
  .mobile-product-strip { gap: 7px; }
  .mobile-product-strip span { min-height: 36px; font-size: 11px; }
  .screen-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(100%, 360px);
    margin-left: auto;
    margin-right: auto;
    min-height: 0;
    padding: 12px;
    border-radius: 10px;
  }
  .screen-showcase::after { inset: 8px; }
  .product-screen {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 0;
    transform: none;
    border-radius: 9px;
  }
  .screen-operations { grid-column: 1 / -1; }
  .screen-books { grid-column: 1 / -1; }
  .screen-tax { grid-column: 1 / -1; }
  .screen-access { display: none; }
  .screen-ai-flow {
    display: none;
  }
  .screen-toolbar {
    min-height: 36px;
    padding: 0 10px;
    gap: 5px;
    font-size: 11px;
  }
  .screen-toolbar em { padding: 3px 6px; font-size: 9px; }
  .window-dot { width: 6px; height: 6px; }
  .screen-content { gap: 10px; padding: 10px; }
  .command-summary { align-items: center; }
  .command-summary strong { font-size: 30px; }
  .metric-cards { gap: 8px; }
  .metric-cards div { min-height: 58px; padding: 8px; }
  .metric-cards span { font-size: 10px; }
  .metric-cards strong { font-size: 18px; }
  .metric-cards small { display: none; }
  .workflow-map { display: none; }
  .compact-screen { gap: 9px; padding: 10px; }
  .mini-summary span { font-size: 10px; }
  .mini-summary strong { font-size: 14px; }
  .ledger-lines { gap: 7px; }
  .ledger-lines span { height: 8px; }
  .tax-steps { gap: 6px; }
  .tax-steps span { min-height: 34px; border-radius: 9px; }
  .cards.three, .cards.four, .form-row, .timeline-item { grid-template-columns: 1fr; }
  .workflow-lanes { grid-template-columns: 1fr; gap: 14px; }
  .workflow-lane { min-height: 190px; padding: 22px; }
  .product-hero-window {
    width: min(100%, 360px);
    min-height: 0;
    margin: 0 auto;
    border-radius: 10px;
  }
  .product-window-toolbar {
    min-height: 40px;
    padding: 0 11px;
    gap: 5px;
    font-size: 11px;
  }
  .product-window-toolbar span {
    width: 6px;
    height: 6px;
  }
  .product-window-toolbar em {
    padding: 3px 6px;
    font-size: 9px;
  }
  .product-window-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 11px;
  }
  .window-panel,
  .window-panel-large,
  .window-panel-wide {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 0;
    padding: 11px;
  }
  .window-score {
    font-size: 38px;
  }
  .window-panel strong {
    font-size: 24px;
  }
  .window-timeline,
  .report-rings,
  .tax-flow-preview,
  .entity-path {
    gap: 7px;
  }
  .report-rings span,
  .tax-flow-preview span {
    min-height: 38px;
  }
  .detail-list span {
    min-height: 22px;
    font-size: 10px;
  }
  .mini-data-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .transaction-table {
    grid-template-columns: 1fr 1fr 44px;
  }
  .transaction-table span {
    min-height: 22px;
    padding: 4px 5px;
    font-size: 9px;
  }
  .brand small { display: none; }
  .section { padding: 70px 0; }
  .page-hero { padding: 92px 0 44px; }
  .card, .form-card, .info-card, .legal-card, .showcase-card { padding: 22px; }
  .footer-bottom { flex-direction: column; }
  .footer-compact, .footer-actions { align-items: flex-start; flex-direction: column; }
  .footer-actions { gap: 12px; }
  .footer-actions .btn { width: 100%; }
}

@media (max-width: 370px) {
  .hero-actions { grid-template-columns: 1fr; }
}
