    :root {
      --bg: #f4f5f7;
      --paper: #ffffff;
      --ink: #15171d;
      --muted: #626975;
      --line: #d7dbe3;
      --green: #2563eb;
      --green-dark: #1d4ed8;
      --mint: #eaf3ff;
      --sage: #f0f2f5;
      --plum: #315da8;
      --violet: #3b82f6;
      --blue: #0ea5e9;
      --orange: #38bdf8;
      --button-on-accent: #ffffff;
      --shadow: 0 22px 70px rgba(21, 23, 29, .13);
      --soft-shadow: 0 12px 36px rgba(21, 23, 29, .09);
      --radius: 12px;
      --radius-sm: 8px;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      color-scheme: light;
    }

    html.dark {
      color-scheme: dark;
    }

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

    body {
      margin: 0;
      background: var(--bg);
      color: var(--ink);
    }

    html.dark,
    body.dark {
      --bg: #0d1117;
      --paper: #151b23;
      --ink: #eef6ff;
      --muted: #a9b1bd;
      --line: #2d3542;
      --green: #60a5fa;
      --green-dark: #93c5fd;
      --mint: #102b4d;
      --sage: #111820;
      --button-on-accent: #081426;
      --shadow: 0 22px 70px rgba(0, 0, 0, .35);
      --soft-shadow: 0 12px 36px rgba(0, 0, 0, .25);
    }

    button,
    input {
      font: inherit;
    }

    button {
      cursor: pointer;
      border: 0;
    }

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

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      border-bottom: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
      background: color-mix(in srgb, var(--paper) 88%, transparent);
      backdrop-filter: blur(18px);
    }

    .nav {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 24px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 16px 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 21px;
      font-weight: 850;
      letter-spacing: 0;
    }

    .majjun-logo {
      display: inline-flex;
      align-items: flex-start;
      font-family: Inter, "Helvetica Neue", Arial, sans-serif;
      line-height: 1;
      user-select: none;
    }

    .logo-main {
      color: #1b3a5c;
      font-size: 26px;
      font-weight: 700;
    }

    .logo-erp {
      margin-top: 1px;
      margin-left: 3px;
      color: #2563eb;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
    }

    html.dark .logo-main {
      color: #eef6ff;
    }

    html.dark .logo-erp {
      color: #93c5fd;
    }

    .brand-mark {
      display: grid;
      grid-template-columns: repeat(2, 12px);
      grid-template-rows: repeat(2, 12px);
      gap: 3px;
      width: 36px;
      height: 36px;
      padding: 3px;
      border-radius: 10px;
      background: var(--paper);
      box-shadow: inset 0 0 0 1px var(--line);
    }

    .brand-mark span {
      border-radius: 5px;
    }

    .brand-mark span:nth-child(1) { background: var(--green); }
    .brand-mark span:nth-child(2) { background: var(--violet); }
    .brand-mark span:nth-child(3) { background: var(--orange); }
    .brand-mark span:nth-child(4) { background: var(--blue); }

    .nav-links {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
    }

    .nav-item {
      position: relative;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 10px 12px;
      border-radius: 9px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 750;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--ink);
      background: var(--sage);
    }

    .nav-link.active {
      color: var(--green-dark);
      box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--green) 26%, transparent);
    }

    .nav-actions {
      display: flex;
      justify-self: end;
      align-items: center;
      gap: 10px;
    }

    .lang-switch {
      display: inline-flex;
      align-items: center;
      gap: 2px;
      padding: 3px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: color-mix(in srgb, var(--paper) 82%, transparent);
    }

    .lang-switch button {
      min-width: 34px;
      height: 32px;
      border-radius: 999px;
      color: var(--muted);
      background: transparent;
      font-size: 12px;
      font-weight: 850;
    }

    .lang-switch button.active {
      color: var(--button-on-accent);
      background: var(--green);
    }

    .theme-toggle,
    .menu-btn {
      display: grid;
      place-items: center;
      width: 40px;
      height: 40px;
      border-radius: 10px;
      border: 1px solid var(--line);
      background: var(--paper);
      color: var(--ink);
    }

    .theme-toggle {
      transition: color .18s ease, border-color .18s ease, background-color .18s ease, transform .18s ease;
    }

    .theme-toggle:hover {
      border-color: var(--green);
      background: var(--mint);
      color: var(--green-dark);
      transform: translateY(-1px);
    }

    .menu-btn {
      display: none;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 0 18px;
      border-radius: 10px;
      font-weight: 850;
      white-space: nowrap;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }

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

    .btn-primary {
      color: var(--button-on-accent);
      background: var(--green);
      box-shadow: 0 12px 30px color-mix(in srgb, var(--green) 34%, transparent);
    }

    .btn-secondary {
      color: var(--ink);
      border: 1px solid var(--line);
      background: var(--paper);
    }

    .hero {
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, .76), rgba(244, 245, 247, .9)),
        repeating-linear-gradient(90deg, rgba(21, 23, 29, .045) 0 1px, transparent 1px 80px),
        repeating-linear-gradient(0deg, rgba(21, 23, 29, .035) 0 1px, transparent 1px 80px);
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
      gap: 54px;
      align-items: center;
      max-width: 1200px;
      min-height: 620px;
      margin: 0 auto;
      padding: 72px 24px 64px;
    }

    .hero-inner > div:first-child {
      max-width: 780px;
    }

    .hero .eyebrow,
    .hero h1,
    .hero .hero-copy,
    .hero .hero-actions,
    .hero .hero-note,
    .hero .trust-row {
      animation: riseIn .72s ease both;
    }

    .hero h1 { animation-delay: .08s; }
    .hero .hero-copy { animation-delay: .16s; }
    .hero .hero-actions { animation-delay: .24s; }
    .hero .hero-note { animation-delay: .3s; }
    .hero .trust-row { animation-delay: .36s; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      padding: 7px 11px;
      border: 1px solid color-mix(in srgb, var(--green) 34%, var(--line));
      border-radius: 999px;
      color: var(--green-dark);
      background: color-mix(in srgb, var(--mint) 80%, var(--paper));
      font-size: 13px;
      font-weight: 850;
    }

    h1,
    h2,
    h3 {
      margin: 0;
      letter-spacing: 0;
      line-height: 1.04;
    }

    h1 {
      max-width: 760px;
      font-size: clamp(42px, 5.5vw, 72px);
    }

    .hero-copy {
      max-width: 680px;
      margin: 22px 0 28px;
      color: var(--muted);
      font-size: 20px;
      line-height: 1.55;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .hero-note {
      margin-top: 16px;
      color: var(--muted);
      font-size: 14px;
    }

    .trust-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      max-width: 560px;
      margin-top: 34px;
    }

    .trust-item {
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: color-mix(in srgb, var(--paper) 72%, transparent);
    }

    .trust-item strong {
      display: block;
      font-size: 21px;
    }

    .trust-item span {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.3;
    }

    .hero-console {
      overflow: hidden;
      border: 1px solid color-mix(in srgb, var(--line) 86%, transparent);
      border-radius: 16px;
      background: var(--paper);
      box-shadow: var(--shadow);
      animation: demoEnter .85s cubic-bezier(.2,.7,.2,1) both;
      animation-delay: .22s;
    }

    .console-top {
      display: flex;
      align-items: center;
      gap: 8px;
      height: 44px;
      padding: 0 14px;
      border-bottom: 1px solid var(--line);
      background: var(--sage);
    }

    .console-top span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #aeb5c2;
    }

    .console-top strong {
      margin-left: auto;
      color: var(--muted);
      font-size: 12px;
    }

    .console-grid {
      display: grid;
      grid-template-columns: 150px 1fr;
      min-height: 430px;
    }

    .console-grid aside {
      display: grid;
      align-content: start;
      gap: 10px;
      padding: 18px 12px;
      border-right: 1px solid var(--line);
      background: color-mix(in srgb, var(--sage) 72%, var(--paper));
    }

    .console-grid aside span {
      padding: 10px 12px;
      border-radius: 8px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
    }

    .console-grid aside .active {
      color: var(--green-dark);
      background: var(--mint);
    }

    .console-main {
      display: grid;
      align-content: start;
      gap: 14px;
      padding: 20px;
    }

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

    .metric-strip div,
    .ai-message {
      border: 1px solid var(--line);
      border-radius: 10px;
      background: var(--paper);
      box-shadow: var(--soft-shadow);
    }

    .metric-strip div {
      padding: 14px;
    }

    .metric-strip small {
      display: block;
      color: var(--muted);
      font-size: 11px;
      font-weight: 800;
    }

    .metric-strip strong {
      display: block;
      margin-top: 6px;
      font-size: 22px;
    }

    .ai-message {
      max-width: 82%;
      padding: 13px 14px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.4;
    }

    .ai-message.user {
      color: var(--ink);
      background: var(--sage);
    }

    .ai-message.system {
      justify-self: end;
      color: var(--green-dark);
      background: var(--mint);
    }

    .product-demo {
      position: relative;
      min-height: 560px;
    }

    .browser {
      overflow: hidden;
      border: 1px solid color-mix(in srgb, var(--line) 86%, transparent);
      border-radius: 18px;
      background: var(--paper);
      box-shadow: var(--shadow);
      animation: demoEnter .85s cubic-bezier(.2,.7,.2,1) both;
      animation-delay: .28s;
    }

    .browser-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 46px;
      padding: 0 14px;
      border-bottom: 1px solid var(--line);
      background: var(--sage);
    }

    .dots {
      display: flex;
      gap: 7px;
    }

    .dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #cddced;
    }

    .browser-url {
      width: 46%;
      height: 24px;
      border-radius: 999px;
      background: var(--paper);
      color: var(--muted);
      text-align: center;
      font-size: 12px;
      line-height: 24px;
    }

    .demo-body {
      display: grid;
      grid-template-columns: 168px 1fr;
      min-height: 500px;
    }

    .demo-side {
      padding: 18px 12px;
      border-right: 1px solid var(--line);
      background: color-mix(in srgb, var(--sage) 78%, var(--paper));
    }

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

    .app-dot {
      display: grid;
      place-items: center;
      aspect-ratio: 1;
      border-radius: 12px;
      color: #fff;
      font-size: 18px;
      font-weight: 900;
      transition: transform .2s ease;
    }

    .app-dot:hover {
      transform: scale(1.08) rotate(-3deg);
    }

    .demo-nav {
      display: grid;
      gap: 8px;
    }

    .demo-nav span {
      height: 34px;
      border-radius: 8px;
      background: var(--paper);
      overflow: hidden;
    }

    .demo-nav span::after {
      content: "";
      display: block;
      width: 46%;
      height: 100%;
      background: color-mix(in srgb, var(--green) 12%, transparent);
      transform: translateX(-110%);
      animation: shimmer 2.8s ease-in-out infinite;
    }

    .demo-nav span:first-child {
      background: color-mix(in srgb, var(--green) 18%, var(--paper));
    }

    .demo-main {
      padding: 20px;
    }

    .demo-tabs {
      display: flex;
      gap: 8px;
      margin-bottom: 18px;
      overflow: hidden;
    }

    .demo-tabs span {
      min-width: max-content;
      padding: 8px 12px;
      border-radius: 8px;
      color: var(--muted);
      background: var(--sage);
      font-size: 12px;
      font-weight: 800;
      transition: color .2s ease, background .2s ease, transform .2s ease;
    }

    .demo-tabs span.active {
      color: #fff;
      background: var(--violet);
      transform: translateY(-1px);
    }

    .demo-panel {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 14px;
    }

    .invoice-card,
    .mini-card,
    .floating-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: var(--soft-shadow);
    }

    .invoice-card {
      padding: 16px;
    }

    .invoice-card h3 {
      margin-bottom: 12px;
      font-size: 18px;
    }

    .invoice-line {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px solid var(--line);
      color: var(--muted);
      font-size: 14px;
      animation: slideLine .55s ease both;
    }

    .invoice-line:nth-child(2) { animation-delay: .44s; }
    .invoice-line:nth-child(3) { animation-delay: .52s; }
    .invoice-line:nth-child(4) { animation-delay: .6s; }

    .invoice-total {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 14px;
      padding: 14px;
      border-radius: 10px;
      background: var(--mint);
      font-weight: 850;
    }

    .mini-stack {
      display: grid;
      gap: 12px;
    }

    .mini-card {
      padding: 14px;
    }

    .mini-card strong {
      display: block;
      margin-bottom: 8px;
      font-size: 15px;
    }

    .bar {
      height: 8px;
      margin-top: 9px;
      border-radius: 999px;
      background: var(--sage);
      overflow: hidden;
    }

    .bar span {
      display: block;
      height: 100%;
      border-radius: 999px;
      background: var(--green);
      transform-origin: left;
      animation: growBar 1.2s ease both;
    }

    .floating-card {
      position: absolute;
      right: -18px;
      bottom: 34px;
      width: 260px;
      padding: 16px;
      animation: float 4s ease-in-out infinite;
    }

    .floating-card strong {
      display: block;
      margin-bottom: 6px;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 88px 24px;
    }

    .section-heading {
      display: grid;
      grid-template-columns: minmax(0, .8fr) minmax(280px, .45fr);
      gap: 28px;
      align-items: end;
      margin-bottom: 34px;
    }

    .section h2 {
      font-size: clamp(32px, 4vw, 54px);
    }

    .section p {
      color: var(--muted);
      font-size: 17px;
      line-height: 1.55;
    }

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

    .module-card {
      display: flex;
      flex-direction: column;
      min-height: 250px;
      padding: 20px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: var(--soft-shadow);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .module-card:hover {
      transform: translateY(-5px);
      border-color: color-mix(in srgb, var(--green) 44%, var(--line));
      box-shadow: var(--shadow);
    }

    .module-icon {
      display: grid;
      place-items: center;
      width: 46px;
      height: 46px;
      margin-bottom: 18px;
      border-radius: 12px;
      color: #fff;
      font-size: 20px;
      font-weight: 900;
    }

    .module-icon--1 {
      background: #1d4ed8;
    }

    .module-icon--2 {
      background: #0284c7;
    }

    .module-icon--3 {
      background: #3b82f6;
    }

    .module-icon--4 {
      background: #38bdf8;
    }

    .module-card h3 {
      margin-bottom: 10px;
      font-size: 21px;
    }

    .module-card p {
      font-size: 14px;
    }

    .module-card ul {
      display: grid;
      gap: 8px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
      color: var(--muted);
      font-size: 13px;
    }

    .text-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      width: fit-content;
      margin-top: auto;
      padding-top: 18px;
      color: var(--green-dark);
      font-size: 13px;
      font-weight: 850;
    }

    .text-cta::after {
      content: "→";
      transition: transform .18s ease;
    }

    .text-cta:hover::after {
      transform: translateX(3px);
    }

    .module-card li::before {
      content: "✓";
      margin-right: 7px;
      color: var(--green);
      font-weight: 900;
    }

    .split {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 48px;
      align-items: center;
    }

    .feature-list {
      display: grid;
      gap: 14px;
      margin-top: 24px;
    }

    .feature {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 14px;
      align-items: start;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
    }

    .feature span {
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: var(--mint);
      color: var(--green-dark);
      font-weight: 900;
    }

    .feature strong {
      display: block;
      margin-bottom: 4px;
    }

    .soft-purchase {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      justify-content: space-between;
      margin-top: 18px;
      padding: 14px;
      border: 1px solid color-mix(in srgb, var(--green) 24%, var(--line));
      border-radius: var(--radius-sm);
      background: color-mix(in srgb, var(--mint) 58%, var(--paper));
    }

    .soft-purchase span {
      flex: 1 1 260px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
    }

    .btn-quiet {
      min-height: 40px;
      padding-inline: 14px;
      color: var(--green-dark);
      background: var(--paper);
    }

    .visual-panel {
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: var(--paper);
      box-shadow: var(--shadow);
    }

    .workflow {
      display: grid;
      gap: 12px;
    }

    .workflow-row {
      display: grid;
      grid-template-columns: 44px 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 13px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: var(--sage);
      transition: transform .2s ease, border-color .2s ease;
    }

    .workflow-row:hover {
      transform: translateX(5px);
      border-color: color-mix(in srgb, var(--green) 42%, var(--line));
    }

    .workflow-row span:first-child {
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      color: #fff;
      background: var(--violet);
      font-weight: 900;
    }

    .workflow-row strong {
      display: block;
      margin-bottom: 3px;
    }

    .workflow-row small {
      color: var(--muted);
    }

    .status {
      padding: 6px 9px;
      border-radius: 999px;
      color: var(--green-dark);
      background: var(--mint);
      font-size: 12px;
      font-weight: 850;
    }

    .pricing-band {
      border-block: 1px solid var(--line);
      background: linear-gradient(135deg, #1e3a8a, #075985 58%, #2563eb);
      color: #fff;
    }

    .pricing-band .section {
      display: grid;
      grid-template-columns: minmax(0, .8fr) minmax(560px, 1.2fr);
      gap: 42px;
      align-items: start;
      padding-block: 76px;
    }

    .pricing-band p {
      color: rgba(255, 255, 255, .78);
    }

    .pricing-toggle {
      display: inline-flex;
      gap: 6px;
      margin-top: 28px;
      padding: 7px;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 12px;
      background: rgba(255, 255, 255, .09);
    }

    .pricing-toggle button {
      min-height: 42px;
      padding: 0 16px;
      border-radius: 9px;
      color: rgba(255, 255, 255, .76);
      background: transparent;
      font-weight: 850;
    }

    .pricing-toggle button.active {
      color: #15171d;
      background: #fff;
    }

    .pricing-toggle span {
      margin-left: 4px;
      color: var(--green-dark);
      font-size: 12px;
    }

    .pricing-notes {
      display: grid;
      gap: 10px;
      margin-top: 28px;
      color: rgba(255, 255, 255, .76);
      font-size: 14px;
      line-height: 1.45;
    }

    .pricing-notes span {
      padding-left: 14px;
      border-left: 2px solid rgba(255, 255, 255, .24);
    }

    .pricing-stack {
      display: grid;
      gap: 16px;
    }

    .license-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      align-items: stretch;
    }

    .price-card {
      position: relative;
      padding: 24px;
      border: 1px solid color-mix(in srgb, var(--line) 85%, transparent);
      border-radius: 14px;
      background: #fff;
      color: #15171d;
      box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
    }

    .price-card.featured {
      border-color: color-mix(in srgb, var(--green) 64%, #fff);
      transform: translateY(-8px);
    }

    .plan-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      padding: 6px 9px;
      border-radius: 999px;
      color: #fff;
      background: var(--green);
      font-size: 12px;
      font-weight: 850;
    }

    .price-card > small {
      display: block;
      margin-top: 8px;
      color: #626975;
      font-weight: 750;
    }

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

    .price strong {
      font-size: 48px;
      letter-spacing: 0;
    }

    .price span {
      color: #5f7289;
    }

    .price-card ul {
      display: grid;
      gap: 10px;
      margin: 18px 0;
      padding: 0;
      list-style: none;
      color: #42566f;
      font-size: 14px;
    }

    .price-card li::before {
      content: "✓";
      margin-right: 8px;
      color: var(--green);
      font-weight: 900;
    }

    .price-secondary {
      width: 100%;
      margin-top: 10px;
      color: var(--green-dark);
      background: #f7fbff;
    }

    .stamp-card {
      display: grid;
      grid-template-columns: minmax(190px, .7fr) 1fr;
      gap: 18px;
      padding: 22px;
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: 14px;
      background: rgba(255, 255, 255, .1);
      box-shadow: 0 18px 52px rgba(0, 0, 0, .2);
    }

    .stamp-card p {
      margin: 8px 0 0;
      color: rgba(255, 255, 255, .76);
      font-size: 14px;
    }

    .stamp-price {
      margin-bottom: 0;
    }

    .stamp-price span,
    .stamp-price strong {
      color: #fff;
    }

    .stamp-table {
      display: grid;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: 10px;
    }

    .stamp-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
      padding: 10px 12px;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
      color: rgba(255, 255, 255, .78);
      font-size: 14px;
    }

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

    .stamp-row strong {
      color: #fff;
    }

    .testimonial-carousel {
      position: relative;
      overflow: hidden;
      margin-inline: -24px;
      padding: 2px 24px 18px;
      mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    }

    .testimonial-track {
      display: flex;
      gap: 16px;
      width: max-content;
      animation: testimonialMarquee 34s linear infinite;
      will-change: transform;
    }

    .testimonial-carousel:hover .testimonial-track {
      animation-play-state: paused;
    }

    .quote {
      flex: 0 0 clamp(320px, 44vw, 560px);
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: var(--soft-shadow);
    }

    .quote p {
      color: var(--ink);
      font-size: 20px;
      line-height: 1.45;
    }

    .quote footer {
      margin-top: 22px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 750;
    }

    @media (prefers-reduced-motion: reduce) {
      .testimonial-track {
        overflow-x: auto;
        width: auto;
        animation: none;
        scroll-snap-type: x mandatory;
      }

      .quote {
        scroll-snap-align: start;
      }
    }

    @keyframes testimonialMarquee {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(calc(-50% - 8px));
      }
    }

    .cta {
      max-width: 1200px;
      margin: 0 auto;
      padding: 88px 24px 110px;
    }

    .cta-box {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      padding: 38px;
      border-radius: 22px;
      background: var(--paper);
      box-shadow: var(--shadow);
      border: 1px solid var(--line);
    }

    .cta-box h2 {
      font-size: clamp(30px, 4vw, 52px);
    }

    .footer {
      border-top: 1px solid var(--line);
      background: var(--paper);
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 28px 24px;
      color: var(--muted);
      font-size: 14px;
    }

    .toast {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 40;
      width: min(340px, calc(100vw - 32px));
      padding: 15px 16px;
      border: 1px solid color-mix(in srgb, var(--green) 38%, var(--line));
      border-radius: 12px;
      background: var(--paper);
      box-shadow: var(--shadow);
      opacity: 0;
      pointer-events: none;
      transform: translateY(12px);
      transition: opacity .2s ease, transform .2s ease;
    }

    .toast.show {
      opacity: 1;
      transform: translateY(0);
    }

    .toast strong {
      display: block;
      margin-bottom: 3px;
      color: var(--green-dark);
    }

    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal.visible .module-card,
    .reveal.visible .feature,
    .reveal.visible .workflow-row,
    .reveal.visible .quote {
      animation: riseIn .62s ease both;
    }

    .reveal.visible .module-card:nth-child(2),
    .reveal.visible .feature:nth-child(2),
    .reveal.visible .workflow-row:nth-child(2),
    .reveal.visible .quote:nth-child(2) {
      animation-delay: .08s;
    }

    .reveal.visible .module-card:nth-child(3),
    .reveal.visible .feature:nth-child(3),
    .reveal.visible .workflow-row:nth-child(3) {
      animation-delay: .16s;
    }

    .reveal.visible .module-card:nth-child(4),
    .reveal.visible .workflow-row:nth-child(4) {
      animation-delay: .24s;
    }

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

    @keyframes demoEnter {
      from {
        opacity: 0;
        transform: translateY(28px) scale(.97);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes drift {
      0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
      }
      50% {
        transform: translate3d(28px, -20px, 0) scale(1.08);
      }
    }

    @keyframes shimmer {
      0%, 42% {
        transform: translateX(-110%);
      }
      78%, 100% {
        transform: translateX(230%);
      }
    }

    @keyframes growBar {
      from {
        transform: scaleX(0);
      }
      to {
        transform: scaleX(1);
      }
    }

    @keyframes slideLine {
      from {
        opacity: 0;
        transform: translateX(-12px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @media (max-width: 980px) {
      .nav {
        grid-template-columns: auto auto;
      }

      .nav-links {
        grid-column: 1 / -1;
        justify-content: flex-start;
        overflow-x: auto;
        order: 3;
      }

      .hero-inner,
      .section-heading,
      .split,
      .pricing-band .section,
      .cta-box {
        grid-template-columns: 1fr;
      }

      .hero-inner {
        min-height: auto;
      }

      .product-demo {
        min-height: auto;
      }

      .floating-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: auto;
        margin-top: 16px;
      }

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

      .hero-console {
        max-width: 720px;
      }

      .price-card.featured {
        transform: none;
      }

    }

    @media (max-width: 680px) {
      .nav {
        padding: 14px 16px;
      }

      .nav-actions .btn-secondary {
        display: none;
      }

      .hero-inner,
      .section,
      .cta {
        padding-inline: 16px;
      }

      .hero-inner {
        padding-top: 46px;
      }

      .trust-row,
      .module-grid,
      .demo-body,
      .demo-panel,
      .console-grid,
      .metric-strip,
      .license-grid,
      .stamp-card {
        grid-template-columns: 1fr;
      }

      .demo-side {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .console-grid aside {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .ai-message {
        max-width: 100%;
      }

      .pricing-toggle {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
      }

      .pricing-band .section {
        padding-inline: 16px;
      }

      .cta-box {
        padding: 24px;
      }

    }

    .home-page {
      background: #f7f7f2;
    }

    .home-page .site-header {
      position: relative;
      border-bottom: 0;
      background: transparent;
      padding: 18px 18px 0;
    }

    .home-page .nav {
      max-width: 1180px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: color-mix(in srgb, var(--paper) 94%, transparent);
      box-shadow: var(--soft-shadow);
    }

    .home-page main {
      display: grid;
      gap: 18px;
      padding: 18px 18px 0;
    }

    .home-nav-links .nav-link {
      color: var(--muted);
    }

    .home-hero {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 8px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(247, 247, 242, .95)),
        radial-gradient(circle at 50% 0%, rgba(37, 99, 235, .12), transparent 34%);
    }

    .home-hero-inner {
      display: grid;
      place-items: center;
      min-height: 430px;
      padding: 66px 24px 46px;
      text-align: center;
    }

    .home-hero-content {
      width: 100%;
    }

    .home-hero h1 {
      max-width: none;
      font-size: clamp(42px, 6vw, 76px);
      text-align: center;
    }

    .home-hero h1 span {
      display: block;
    }

    .home-hero .hero-copy {
      max-width: 720px;
      margin-inline: auto;
    }

    .home-hero .hero-actions {
      justify-content: center;
    }

    .home-trust-row {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
      width: 100%;
      max-width: 1180px;
      margin: 44px auto 0;
      padding-top: 22px;
      border-top: 1px solid var(--line);
      text-align: left;
    }

    .home-trust-row article {
      display: grid;
      align-content: start;
      gap: 8px;
      min-height: 116px;
      padding: 18px;
      border: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
      border-radius: 8px;
      background: color-mix(in srgb, var(--paper) 74%, transparent);
    }

    .home-trust-row strong {
      color: var(--ink);
      font-size: 20px;
      font-weight: 900;
      line-height: 1.55;
    }

    .home-trust-row strong::before {
      content: "";
      display: inline-block;
      width: 22px;
      height: 1px;
      margin-right: 8px;
      vertical-align: middle;
      background: var(--green);
    }

    .home-trust-row p {
      margin: 0;
      color: var(--muted);
      font-size: 20px;
      line-height: 1.55;
    }

    .home-section {
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
      padding: 72px 24px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: color-mix(in srgb, var(--paper) 54%, transparent);
    }

    .home-story,
    .home-ai,
    .home-contact {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
      gap: 44px;
      align-items: center;
    }

    .home-screenshot,
    .ai-chat-card,
    .contact-card,
    .home-feature-card,
    .home-price-card {
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--paper);
      box-shadow: var(--soft-shadow);
    }

    .home-screenshot {
      overflow: hidden;
      min-height: 278px;
    }

    .screen-top {
      display: flex;
      gap: 7px;
      align-items: center;
      height: 38px;
      padding: 0 13px;
      border-bottom: 1px solid var(--line);
      background: var(--sage);
    }

    .screen-top span {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #b4bbc7;
    }

    .screen-layout {
      display: grid;
      grid-template-columns: 118px 1fr;
      min-height: 240px;
    }

    .screen-layout aside {
      display: grid;
      align-content: start;
      gap: 10px;
      padding: 16px 12px;
      border-right: 1px solid var(--line);
      background: color-mix(in srgb, var(--sage) 70%, var(--paper));
    }

    .screen-layout aside span,
    .screen-table span {
      height: 14px;
      border-radius: 999px;
      background: var(--sage);
    }

    .screen-layout aside .active {
      background: color-mix(in srgb, var(--green) 24%, var(--paper));
    }

    .screen-layout > div {
      display: grid;
      align-content: start;
      gap: 18px;
      padding: 18px;
    }

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

    .screen-kpis strong {
      padding: 14px 10px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      font-size: 14px;
    }

    .screen-table {
      display: grid;
      gap: 12px;
    }

    .screen-table span:nth-child(1) { width: 96%; }
    .screen-table span:nth-child(2) { width: 88%; }
    .screen-table span:nth-child(3) { width: 94%; }
    .screen-table span:nth-child(4) { width: 78%; }

    .section-label {
      display: inline-block;
      margin-bottom: 12px;
      color: var(--green-dark);
      font-size: 13px;
      font-weight: 850;
      text-transform: uppercase;
    }

    .home-copy-block h2,
    .home-section-heading h2 {
      font-size: clamp(30px, 4vw, 54px);
    }

    .home-copy-block p,
    .home-section-heading p {
      margin: 16px 0 24px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.55;
    }

    .home-section-heading {
      display: grid;
      justify-items: center;
      max-width: 780px;
      margin: 0 auto 30px;
      text-align: center;
    }

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

    .home-feature-card {
      display: flex;
      flex-direction: column;
      min-height: 360px;
      padding: 28px;
    }

    .feature-icon {
      display: grid;
      place-items: center;
      width: 48px;
      height: 48px;
      margin-bottom: 20px;
      border-radius: 8px;
      color: #fff;
      background: var(--green);
      font-weight: 900;
    }

    .feature-icon.bars,
    .feature-icon.sync {
      position: relative;
      background: var(--mint);
    }

    .feature-icon.bars::before,
    .feature-icon.sync::before {
      content: "";
      display: block;
    }

    .feature-icon.bars::before {
      width: 22px;
      height: 22px;
      background:
        linear-gradient(var(--green-dark), var(--green-dark)) 2px 12px / 4px 8px no-repeat,
        linear-gradient(var(--green-dark), var(--green-dark)) 9px 7px / 4px 13px no-repeat,
        linear-gradient(var(--green-dark), var(--green-dark)) 16px 3px / 4px 17px no-repeat;
    }

    .feature-icon.sync::before {
      width: 22px;
      height: 22px;
      border: 3px solid var(--green-dark);
      border-right-color: transparent;
      border-radius: 50%;
    }

    .home-feature-card h3,
    .home-price-card h3 {
      font-size: 22px;
    }

    .home-feature-card p {
      color: var(--muted);
      line-height: 1.5;
    }

    .home-feature-card ul,
    .home-price-card ul {
      display: grid;
      gap: 10px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.4;
    }

    .home-price-card ul {
      padding-bottom: 18px;
    }

    .home-feature-card li::before,
    .home-price-card li::before {
      content: "";
      display: inline-block;
      width: 6px;
      height: 6px;
      margin-right: 9px;
      border-radius: 50%;
      background: var(--green);
      vertical-align: middle;
    }

    .home-ai {
      grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
    }

    .ai-chat-card {
      display: grid;
      gap: 14px;
      padding: 30px;
      background: #fffffb;
    }

    .ai-bubble {
      width: fit-content;
      max-width: 86%;
      padding: 12px 16px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: var(--paper);
      color: var(--ink);
      font-size: 14px;
    }

    .ai-bubble.system {
      justify-self: end;
      border-color: transparent;
      background: color-mix(in srgb, var(--green) 16%, var(--sage));
    }

    .home-toggle {
      display: inline-flex;
      gap: 4px;
      margin-top: 12px;
      padding: 5px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: var(--paper);
      font-size: 13px;
      font-weight: 850;
    }

    .home-toggle button {
      padding: 7px 12px;
      border: 0;
      border-radius: 999px;
      background: transparent;
      color: var(--muted);
      font: inherit;
      cursor: pointer;
      transition: color .18s ease, background-color .18s ease, transform .18s ease, box-shadow .18s ease;
    }

    .home-toggle button:hover {
      color: var(--ink);
      background: color-mix(in srgb, var(--ink) 10%, transparent);
      transform: translateY(-1px);
    }

    .home-toggle button:focus-visible {
      outline: 2px solid var(--green);
      outline-offset: 2px;
    }

    .home-toggle .active {
      color: var(--button-on-accent);
      background: var(--green);
    }

    .home-toggle .active:hover {
      color: var(--button-on-accent);
      background: color-mix(in srgb, var(--green) 88%, var(--ink));
      box-shadow: 0 4px 12px color-mix(in srgb, var(--green) 22%, transparent);
    }

    .home-price-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      align-items: stretch;
    }

    .home-price-card {
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 360px;
      padding: 28px;
    }

    .home-price-card.plan-option {
      cursor: pointer;
      transition: border-color .22s ease, background-color .22s ease, box-shadow .22s ease, transform .22s ease;
    }

    .home-price-card.plan-option:hover,
    .home-price-card.plan-option:focus-within,
    .home-price-card.plan-option:focus-visible {
      z-index: 1;
      border-color: color-mix(in srgb, var(--green) 64%, var(--line));
      background: color-mix(in srgb, var(--mint) 50%, var(--paper));
      box-shadow: 0 18px 40px color-mix(in srgb, var(--ink) 16%, transparent);
      transform: translateY(-6px);
      outline: none;
    }

    .home-price-card.plan-option:hover .btn,
    .home-price-card.plan-option:focus-within .btn,
    .home-price-card.plan-option:focus-visible .btn {
      border-color: var(--green);
      background: var(--green);
      color: var(--button-on-accent);
    }

    .home-price-card.featured {
      border-color: color-mix(in srgb, var(--green) 48%, var(--line));
      box-shadow: var(--shadow);
    }

    .price-currency {
      display: block;
      width: fit-content;
      margin-top: 8px;
      padding: 4px 8px;
      border-radius: 999px;
      background: color-mix(in srgb, var(--green) 12%, transparent);
      color: var(--green-dark);
      font-size: 11px;
      font-weight: 850;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    .stamp-support-label {
      margin: 0 0 18px;
    }

    .home-price {
      margin: 18px 0;
      font-size: 42px;
      font-weight: 900;
    }

    .price-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      margin: 18px 0;
    }

    .price-row .home-price {
      margin: 0;
    }

    .home-price span {
      margin-left: 5px;
      color: var(--muted);
      font-size: 16px;
      font-weight: 750;
    }

    .home-price-card .btn {
      width: 100%;
      margin-top: auto;
    }

    .stamp-list {
      display: grid;
      gap: 12px;
      margin-top: 20px;
      padding-top: 18px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 15px;
    }

    .stamp-list span {
      display: flex;
      justify-content: space-between;
      gap: 16px;
    }

    .stamp-list strong {
      color: var(--ink);
    }

    .pricing-ai-note {
      max-width: 1180px;
      margin: 18px auto 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.5;
      text-align: left;
    }

    .home-page .cta {
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
      padding-block: 54px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: color-mix(in srgb, var(--paper) 54%, transparent);
    }

    .home-page .cta-box {
      border-radius: 8px;
    }

    .home-page .cta-box p {
      margin-top: 12px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.5;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: flex-end;
    }

    .contact-card {
      display: grid;
      gap: 10px;
      padding: 28px;
    }

    .contact-card input,
    .contact-card select,
    .contact-card textarea {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 6px;
      background: #fffffb;
      color: var(--ink);
      font: inherit;
    }

    .contact-card input,
    .contact-card select {
      min-height: 46px;
      padding: 0 22px;
    }

    .contact-card textarea {
      min-height: 108px;
      resize: vertical;
      padding: 16px 22px;
    }

    .contact-card .btn {
      width: fit-content;
      margin-top: 6px;
    }

    @media (max-width: 980px) {
      .home-story,
      .home-ai,
      .home-contact,
      .home-price-grid {
        grid-template-columns: 1fr;
      }

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

      .home-contact .home-copy-block {
        order: -1;
      }
    }

    @media (max-width: 680px) {
      .home-page .site-header,
      .home-page main {
        padding-inline: 10px;
      }

      .home-hero-inner,
      .home-section {
        padding-inline: 16px;
      }

      .home-trust-row,
      .home-feature-grid,
      .screen-layout,
      .screen-kpis {
        grid-template-columns: 1fr;
      }

      .home-trust-row {
        gap: 10px;
        text-align: left;
      }

      .screen-layout aside {
        grid-template-columns: repeat(4, 1fr);
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .home-feature-card,
      .home-price-card,
      .contact-card {
        min-height: auto;
        padding: 22px;
      }

      .cta-actions {
        justify-content: flex-start;
      }
    }

    .home-page {
      background:
        linear-gradient(180deg, #fbfbf7 0%, #f4f7fb 46%, #fbfbf7 100%);
    }

    .home-page .site-header {
      position: sticky;
      top: 0;
      padding: 0;
      border-bottom: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
      background: color-mix(in srgb, #fbfbf7 88%, transparent);
      backdrop-filter: blur(18px);
    }

    .home-page .nav {
      max-width: 1180px;
      padding-block: 18px;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }

    .home-page main {
      display: block;
      padding: 0;
    }

    .home-hero {
      max-width: none;
      border: 0;
      border-radius: 0;
      background:
        radial-gradient(circle at 50% 8%, rgba(37, 99, 235, .16), transparent 31%),
        linear-gradient(180deg, #fbfbf7 0%, #eef5ff 100%);
    }

    .home-hero-inner {
      min-height: 560px;
      padding: 92px 24px 70px;
    }

    .home-trust-row {
      border-top-color: color-mix(in srgb, var(--green) 20%, var(--line));
    }

    .home-section {
      position: relative;
      border: 0;
      border-radius: 0;
      background: transparent;
      padding-block: 96px;
    }

    .home-section + .home-section,
    .home-page .cta {
      border-top: 1px solid color-mix(in srgb, var(--line) 74%, transparent);
    }

    .home-story::before,
    .home-ai::before,
    .home-pricing::before,
    .home-contact::before {
      content: "";
      position: absolute;
      inset: 22px max(24px, calc((100vw - 1180px) / 2)) auto;
      height: 1px;
      background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--green) 28%, transparent), transparent);
      pointer-events: none;
    }

    .home-screenshot,
    .ai-chat-card,
    .contact-card,
    .home-feature-card,
    .home-price-card {
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }

    .home-screenshot {
      min-height: 320px;
      padding: 16px;
      border-radius: 18px;
      background:
        linear-gradient(135deg, color-mix(in srgb, var(--mint) 78%, #fff), rgba(255, 255, 255, .45));
      box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--line) 58%, transparent);
    }

    .screen-top,
    .screen-layout aside,
    .screen-kpis strong,
    .ai-bubble {
      background: color-mix(in srgb, var(--paper) 82%, transparent);
    }

    .screen-layout {
      overflow: hidden;
      border-radius: 14px;
      background: rgba(255, 255, 255, .62);
      box-shadow: 0 24px 70px rgba(21, 23, 29, .1);
    }

    .home-feature-grid {
      gap: 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .home-feature-card {
      min-height: 330px;
      padding: 34px 30px;
      border-right: 1px solid var(--line);
    }

    .home-feature-card:last-child {
      border-right: 0;
    }

    .feature-icon {
      border-radius: 14px;
      box-shadow: 0 14px 34px color-mix(in srgb, var(--green) 22%, transparent);
    }

    .home-ai {
      overflow: hidden;
    }

    .home-ai::after {
      content: "";
      position: absolute;
      right: max(24px, calc((100vw - 1180px) / 2));
      top: 70px;
      bottom: 70px;
      width: min(38vw, 420px);
      border-radius: 999px;
      background: color-mix(in srgb, var(--mint) 70%, transparent);
      filter: blur(42px);
      z-index: -1;
    }

    .ai-chat-card {
      padding: 10px 0;
    }

    .ai-bubble {
      border-color: color-mix(in srgb, var(--line) 72%, transparent);
      box-shadow: 0 12px 32px rgba(21, 23, 29, .08);
    }

    .home-modules {
      max-width: none;
      padding-inline: max(24px, calc((100vw - 1180px) / 2));
    }

    .home-modules .home-section-heading {
      justify-items: start;
      max-width: 900px;
      margin-inline: 0;
      text-align: left;
    }

    .module-topic-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      max-width: 1180px;
      margin: 28px auto 0;
      padding: 6px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: color-mix(in srgb, var(--paper) 70%, transparent);
    }

    .module-topic-bar button {
      flex: 1 1 210px;
      min-height: 44px;
      padding: 0 14px;
      border-radius: 8px;
      color: var(--muted);
      background: transparent;
      font-weight: 850;
      text-align: center;
    }

    .module-topic-bar button.active {
      color: var(--button-on-accent);
      background: var(--green);
      box-shadow: 0 12px 30px color-mix(in srgb, var(--green) 24%, transparent);
    }

    .module-feature-list {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
      max-width: 1180px;
      margin: 34px auto 0;
      padding: 4px 2px 0;
    }

    .module-feature-row {
      display: grid;
      align-content: start;
      gap: 18px;
      min-height: 320px;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: color-mix(in srgb, var(--paper) 76%, transparent);
      box-shadow: var(--soft-shadow);
      align-items: start;
    }

    .module-feature-row[hidden] {
      display: none;
    }

    .module-feature-row span {
      display: block;
      margin-bottom: 10px;
      color: var(--green-dark);
      font-size: 12px;
      font-weight: 850;
      text-transform: uppercase;
    }

    .module-feature-row h3 {
      font-size: 22px;
    }

    .module-feature-row p {
      margin: 0;
      color: var(--muted);
      line-height: 1.55;
    }

    .module-feature-row ul {
      display: grid;
      gap: 9px;
      margin: 0;
      padding: 0;
      color: var(--muted);
      list-style: none;
      line-height: 1.4;
    }

    .module-feature-row li::before {
      content: "";
      display: inline-block;
      width: 6px;
      height: 6px;
      margin-right: 9px;
      border-radius: 50%;
      background: var(--green);
      vertical-align: middle;
    }

    .home-pricing {
      max-width: none;
      padding-inline: max(24px, calc((100vw - 1180px) / 2));
      background: linear-gradient(180deg, transparent, #eef5ff 50%, transparent);
    }

    .home-price-grid {
      max-width: 1180px;
      margin: 0 auto;
      gap: 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .home-price-card {
      min-height: 340px;
      padding: 34px 30px;
      border-right: 1px solid var(--line);
    }

    .home-price-card:last-child {
      border-right: 0;
    }

    .home-price-card.featured {
      background: linear-gradient(180deg, color-mix(in srgb, var(--mint) 64%, transparent), transparent);
    }

    .plan-badge {
      top: 34px;
      right: 30px;
    }

    .free-month-note {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 6px 10px;
      border-radius: 999px;
      background: color-mix(in srgb, var(--green) 14%, transparent);
      color: var(--green-dark);
      font-size: 12px;
      font-weight: 850;
    }

    .free-month-note[hidden] {
      display: none;
    }

    .home-technical {
      overflow: hidden;
    }

    .technical-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      max-width: 1180px;
      margin: 36px auto 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .technical-grid article {
      padding: 30px 24px;
      border-right: 1px solid var(--line);
    }

    .technical-grid article:last-child {
      border-right: 0;
    }

    .technical-grid span {
      display: block;
      margin-bottom: 12px;
      color: var(--green-dark);
      font-size: 12px;
      font-weight: 850;
      text-transform: uppercase;
    }

    .technical-grid h3 {
      font-size: 21px;
    }

    .technical-grid p {
      color: var(--muted);
      line-height: 1.55;
    }

    .home-page .cta {
      max-width: none;
      border-right: 0;
      border-bottom: 0;
      border-left: 0;
      border-radius: 0;
      background: transparent;
      padding: 72px max(24px, calc((100vw - 1180px) / 2));
    }

    .home-page .cta-box {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }

    .home-contact {
      align-items: start;
    }

    .contact-card {
      padding: 0;
      border-top: 1px solid var(--line);
    }

    .contact-card input,
    .contact-card select,
    .contact-card textarea {
      border-width: 0 0 1px;
      border-radius: 0;
      background: transparent;
      padding-inline: 22px;
    }

    .contact-card textarea {
      min-height: 132px;
    }

    .footer {
      background: transparent;
    }

    @media (max-width: 980px) {
      .home-feature-grid,
      .home-price-grid {
        gap: 0;
      }

      .home-feature-card:nth-child(2) {
        border-right: 0;
      }

      .home-price-card {
        border-right: 0;
      }

      .home-price-card,
      .home-feature-card {
        border-bottom: 1px solid var(--line);
      }

      .module-feature-row {
        gap: 14px;
      }

      .module-feature-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

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

      .technical-grid article:nth-child(2) {
        border-right: 0;
      }

      .technical-grid article {
        border-bottom: 1px solid var(--line);
      }

      .technical-grid article:nth-last-child(-n + 2) {
        border-bottom: 0;
      }

      .home-price-card:last-child,
      .home-feature-card:last-child {
        border-bottom: 0;
      }
    }

    @media (max-width: 680px) {
      .home-page .site-header,
      .home-page main {
        padding-inline: 0;
      }

      .home-hero-inner {
        min-height: auto;
        padding-top: 62px;
      }

      .home-section,
      .home-page .cta {
        padding-block: 68px;
      }

      .home-feature-card,
      .home-price-card {
        border-right: 0;
      }

      .home-pricing {
        padding-inline: 16px;
      }

      .home-modules {
        padding-inline: 16px;
      }

      .module-feature-list {
        grid-template-columns: 1fr;
      }

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

      .technical-grid article {
        border-right: 0;
      }

      .technical-grid article:nth-last-child(2) {
        border-bottom: 1px solid var(--line);
      }
    }

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

    @media (max-width: 980px) {
      .home-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 680px) {
      .home-feature-grid {
        grid-template-columns: 1fr;
      }
    }

    html.dark body.home-page {
      background:
        linear-gradient(180deg, #0d1117 0%, #101827 46%, #0d1117 100%);
    }

    html.dark .home-page .site-header {
      background: color-mix(in srgb, var(--bg) 88%, transparent);
    }

    html.dark .hero {
      background:
        linear-gradient(180deg, color-mix(in srgb, var(--paper) 84%, transparent), color-mix(in srgb, var(--bg) 94%, transparent)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 80px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .02) 0 1px, transparent 1px 80px);
    }

    html.dark .home-hero {
      background:
        radial-gradient(circle at 50% 8%, rgba(96, 165, 250, .18), transparent 31%),
        linear-gradient(180deg, var(--bg) 0%, #10213a 100%);
    }

    html.dark .home-screenshot {
      background:
        linear-gradient(135deg, color-mix(in srgb, var(--mint) 78%, var(--paper)), color-mix(in srgb, var(--paper) 72%, transparent));
    }

    html.dark .screen-layout {
      background: color-mix(in srgb, var(--paper) 86%, transparent);
      box-shadow: 0 24px 70px rgba(0, 0, 0, .32);
    }

    html.dark .screen-kpis strong {
      background: var(--paper);
    }

    html.dark .home-pricing {
      background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--mint) 62%, transparent) 50%, transparent);
    }

    html.dark .home-price-card.plan-option:hover,
    html.dark .home-price-card.plan-option:focus-within,
    html.dark .home-price-card.plan-option:focus-visible {
      background: color-mix(in srgb, var(--mint) 62%, var(--paper));
      box-shadow: 0 18px 40px rgba(0, 0, 0, .32);
    }

    html.dark .home-price-card.featured {
      background: linear-gradient(180deg, color-mix(in srgb, var(--mint) 70%, transparent), transparent);
    }
