    :root {
      --mint: #dce8d3;
      --mint-strong: #6f8e64;
      --forest: #49683f;
      --ink: #161715;
      --muted: #5f655e;
      --paper: #fbfcf9;
      --surface: #f4f6f2;
      --line: #dfe5dc;
      --yellow: #ffd966;
      --orange: #ffb65e;
      --lilac: #bda7d9;
      --blue: #8cb6ff;
      --rose: #e6a8a8;
      --shadow: 0 22px 70px rgba(22, 23, 21, 0.14);
      --header-offset: 76px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: var(--header-offset);
    }

    body {
      margin: 0;
      font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--paper);
      line-height: 1.5;
    }

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

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

    .skip-link {
      position: absolute;
      top: -48px;
      left: 12px;
      z-index: 100;
      background: var(--forest);
      color: #fff;
      padding: 10px 16px;
      border-radius: 8px;
      font-weight: 800;
      transition: top 160ms ease;
    }

    .skip-link:focus {
      top: 12px;
    }

    button,
    input,
    select {
      font: inherit;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      border-bottom: 1px solid rgba(73, 104, 63, 0.14);
      background: rgba(251, 252, 249, 0.88);
      backdrop-filter: blur(18px);
    }

    .nav {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

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

    .brand img {
      width: 174px;
      height: auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      color: var(--muted);
      font-size: 15px;
      font-weight: 650;
    }

    .nav-links a {
      white-space: nowrap;
    }

    .nav-links a:hover {
      color: var(--forest);
    }

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

    .icon-button,
    .menu-button {
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 50%;
      display: none;
      place-items: center;
      color: var(--ink);
      background: #fff;
      cursor: pointer;
    }

    .lang-switch {
      position: relative;
    }

    .lang-switch summary {
      list-style: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-height: 42px;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: #fff;
      color: var(--ink);
      font-weight: 800;
      font-size: 14px;
      cursor: pointer;
      white-space: nowrap;
    }

    .lang-switch summary::-webkit-details-marker {
      display: none;
    }

    .lang-switch summary svg {
      width: 16px;
      height: 16px;
      color: var(--forest);
    }

    .lang-switch[open] summary {
      border-color: var(--forest);
    }

    .lang-menu {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      display: grid;
      gap: 2px;
      min-width: 170px;
      padding: 8px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fff;
      box-shadow: 0 18px 40px rgba(22, 23, 21, 0.14);
      z-index: 30;
    }

    .lang-menu a {
      display: block;
      padding: 9px 12px;
      border-radius: 9px;
      color: var(--ink);
      font-weight: 700;
      font-size: 14px;
    }

    .lang-menu a:hover {
      background: var(--mint);
    }

    .lang-menu a[aria-current="page"] {
      color: var(--forest);
      background: var(--mint);
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 42px;
      padding: 0 16px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 800;
      cursor: pointer;
      transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
      white-space: nowrap;
    }

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

    .button.primary {
      color: #fff;
      background: var(--forest);
      box-shadow: 0 10px 28px rgba(73, 104, 63, 0.26);
    }

    .button.secondary {
      color: var(--ink);
      background: #fff;
      border-color: #cfd9ca;
    }

    .button.dark {
      color: #fff;
      background: var(--ink);
    }

    svg {
      width: 18px;
      height: 18px;
      flex: 0 0 auto;
    }

    .hero {
      height: calc(100svh - 76px);
      min-height: 560px;
      overflow: visible;
      background: var(--mint);
      display: flex;
      align-items: stretch;
      border-bottom: 1px solid var(--line);
    }

    .hero-inner {
      width: min(1180px, calc(100% - 40px));
      height: 100%;
      min-height: 0;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.58fr);
      gap: clamp(28px, 3.5vw, 48px);
      align-items: center;
      padding: 32px 0 36px;
      transform: translateY(-54px);
    }

    .hero-copy {
      max-width: 720px;
      align-self: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 11px;
      border: 1px solid rgba(73, 104, 63, 0.22);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.56);
      color: var(--forest);
      font-size: 12px;
      font-weight: 850;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--forest);
    }

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

    h1 {
      margin-top: 14px;
      font-size: clamp(38px, 3.6vw, 48px);
      line-height: 1.04;
      letter-spacing: 0;
      max-width: 760px;
    }

    .headline-line {
      display: block;
      white-space: nowrap;
    }

    .hero-copy > p {
      margin-top: 12px;
      max-width: 585px;
      color: #2f352e;
      font-size: 16px;
      line-height: 1.4;
    }

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

    .proof-row {
      margin-top: 14px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      max-width: 670px;
    }

    .proof-item {
      border-left: 3px solid var(--forest);
      padding: 1px 0 1px 10px;
    }

    .proof-item strong {
      display: block;
      font-size: 16px;
      line-height: 1.1;
    }

    .proof-item span {
      display: block;
      color: #51604e;
      font-size: 12px;
      margin-top: 4px;
    }

    .hero-visual {
      display: grid;
      justify-items: center;
      align-items: center;
      min-height: auto;
      position: relative;
      padding-top: 0;
      align-self: center;
      transform: none;
    }

    .phone {
      width: min(245px, 100%, calc((100svh - 220px) * 390 / 792));
      aspect-ratio: 390 / 792;
      background: #050505;
      border: 1px solid #161616;
      border-radius: 46px;
      box-shadow:
        0 22px 54px rgba(22, 23, 21, 0.18),
        0 4px 0 rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px #050505,
        inset 0 0 0 3px rgba(255, 255, 255, 0.08);
      position: relative;
      opacity: 1;
    }

    .phone::before {
      content: "";
      position: absolute;
      top: 18px;
      left: 50%;
      width: 72px;
      height: 18px;
      transform: translateX(-50%);
      border-radius: 999px;
      background: #050505;
      box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12);
      z-index: 12;
    }

    .phone::after {
      content: "";
      position: absolute;
      inset: 3px;
      border-radius: 43px;
      pointer-events: none;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
      z-index: 11;
    }

    .phone-button {
      position: absolute;
      width: 2px;
      border-radius: 999px;
      background: #191919;
      z-index: 0;
    }

    .phone-button.power {
      right: -2px;
      top: 182px;
      height: 72px;
    }

    .phone-button.volume {
      left: -2px;
      top: 132px;
      height: 52px;
    }

    .phone-button.volume.lower {
      top: 208px;
      height: 72px;
    }

    .screen {
      position: absolute;
      inset: 6px;
      border-radius: 40px;
      overflow: hidden;
      background: #fbfcf9;
      padding: 0;
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
      z-index: 1;
    }

    .phone-status {
      display: none;
    }

    .home-indicator {
      position: absolute;
      left: 50%;
      bottom: 13px;
      width: 92px;
      height: 4px;
      border-radius: 999px;
      background: #050505;
      transform: translateX(-50%);
      z-index: 10;
    }

    .phone-screen {
      position: absolute;
      inset: 0;
      z-index: 1;
      display: block;
      padding: 0;
      background: #e3ecdc;
    }

    .screen-logo {
      width: 222px;
      height: auto;
      object-fit: contain;
      margin: 0 auto;
    }

    .phone-screen .screen-logo {
      position: absolute;
      top: 38.6%;
      left: 50%;
      width: 69%;
      height: auto;
      margin: 0;
      transform: translate(-50%, -50%);
    }

    .cover-tagline {
      position: absolute;
      top: 47.5%;
      left: 0;
      width: 100%;
      color: #2f352e;
      font-size: 11px;
      letter-spacing: 0.06em;
      text-align: center;
      margin: 0;
    }

    .cover-actions {
      position: absolute;
      top: 55.4%;
      left: 13%;
      right: 13%;
      height: 11.8%;
      display: grid;
      grid-template-rows: 1fr 1fr;
      gap: 16%;
    }

    .cover-button {
      width: 100%;
      min-height: 0;
      height: 100%;
      border-radius: 12px;
      display: grid;
      place-items: center;
      color: #161715;
      font-size: 12px;
      font-weight: 620;
      letter-spacing: 0.04em;
    }

    .cover-button.login {
      border: 1px solid #20221f;
      background: transparent;
    }

    .cover-button.register {
      border: 1px solid #fff;
      background: #fff;
    }

    .live-title {
      font-size: 19px;
      line-height: 1.1;
      margin: 8px 0 5px;
      text-align: center;
    }

    .live-subtitle {
      color: var(--muted);
      font-size: 12px;
      text-align: center;
      margin-bottom: 14px;
    }

    .live-card {
      border-radius: 18px;
      background: #f3f6f0;
      padding: 14px;
      box-shadow: inset 0 0 0 1px rgba(73, 104, 63, 0.08);
    }

    .live-card + .live-card,
    .live-list {
      margin-top: 10px;
    }

    .live-list {
      display: grid;
      gap: 8px;
    }

    .profile-pill {
      align-self: flex-end;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: 1px solid #e3e5e1;
      border-radius: 999px;
      padding: 7px 11px;
      font-size: 11px;
      font-weight: 840;
      letter-spacing: 0.06em;
      margin-bottom: 15px;
    }

    .profile-pill svg {
      width: 12px;
      height: 12px;
    }

    .qr-panel {
      width: 100%;
      border-radius: 26px;
      background: #e0ead9;
      padding: 17px 14px 18px;
      text-align: center;
      box-shadow: inset 0 0 0 1px rgba(73, 104, 63, 0.06);
    }

    .qr-panel p {
      color: #62675f;
      font-size: 13px;
      font-weight: 680;
      letter-spacing: 0.07em;
      line-height: 1.45;
      max-width: 240px;
      margin: 0 auto 10px;
    }

    .qr-box {
      width: min(136px, 72%);
      aspect-ratio: 1;
      display: grid;
      place-items: center;
      margin: 0 auto 10px;
      border-radius: 22px;
      background: #fff;
    }

    .qr-box svg {
      width: 72%;
      height: 72%;
      color: #050505;
    }

    .scan-copy {
      margin-top: 8px;
    }

    .scan-action {
      width: 126px;
      min-height: 56px;
      margin: 10px auto 0;
      border: 1px solid #d2d8cf;
      border-radius: 14px;
      display: grid;
      place-items: center;
      gap: 5px;
      background: rgba(255, 255, 255, 0.36);
      font-weight: 760;
      font-size: 11px;
      letter-spacing: 0.06em;
    }

    .scan-action span {
      width: 29px;
      height: 29px;
      border: 1px solid #dfe3dd;
      border-radius: 10px;
      display: grid;
      place-items: center;
      background: #fff;
    }

    .scan-action svg {
      width: 17px;
      height: 17px;
    }

    .app-tabbar {
      position: absolute;
      left: 17px;
      right: 17px;
      bottom: 34px;
      min-height: 52px;
      border-radius: 20px;
      background: #e0ead9;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      align-items: center;
      color: #9b9f99;
      font-size: 10px;
      letter-spacing: 0.02em;
      box-shadow: inset 0 0 0 1px rgba(73, 104, 63, 0.04);
      z-index: 8;
    }

    .tab-item {
      border: 0;
      padding: 0;
      background: transparent;
      font: inherit;
      color: inherit;
      cursor: pointer;
      display: grid;
      justify-items: center;
      gap: 2px;
    }

    .tab-item svg {
      width: 18px;
      height: 18px;
    }

    .tab-item.active {
      color: #111;
    }

    .live-total {
      font-size: 30px;
      line-height: 1;
      font-weight: 900;
      margin-top: 3px;
    }

    .live-metric-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
      margin-top: 10px;
    }

    .live-metric {
      border-radius: 14px;
      background: #fff;
      padding: 10px;
      font-size: 11px;
      color: var(--muted);
    }

    .live-metric b {
      display: block;
      color: var(--ink);
      font-size: 15px;
      margin-top: 4px;
    }

    .mini-chart {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 7px;
      align-items: end;
      height: 92px;
      margin-top: 12px;
    }

    .mini-chart span {
      border-radius: 999px 999px 6px 6px;
      background: #9eb68f;
    }

    .account-avatar {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      margin: 0 auto 12px;
      background: #e0ead9;
      color: var(--forest);
      font-size: 24px;
      font-weight: 900;
    }

    @keyframes phone-panel-in {
      from {
        opacity: 0;
        transform: translateY(8px);
      }

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

    .receipt-list,
    .reminder-list {
      display: grid;
      gap: 8px;
    }

    .app-row {
      min-height: 65px;
      display: grid;
      grid-template-columns: 40px minmax(0, 1fr) auto;
      gap: 10px;
      align-items: center;
      padding: 10px;
      border-radius: 8px;
      background: var(--surface);
    }

    .merchant-mark {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      display: grid;
      place-items: center;
      background: #fff;
      color: var(--muted);
      font-weight: 900;
    }

    .app-row b,
    .app-row small {
      display: block;
      overflow-wrap: anywhere;
    }

    .app-row small {
      margin-top: 4px;
      color: var(--muted);
      font-size: 12px;
    }

    .amount {
      color: #2e7d32;
      font-weight: 900;
      font-size: 14px;
    }

    .status {
      padding: 4px 8px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 850;
    }

    .status.green {
      background: var(--mint);
      color: #2e7d32;
    }

    .status.yellow {
      background: #fff1be;
      color: #8a6100;
    }

    .status.red {
      background: #ffe0dd;
      color: #b22c21;
    }

    @media (prefers-reduced-motion: reduce) {
      .phone {
        animation: none;
      }
    }

    section {
      padding: 92px 0;
      scroll-margin-top: var(--header-offset);
    }

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

    .section-heading {
      display: grid;
      grid-template-columns: minmax(0, 0.88fr) minmax(260px, 0.52fr);
      gap: 34px;
      align-items: end;
      margin-bottom: 38px;
    }

    .section-kicker {
      color: var(--forest);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
    }

    h2 {
      margin-top: 9px;
      font-size: 58px;
      line-height: 1.02;
      letter-spacing: 0;
    }

    .section-heading p,
    .wide-text {
      color: var(--muted);
      font-size: 18px;
    }

    .section-heading.stacked {
      display: block;
      max-width: 900px;
    }

    .section-heading.stacked p {
      max-width: 700px;
      margin-top: 18px;
    }

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

    .feature-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 22px;
      min-height: 230px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .feature-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--ink);
      margin-bottom: 22px;
    }

    .feature-card:nth-child(1) .feature-icon { background: var(--mint); }
    .feature-card:nth-child(2) .feature-icon { background: var(--yellow); }
    .feature-card:nth-child(3) .feature-icon { background: var(--lilac); }
    .feature-card:nth-child(4) .feature-icon { background: var(--blue); }

    .feature-card h3 {
      font-size: 21px;
      line-height: 1.15;
      margin-bottom: 10px;
    }

    .feature-card p {
      color: var(--muted);
      font-size: 15px;
    }

    .why-section {
      min-height: max(calc(100svh - var(--header-offset)), 620px);
      padding: 0;
      background: #fff;
      border-top: 1px solid var(--line);
      display: flex;
      align-items: flex-start;
      scroll-margin-top: var(--header-offset);
      overflow: hidden;
    }

    .why-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.8fr);
      gap: 34px;
      align-items: start;
      padding: clamp(68px, 9svh, 112px) 0 48px;
    }

    .why-copy p {
      color: var(--muted);
      font-size: 18px;
      max-width: 650px;
    }

    .why-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .why-list li {
      min-height: 78px;
      display: grid;
      grid-template-columns: 28px minmax(0, 1fr);
      gap: 10px;
      align-items: center;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--surface);
      font-weight: 850;
    }

    .why-list li::before {
      content: "";
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: var(--forest);
      box-shadow: 0 0 0 7px rgba(73, 104, 63, 0.1);
    }

    .platform-section {
      background: #fff;
      border-top: 1px solid var(--line);
    }

    .soft-section {
      background: var(--surface);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

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

    .value-card {
      min-height: 210px;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
    }

    .value-card h3 {
      font-size: 24px;
      line-height: 1.1;
      margin-bottom: 12px;
    }

    .value-card p {
      color: var(--muted);
      font-size: 16px;
    }

    .qr-layout,
    .security-layout,
    .workspace-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.6fr);
      gap: 42px;
      align-items: center;
    }

    .qr-showcase {
      border-radius: 8px;
      border: 1px solid var(--line);
      background: var(--mint);
      padding: 28px;
    }

    .qr-showcase .qr-panel {
      max-width: 320px;
      margin: 0 auto;
      background: rgba(255, 255, 255, 0.56);
    }

    .qr-benefits {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 22px;
    }

    .workspace-flow {
      display: grid;
      gap: 12px;
    }

    .workspace-node {
      padding: 18px 20px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      font-size: 20px;
      font-weight: 900;
      text-align: center;
    }

    .workspace-arrow {
      color: var(--forest);
      font-size: 24px;
      font-weight: 900;
      text-align: center;
      line-height: 1;
    }

    .security-panel {
      border-radius: 8px;
      background: var(--ink);
      color: #fff;
      padding: 30px;
    }

    .security-panel .section-kicker {
      color: #c9d8c3;
    }

    .security-panel h3 {
      font-size: 34px;
      line-height: 1.08;
      margin-bottom: 16px;
    }

    .security-panel p {
      color: #cbd5c7;
      font-size: 17px;
    }

    .security-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .security-list li {
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      font-weight: 850;
    }

    .product-band {
      background: #111;
      color: #fff;
      overflow: hidden;
    }

    .product-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
      gap: 42px;
      align-items: center;
    }

    .product-band .section-kicker,
    .product-band .wide-text {
      color: #c9d8c3;
    }

    .receipt-wall {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      align-items: start;
    }

    .demo-receipt {
      min-height: 360px;
      padding: 22px 20px;
      border-radius: 8px;
      background: #fffefa;
      color: #171717;
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
      overflow: hidden;
    }

    .demo-receipt:nth-child(2) {
      margin-top: 42px;
    }

    .demo-receipt:nth-child(3) {
      margin-top: 84px;
    }

    .receipt-chip {
      display: inline-flex;
      padding: 5px 10px;
      border: 1px solid #9bbce9;
      border-radius: 999px;
      color: #7a9bd0;
      font-size: 11px;
      font-weight: 800;
      margin-bottom: 16px;
    }

    .demo-receipt h3 {
      margin: 0 0 16px;
      font-size: 20px;
      line-height: 1.1;
      letter-spacing: 0.12em;
      text-align: center;
      text-transform: uppercase;
    }

    .receipt-meta,
    .receipt-lines {
      display: grid;
      gap: 8px;
    }

    .receipt-meta div,
    .receipt-lines div,
    .receipt-total {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      font-size: 12px;
      line-height: 1.25;
    }

    .receipt-meta span,
    .receipt-lines span {
      color: #5e625d;
    }

    .receipt-rule {
      height: 1px;
      margin: 18px 0;
      background: #d4d4ce;
    }

    .receipt-section-title {
      margin: 0 0 10px;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .receipt-store {
      display: grid;
      gap: 5px;
      color: #303030;
      font-size: 13px;
      line-height: 1.25;
    }

    .receipt-total {
      margin-top: 12px;
      font-size: 15px;
      font-weight: 900;
    }

    .workflow {
      background: var(--surface);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      min-height: calc(100svh - var(--header-offset));
      padding: 0;
      display: flex;
      align-items: flex-start;
    }

    .workflow .container {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      padding: clamp(68px, 9svh, 112px) 0 56px;
    }

    .workflow .section-heading {
      margin-bottom: 26px;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      counter-reset: step;
    }

    .step {
      counter-increment: step;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
    }

    .step::before {
      content: "0" counter(step);
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--mint);
      color: var(--forest);
      font-weight: 950;
      margin-bottom: 24px;
    }

    .step h3 {
      font-size: 22px;
      margin-bottom: 8px;
    }

    .step p {
      color: var(--muted);
    }

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

    .audience {
      border-radius: 8px;
      padding: 24px;
      min-height: 520px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid var(--line);
      background: #fff;
    }

    .audience.pro {
      background: var(--mint);
      border-color: #c6d8be;
    }

    .audience.premium {
      background: #fff8de;
      border-color: #ead68c;
    }

    .audience.company {
      background: #111;
      border-color: #111;
      color: #fff;
    }

    .audience.company p {
      color: #d9e5d4;
    }

    .audience.company .pill {
      color: #fff;
      border-color: rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.1);
    }

    .plan-topline {
      display: grid;
      gap: 8px;
      margin-bottom: 28px;
    }

    .plan-workspace {
      display: block;
      color: var(--forest);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      min-height: 15px;
      white-space: nowrap;
    }

    .audience.company .plan-workspace {
      color: #d9e5d4;
    }

    .plan-price {
      margin: 8px 0 14px;
      font-size: 38px;
      line-height: 1;
      font-weight: 950;
    }

    .plan-price span {
      color: var(--muted);
      font-size: 15px;
      font-weight: 800;
    }

    .audience.company .plan-price span {
      color: #d9e5d4;
    }

    .plan-features {
      display: grid;
      gap: 10px;
      margin: 20px 0 0;
      padding: 0;
      list-style: none;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.35;
    }

    .plan-features li {
      display: grid;
      grid-template-columns: 18px minmax(0, 1fr);
      gap: 8px;
    }

    .plan-features li::before {
      content: "";
      width: 8px;
      height: 8px;
      margin-top: 6px;
      border-radius: 50%;
      background: var(--forest);
    }

    .audience.company .plan-features {
      color: #d9e5d4;
    }

    .audience.company .plan-features li::before {
      background: #fff;
    }

    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(22, 23, 21, 0.14);
      background: rgba(255, 255, 255, 0.62);
      font-size: 13px;
      font-weight: 800;
    }

    .audience h3 {
      font-size: 30px;
      line-height: 1.05;
      margin-bottom: 0;
    }

    .audience p {
      color: var(--muted);
      font-size: 15px;
    }

    .trust {
      background: #fff;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: 0.75fr 1fr;
      gap: 36px;
      align-items: center;
    }

    .trust-panel {
      background: var(--ink);
      color: #fff;
      border-radius: 8px;
      padding: 30px;
    }

    .trust-panel h3 {
      font-size: 34px;
      line-height: 1.08;
      margin-bottom: 20px;
    }

    .trust-panel p {
      color: #cbd5c7;
      font-size: 17px;
    }

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

    .check {
      display: grid;
      grid-template-columns: 30px minmax(0, 1fr);
      gap: 12px;
      align-items: start;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--surface);
    }

    .check svg {
      color: var(--forest);
      margin-top: 2px;
    }

    .check b {
      display: block;
      margin-bottom: 5px;
    }

    .check span {
      color: var(--muted);
      font-size: 14px;
    }

    .waitlist {
      background: var(--mint);
    }

    .cta-shell {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
      gap: 34px;
      align-items: center;
    }

    .cta-shell.align-start {
      align-items: start;
    }

    .signup {
      border-radius: 8px;
      border: 1px solid rgba(73, 104, 63, 0.22);
      background: rgba(255, 255, 255, 0.68);
      padding: 22px;
      box-shadow: 0 16px 48px rgba(73, 104, 63, 0.16);
    }

    .cta-shell .wide-text + .wide-text {
      margin-top: 14px;
    }

    .signup label {
      display: block;
      color: var(--muted);
      font-size: 13px;
      font-weight: 850;
      margin: 14px 0 7px;
    }

    .signup input,
    .signup select {
      width: 100%;
      min-height: 48px;
      border: 1px solid #cbd9c5;
      border-radius: 8px;
      background: #fff;
      color: var(--ink);
      padding: 0 13px;
      outline: none;
    }

    .signup input:focus,
    .signup select:focus {
      border-color: var(--forest);
      box-shadow: 0 0 0 4px rgba(73, 104, 63, 0.12);
    }

    .signup .button {
      width: 100%;
      margin-top: 18px;
    }

    .form-note {
      min-height: 22px;
      margin-top: 12px;
      color: var(--forest);
      font-size: 13px;
      font-weight: 800;
    }

    .site-footer {
      background: #111311;
      color: #fff;
      padding: 48px 0 28px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-inner {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 1.1fr);
      gap: clamp(34px, 6vw, 86px);
      color: #c6d0c2;
    }

    .footer-logo {
      width: 172px;
      filter: invert(1);
      margin-bottom: 18px;
    }

    .footer-brand p {
      max-width: 560px;
      color: #c6d0c2;
      font-size: 16px;
      line-height: 1.55;
    }

    .footer-brand p + p {
      margin-top: 10px;
    }

    .footer-tagline {
      color: #fff;
      font-size: 19px;
      font-weight: 850;
      line-height: 1.25;
    }

    .footer-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .footer-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 34px;
      padding: 0 12px;
      border: 1px solid rgba(217, 229, 212, 0.16);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.04);
      color: #e2eadf;
      font-size: 13px;
      font-weight: 800;
    }

    .footer-pill svg {
      width: 15px;
      height: 15px;
      color: #aeca9e;
    }

    .footer-content {
      display: grid;
      align-content: start;
      gap: 24px;
    }

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

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

    .footer-title {
      color: #82917e;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .footer-links a {
      color: #d9e5d4;
      font-weight: 800;
      line-height: 1.3;
      transition: color 160ms ease;
    }

    .footer-links a:hover {
      color: #fff;
    }

    .footer-links a[aria-current="page"] {
      color: #fff;
      text-decoration: underline;
    }

    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 12px 24px;
      padding-top: 22px;
      border-top: 1px solid rgba(217, 229, 212, 0.12);
      color: #9ca89a;
      font-size: 13px;
    }

    .footer-bottom p {
      margin: 0;
    }

    @media (max-width: 980px) {
      .nav-links,
      .nav-actions .button.secondary {
        display: none;
      }

      .menu-button {
        display: grid;
      }

      .nav.open {
        align-items: flex-start;
        padding: 16px 0;
      }

      .nav.open .nav-links {
        position: absolute;
        top: 76px;
        left: 20px;
        right: 20px;
        display: grid;
        gap: 2px;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 18px 38px rgba(22, 23, 21, 0.12);
      }

      .nav.open .nav-links a {
        padding: 12px;
      }

      .hero-inner,
      .product-layout,
      .why-grid,
      .qr-layout,
      .security-layout,
      .workspace-layout,
      .trust-grid,
      .cta-shell,
      .section-heading {
        min-height: 0;
        grid-template-columns: 1fr;
      }

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

      .hero {
        height: auto;
        min-height: auto;
        max-height: none;
        background: var(--mint);
      }

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

      .phone {
        width: min(300px, 100%);
      }

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

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

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

      .why-list,
      .security-list {
        grid-template-columns: 1fr;
      }

      .why-section,
      .workflow {
        min-height: auto;
        overflow: visible;
      }

      .why-grid,
      .workflow .container {
        padding: 66px 0;
      }
    }

    @media (max-width: 720px) {
      .nav,
      .container,
      .footer-inner,
      .hero-inner {
        width: min(100% - 28px, 1180px);
      }

      .brand img {
        width: 145px;
      }

      .nav-actions .button.primary {
        display: none;
      }

      .hero {
        min-height: auto;
        padding: 0;
      }

      .hero-inner {
        padding: 32px 0 30px;
        gap: 34px;
        transform: none;
      }

      h1 {
        font-size: clamp(24px, 7.2vw, 38px);
        line-height: 1;
      }

      .hero-logo-title {
        width: 270px;
        max-width: calc(100% + 34px);
        height: 74px;
        margin-top: 28px;
        margin-left: -18px;
      }

      .hero-copy > p {
        font-size: 18px;
      }

      .proof-row {
        display: none;
      }

      .hero-visual {
        display: grid;
      }

      .phone {
        width: min(300px, 100%);
      }

      h2 {
        font-size: 40px;
      }

      .audience h3 {
        font-size: 30px;
      }

      .proof-row,
      .feature-grid,
      .steps,
      .audience-grid,
      .check-list,
      .receipt-wall {
        grid-template-columns: 1fr;
      }

      .feature-card,
      .value-card {
        min-height: 0;
      }

      .proof-row {
        gap: 16px;
      }

      section {
        padding: 66px 0;
      }

      .screen {
        min-height: auto;
      }

      .app-row {
        grid-template-columns: 42px minmax(0, 1fr);
      }

      .app-row .amount,
      .app-row .status {
        grid-column: 2;
        justify-self: start;
      }

      .demo-receipt,
      .demo-receipt:nth-child(2),
      .demo-receipt:nth-child(3) {
        min-height: auto;
        margin-top: 0;
      }

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

      .footer-bottom {
        display: grid;
      }
    }

    .legal-main {
      padding: 56px 0 92px;
    }

    @media (max-width: 720px) {
      .legal-main {
        padding-top: 32px;
      }
    }

    .legal-back {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--forest);
      font-weight: 800;
      font-size: 14px;
      margin-bottom: 28px;
    }

    .draft-banner {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 32px;
      padding: 16px 18px;
      border: 1px solid #ead68c;
      border-radius: 8px;
      background: #fff8de;
      color: #6b5a12;
      font-size: 14px;
      line-height: 1.5;
    }

    .draft-banner strong {
      color: #4a3d0a;
    }

    .legal-content {
      max-width: 760px;
    }

    .legal-content h1 {
      font-size: clamp(30px, 4vw, 40px);
      line-height: 1.1;
      max-width: none;
      margin-top: 0;
    }

    .legal-content .legal-updated {
      color: var(--muted);
      font-size: 14px;
      margin-top: 10px;
    }

    .legal-content h2 {
      font-size: 22px;
      margin-top: 40px;
      margin-bottom: 12px;
    }

    .legal-content p,
    .legal-content li {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.6;
    }

    .legal-content ul {
      margin: 0;
      padding-left: 20px;
      display: grid;
      gap: 8px;
    }

    .legal-content a {
      color: var(--forest);
      font-weight: 700;
      text-decoration: underline;
    }

    .cookie-banner {
      position: fixed;
      left: 16px;
      right: 16px;
      bottom: 16px;
      z-index: 50;
      max-width: 640px;
      margin: 0 auto;
      display: none;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      padding: 18px 20px;
      border-radius: 8px;
      background: var(--ink);
      color: #fff;
      box-shadow: var(--shadow);
    }

    .cookie-banner.visible {
      display: flex;
    }

    .cookie-banner p {
      margin: 0;
      flex: 1 1 260px;
      color: #d9e5d4;
      font-size: 14px;
    }

    .cookie-banner a {
      color: #fff;
    }

    .cookie-banner-actions {
      display: flex;
      flex: 0 0 auto;
      gap: 8px;
    }
