    :root {
      --purple: #491C96;
      --purple-900: #210747;
      --purple-800: #2F0D64;
      --purple-700: #3D1380;
      --purple-600: #491C96;
      --purple-500: #6530C0;
      --purple-400: #865CE4;
      --purple-300: #BBA1FF;
      --purple-100: #F0E9FF;
      --purple-50: #F8F5FF;

      --mint: #4FD3C4;
      --mint-600: #27B8A9;
      --mint-100: #E7FBF8;
      --mint-50: #F3FFFD;

      --ink: #2B2633;
      --text: #3A3443;
      --muted: #766E86;
      --soft-muted: #958CA7;
      --editorial-gray: #3A3443;
      --line: #E4DDF0;
      --line-2: #EFE8FA;
      --white: #FFFFFF;
      --offwhite: #FCFAFF;
      --cream: #FEFCFF;

      --shadow: 0 24px 70px rgba(73, 28, 150, 0.14);
      --shadow-soft: 0 12px 34px rgba(73, 28, 150, 0.09);
      --radius-xl: 34px;
      --radius-lg: 26px;
      --radius-md: 18px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at 8% 0%, rgba(73, 28, 150, 0.08), transparent 30%),
        radial-gradient(circle at 92% 3%, rgba(79, 211, 196, 0.12), transparent 28%),
        linear-gradient(180deg, #FFFFFF 0%, #FCFAFF 54%, #FFFFFF 100%);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(73, 28, 150, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(73, 28, 150, 0.035) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.38), rgba(0,0,0,.06));
      z-index: -1;
    }

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

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

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

    .topbar {
      position: sticky;
      top: 0;
      z-index: 60;
      background: rgba(255, 255, 255, 0.88);
      border-bottom: 1px solid rgba(228, 221, 240, 0.82);
      backdrop-filter: blur(22px);
    }

    .nav {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .brand-symbol {
      width: 44px;
      height: 44px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background:
        radial-gradient(circle at 68% 38%, var(--mint) 0 8px, transparent 9px),
        linear-gradient(135deg, var(--purple), var(--purple-400));
      box-shadow: 0 14px 34px rgba(73, 28, 150, 0.18);
      position: relative;
    }

    .brand-symbol::before,
    .brand-symbol::after {
      content: "";
      position: absolute;
      background: #FFFFFF;
      border-radius: 999px;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
    }

    .brand-symbol::before { width: 24px; height: 6px; }
    .brand-symbol::after { width: 6px; height: 24px; }

    .brand-logo-img {
      display: block;
      width: 124px;
      height: 38px;
      background-color: var(--purple);
      -webkit-mask: url('../assets/logo-ave-blanco.png?v=5') center / contain no-repeat;
              mask: url('../assets/logo-ave-blanco.png?v=5') center / contain no-repeat;
    }

    footer .brand .brand-logo-img {
      width: 124px;
      height: 38px;
    }

    .brand-word {
      font-size: 32px;
      line-height: 1;
      letter-spacing: -0.065em;
      font-weight: 600;
      color: var(--purple);
    }

    .brand small {
      display: block;
      margin-top: 2px;
      font-family: "Inter", sans-serif;
      font-size: 9px;
      letter-spacing: 0.46em;
      color: var(--soft-muted);
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 500;
    }

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

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      border: 1px solid transparent;
      cursor: pointer;
      font-family: "Inter", sans-serif;
      font-size: 14px;
      font-weight: 600;
      transition: .18s ease;
      white-space: nowrap;
    }

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

    .button.primary {
      color: #FFFFFF;
      background: linear-gradient(135deg, var(--purple), var(--purple-400));
      box-shadow: 0 18px 44px rgba(73, 28, 150, 0.24);
    }

    .button.primary:hover {
      box-shadow: 0 22px 54px rgba(73, 28, 150, 0.31);
    }

    .button.secondary {
      color: var(--purple);
      background: #FFFFFF;
      border-color: var(--line);
      box-shadow: 0 10px 28px rgba(73, 28, 150, 0.08);
    }

    .button.secondary:hover {
      border-color: var(--purple-300);
      background: var(--purple-50);
    }

    .button.mint {
      color: var(--purple-900);
      background: linear-gradient(135deg, var(--mint), #87F0E5);
      box-shadow: 0 18px 38px rgba(79, 211, 196, 0.23);
    }

    .button.ghost {
      color: var(--purple);
      background: var(--purple-50);
      border-color: var(--line-2);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: #FFFFFF;
      border: 1px solid var(--line);
      color: var(--purple);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      box-shadow: var(--shadow-soft);
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 99px;
      background: linear-gradient(135deg, var(--purple), var(--mint));
      display: inline-block;
    }

    .hero {
      padding: 92px 0 60px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      width: 860px;
      height: 860px;
      right: -330px;
      top: -360px;
      border-radius: 50%;
      background:
        radial-gradient(circle at 42% 40%, rgba(79,211,196,.22), transparent 25%),
        radial-gradient(circle at 55% 30%, rgba(134,92,228,.28), transparent 42%),
        radial-gradient(circle, rgba(73,28,150,.12), transparent 64%);
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: 1.86fr 1fr;
      gap: 54px;
      align-items: center;
    }

    h1 {
      margin-top: 24px;
      font-size: clamp(44px, 7.2vw, 78px);
      line-height: .98;
      letter-spacing: -0.062em;
      max-width: 780px;
      font-weight: 700;
      color: var(--ink);
    }

    h2 {
      font-size: clamp(34px, 5.3vw, 58px);
      line-height: 1.02;
      letter-spacing: -0.052em;
      font-weight: 700;
      color: var(--ink);
    }

    h3 {
      font-size: 24px;
      line-height: 1.16;
      letter-spacing: -0.026em;
      font-weight: 700;
      color: var(--ink);
    }

    .gradient-text {
      color: transparent;
      background: linear-gradient(135deg, var(--purple) 0%, var(--purple-400) 58%, var(--mint-600) 100%);
      -webkit-background-clip: text;
      background-clip: text;
    }

    .lead {
      color: var(--muted);
      font-size: 19px;
      line-height: 1.72;
    }

    .hero .lead {
      margin-top: 24px;
      max-width: 690px;
    }

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

    .proof-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 31px;
      max-width: 700px;
    }

    .proof {
      background: #FFFFFF;
      border: 1px solid var(--line-2);
      border-radius: 22px;
      padding: 18px;
      box-shadow: var(--shadow-soft);
    }

    .proof strong {
      display: block;
      font-size: 27px;
      letter-spacing: -0.05em;
      color: var(--purple);
    }

    .proof span {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.38;
    }

    .product-preview {
      background: #FFFFFF;
      border: 1px solid var(--line);
      border-radius: 34px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .preview-top {
      min-height: 70px;
      padding: 18px 20px;
      border-bottom: 1px solid var(--line-2);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      background: linear-gradient(180deg, #FFFFFF, var(--purple-50));
    }

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

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

    .preview-pill {
      padding: 7px 10px;
      border-radius: 999px;
      background: var(--mint-100);
      color: var(--purple);
      border: 1px solid rgba(79, 211, 196, 0.32);
      font-weight: 700;
      font-size: 12px;
    }

    .preview-body {
      padding: 22px;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 18px;
    }

    .catalog-card, .quote-panel, .crm-panel {
      background: var(--offwhite);
      border: 1px solid var(--line-2);
      border-radius: 26px;
      padding: 17px;
    }

    .catalog-visual {
      height: 214px;
      border-radius: 22px;
      border: 1px solid var(--line);
      background:
        radial-gradient(circle at 25% 20%, rgba(79,211,196,.32), transparent 28%),
        radial-gradient(circle at 72% 36%, rgba(134,92,228,.42), transparent 36%),
        linear-gradient(135deg, #F8F5FF, #EFE8FF 66%);
      display: grid;
      place-items: center;
      text-align: center;
      overflow: hidden;
      position: relative;
    }

    .catalog-visual::after {
      content: "";
      position: absolute;
      inset: -30px;
      background: linear-gradient(110deg, transparent 15%, rgba(255,255,255,.50), transparent 55%);
      transform: rotate(12deg);
    }

    .logo-square {
      position: relative;
      z-index: 1;
      width: 78px;
      height: 78px;
      border-radius: 22px;
      margin: 0 auto 12px;
      display: grid;
      place-items: center;
      background: var(--purple);
      color: #FFFFFF;
      font-weight: 700;
      box-shadow: 0 18px 40px rgba(73,28,150,.22);
    }

    .catalog-meta { margin-top: 15px; }

    .row-between {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      padding: 6px 10px;
      font-size: 12px;
      font-weight: 700;
      background: var(--mint-100);
      color: var(--purple);
      border: 1px solid rgba(79, 211, 196, 0.32);
    }

    .mini-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-top: 13px;
    }

    .mini {
      background: #FFFFFF;
      border: 1px solid var(--line-2);
      border-radius: 15px;
      padding: 10px;
      font-size: 12px;
    }

    .mini span {
      display: block;
      color: var(--muted);
      margin-bottom: 3px;
    }

    .workflow-panel {
      display: grid;
      gap: 14px;
    }

    .quote-lines {
      display: grid;
      gap: 9px;
      margin-top: 14px;
    }

    .quote-line {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #FFFFFF;
      border-radius: 14px;
      padding: 10px 12px;
      color: var(--muted);
      font-size: 14px;
      border: 1px solid var(--line-2);
    }

    .quote-line strong { color: var(--ink); }

    .crm-step {
      display: grid;
      grid-template-columns: 16px 1fr;
      gap: 10px;
      align-items: center;
      padding: 9px 0;
      color: var(--muted);
      font-size: 14px;
    }

    .step-dot {
      width: 10px;
      height: 10px;
      border-radius: 99px;
      background: #D8CCEE;
    }

    .step-dot.active { background: var(--purple); }

    .strip {
      padding: 26px 0 62px;
    }

    .strip-inner {
      border: 1px solid var(--line);
      border-radius: 28px;
      box-shadow: var(--shadow-soft);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      overflow: hidden;
      background: #FFFFFF;
    }

    .strip-item {
      padding: 22px;
      border-right: 1px solid var(--line-2);
      background: linear-gradient(180deg, #FFFFFF, var(--purple-50));
    }

    .strip-item:last-child { border-right: 0; }

    .strip-item strong {
      display: block;
      font-size: 14px;
      margin-bottom: 7px;
      color: var(--purple);
    }

    .strip-item span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    section {
      padding: 90px 0;
      position: relative;
    }

    .section-panel {
      border-top: 1px solid var(--line-2);
      border-bottom: 1px solid var(--line-2);
      background:
        radial-gradient(circle at 10% 10%, rgba(134,92,228,.08), transparent 26%),
        linear-gradient(180deg, #FFFFFF, var(--offwhite));
    }

    .section-head {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 52px;
      align-items: end;
      margin-bottom: 46px;
    }

    .section-head .lead { max-width: 690px; }

    .before-after {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      align-items: stretch;
      margin-bottom: 38px;
    }

    .state-card {
      border-radius: 30px;
      padding: 31px;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
      background: #FFFFFF;
    }

    .state-card.before {
      background:
        radial-gradient(circle at 0% 0%, rgba(134,92,228,.10), transparent 32%),
        linear-gradient(180deg, #FFFFFF, var(--purple-50));
    }

    .state-card.before .state-label {
      background: #69E0D3;
      color: #0E2D2A;
      border-color: transparent;
    }

    .state-card.after {
      background:
        radial-gradient(circle at 85% 0%, rgba(79,211,196,.19), transparent 30%),
        linear-gradient(145deg, #FFFFFF, #F8F5FF);
      border-color: rgba(73,28,150,.20);
    }

    .state-card.after .state-label {
      background: #5D31B0;
      color: #FFFFFF;
      border-color: transparent;
    }

    .state-label {
      display: inline-flex;
      padding: 7px 10px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      background: #FFFFFF;
      color: var(--purple);
      border: 1px solid var(--line);
    }

    .state-card h3 {
      margin-top: 20px;
      font-size: 34px;
    }

    .state-card ul {
      margin: 22px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .state-card li {
      display: flex;
      gap: 10px;
      line-height: 1.48;
      color: var(--muted);
    }

    .x { color: #C2414B; font-weight: 700; }
    .check { color: var(--mint-600); font-weight: 700; }

    .benefit-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .benefit-card, .module-card, .faq-item {
      border: 1px solid var(--line);
      background: #FFFFFF;
      border-radius: 28px;
      padding: 26px;
      box-shadow: var(--shadow-soft);
    }

    .number {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: var(--purple-50);
      color: var(--purple);
      border: 1px solid var(--line-2);
      display: grid;
      place-items: center;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .benefit-card p, .module-card p, .faq-item p {
      color: var(--muted);
      line-height: 1.64;
      margin-top: 11px;
    }

    .center-cta {
      margin-top: 34px;
      display: flex;
      justify-content: center;
    }

    .workflow-grid {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 42px;
      align-items: start;
    }

    .workflow-copy {
      position: sticky;
      top: 108px;
    }

    .workflow-copy .lead { margin-top: 20px; }

    .timeline {
      display: grid;
      gap: 14px;
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 70px 1fr;
      gap: 18px;
      background: #FFFFFF;
      border: 1px solid var(--line);
      border-radius: 26px;
      padding: 20px;
      box-shadow: var(--shadow-soft);
    }

    .timeline-num {
      width: 56px;
      height: 56px;
      border-radius: 19px;
      background: linear-gradient(135deg, var(--purple), var(--purple-400));
      color: #FFFFFF;
      display: grid;
      place-items: center;
      font-weight: 700;
      box-shadow: 0 16px 28px rgba(73,28,150,.20);
    }

    .timeline-item p {
      color: var(--muted);
      line-height: 1.62;
      margin-top: 6px;
    }

    .module-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .module-card .icon {
      width: 50px;
      height: 50px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--purple-50), var(--mint-100));
      color: var(--purple);
      border: 1px solid var(--line-2);
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      box-shadow: 0 8px 18px rgba(73, 28, 150, 0.08);
    }

    .module-card .icon svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .pricing {
      background:
        radial-gradient(circle at 15% 15%, rgba(79,211,196,.16), transparent 24%),
        radial-gradient(circle at 92% 10%, rgba(134,92,228,.14), transparent 30%),
        linear-gradient(180deg, #FFFFFF, var(--purple-50));
      border-top: 1px solid var(--line-2);
      border-bottom: 1px solid var(--line-2);
    }

    .pricing-head {
      text-align: center;
      max-width: 850px;
      margin: 0 auto 44px;
    }

    .pricing-head .lead { margin-top: 20px; }

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

    .price-card {
      position: relative;
      border-radius: 32px;
      padding: 32px;
      min-height: 650px;
      display: flex;
      flex-direction: column;
      border: 1px solid var(--line);
      background: #FFFFFF;
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .price-card.featured {
      background:
        radial-gradient(circle at 20% 0%, rgba(187,161,255,.38), transparent 34%),
        radial-gradient(circle at 92% 22%, rgba(79,211,196,.18), transparent 28%),
        linear-gradient(160deg, #6B32D3 0%, #491C96 45%, #2F0D64 100%);
      border-color: rgba(73,28,150,.24);
      color: #FFFFFF;
      box-shadow: 0 34px 90px rgba(73,28,150,.34);
      transform: translateY(-10px);
    }

    .price-card.enterprise {
      background:
        radial-gradient(circle at 85% 0%, rgba(79,211,196,.13), transparent 25%),
        linear-gradient(180deg, #FFFFFF, #F8F5FF);
    }

    .recommend {
      display: inline-flex;
      align-self: flex-start;
      padding: 9px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.92);
      color: var(--purple);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .plan-name {
      font-size: 30px;
      letter-spacing: -0.045em;
      margin-bottom: 12px;
    }

    .plan-desc {
      color: var(--muted);
      line-height: 1.45;
      min-height: 44px;
      max-width: 28ch;
      margin-bottom: 20px;
    }

    .price-card.featured .plan-desc,
    .price-card.featured .setup,
    .price-card.featured .period,
    .price-card.featured .tax,
    .price-card.featured .features {
      color: rgba(255,255,255,.80);
    }

    .setup {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
      margin-bottom: 12px;
    }

    .setup strong {
      color: inherit;
    }

    .price {
      display: flex;
      align-items: flex-end;
      gap: 7px;
      margin-bottom: 8px;
    }

    .currency {
      color: var(--soft-muted);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .08em;
      margin-bottom: 11px;
    }

    .price-card.featured .currency { color: rgba(255,255,255,.72); }

    .amount {
      font-size: 48px;
      line-height: .96;
      letter-spacing: -0.062em;
      font-weight: 800;
    }

    .period {
      color: var(--muted);
      font-weight: 700;
      margin-bottom: 5px;
    }

    .tax {
      font-size: 12px;
      color: var(--soft-muted);
      margin-bottom: 22px;
    }

    .divider {
      width: 100%;
      height: 1px;
      background: var(--line-2);
      margin: 12px 0 24px;
    }

    .price-card.featured .divider { background: rgba(255,255,255,.20); }

    .features {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 15px;
      color: var(--muted);
      line-height: 1.35;
      flex: 1;
    }

    .features li {
      display: flex;
      gap: 11px;
      align-items: flex-start;
    }

    .features li::before {
      content: "✓";
      color: var(--purple);
      font-weight: 700;
      flex: none;
    }

    .price-card.featured .features li::before { color: var(--mint); }

    .price-card .button {
      width: 100%;
      margin-top: 28px;
    }

    .enterprise-badge {
      margin-top: 18px;
      display: inline-flex;
      align-self: flex-start;
      padding: 9px 13px;
      border-radius: 999px;
      background: var(--mint-100);
      border: 1px solid rgba(79,211,196,.30);
      color: var(--purple);
      font-size: 12px;
      font-weight: 700;
    }

    .importers {
      background:
        radial-gradient(circle at 90% 18%, rgba(79,211,196,.16), transparent 28%),
        linear-gradient(180deg, #FFFFFF, var(--offwhite));
      border-top: 1px solid var(--line-2);
      border-bottom: 1px solid var(--line-2);
    }

    .importer-layout {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 48px;
      align-items: center;
    }

    .importer-card {
      background: #FFFFFF;
      border: 1px solid var(--line);
      border-radius: 32px;
      padding: 30px;
      box-shadow: var(--shadow-soft);
    }

    .importer-list {
      display: grid;
      gap: 14px;
    }

    .importer-item {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 14px;
      align-items: start;
      padding: 18px;
      background: var(--purple-50);
      border-radius: 22px;
      border: 1px solid var(--line-2);
    }

    .importer-item .icon {
      width: 48px;
      height: 48px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      color: var(--purple);
      background: #FFFFFF;
      border: 1px solid var(--line);
      font-weight: 700;
    }

    .importer-item p {
      color: var(--muted);
      line-height: 1.55;
      margin-top: 6px;
    }

    .dashboard-preview {
      margin-top: 30px;
      border: 1px solid var(--line);
      border-radius: 30px;
      padding: 24px;
      background:
        radial-gradient(circle at 88% 12%, rgba(79,211,196,.20), transparent 28%),
        linear-gradient(145deg, #FFFFFF, #F2EBFF);
      box-shadow: var(--shadow-soft);
    }

    .dashboard-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 18px;
    }

    .metric {
      border-radius: 18px;
      padding: 16px;
      background: #FFFFFF;
      border: 1px solid var(--line-2);
    }

    .metric strong {
      display: block;
      font-size: 26px;
      letter-spacing: -0.045em;
      color: var(--purple);
    }

    .metric span {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
    }

    .security-box {
      background:
        radial-gradient(circle at 84% 0%, rgba(79,211,196,.14), transparent 26%),
        linear-gradient(180deg, #FFFFFF, var(--purple-50));
      border: 1px solid var(--line);
      border-radius: 34px;
      padding: 36px;
      box-shadow: var(--shadow);
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 36px;
      align-items: center;
    }

    .security-list {
      display: grid;
      gap: 12px;
    }

    .security-item {
      display: flex;
      gap: 10px;
      align-items: start;
      background: #FFFFFF;
      border: 1px solid var(--line-2);
      border-radius: 18px;
      padding: 15px;
      color: var(--muted);
      font-weight: 700;
      line-height: 1.4;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-top: 36px;
    }

    .form-section {
      background:
        radial-gradient(circle at 20% 0%, rgba(134,92,228,.15), transparent 25%),
        radial-gradient(circle at 90% 18%, rgba(79,211,196,.16), transparent 22%),
        linear-gradient(180deg, #FFFFFF, var(--purple-50));
      border-top: 1px solid var(--line-2);
    }

    .form-layout {
      display: grid;
      grid-template-columns: .88fr 1.12fr;
      gap: 48px;
      align-items: start;
    }

    .form-copy .lead {
      margin-top: 22px;
    }

    .form-card {
      background: #FFFFFF;
      border: 1px solid var(--line);
      border-radius: 32px;
      padding: 31px;
      box-shadow: var(--shadow);
    }

    .form-card .intro {
      color: var(--muted);
      line-height: 1.58;
      margin-top: 8px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      margin-top: 24px;
    }

    label span {
      display: block;
      margin-bottom: 7px;
      color: var(--ink);
      font-weight: 700;
      font-size: 13px;
    }

    input, select, textarea {
      width: 100%;
      min-height: 48px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: var(--offwhite);
      padding: 12px 14px;
      color: var(--ink);
      font: inherit;
      outline: none;
      transition: .18s ease;
    }

    input::placeholder, textarea::placeholder { color: #A49AAD; }

    select { color: var(--muted); }

    .terms-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-top: 18px;
      padding: 14px 16px;
      background: var(--purple-50);
      border: 1px solid var(--line-2);
      border-radius: 14px;
      font-size: 13px;
      line-height: 1.5;
      color: var(--text);
      cursor: pointer;
    }

    .terms-row input[type="checkbox"] {
      width: 18px;
      height: 18px;
      min-width: 18px;
      min-height: 18px;
      max-width: 18px;
      max-height: 18px;
      padding: 0;
      margin: 2px 0 0 0;
      flex: 0 0 18px;
      accent-color: var(--purple);
      border-radius: 4px;
      cursor: pointer;
      background: #fff;
    }

    .terms-row .terms-text {
      flex: 1;
      display: block;
      margin: 0;
      color: var(--text);
      font-weight: 500;
      font-size: 13px;
    }

    .terms-row a {
      color: var(--purple);
      text-decoration: underline;
      font-weight: 600;
    }

    input:focus, select:focus, textarea:focus {
      border-color: rgba(73, 28, 150, .45);
      background: #FFFFFF;
      box-shadow: 0 0 0 4px rgba(73, 28, 150, .10);
    }

    textarea {
      min-height: 112px;
      resize: vertical;
    }

    .full { grid-column: 1 / -1; }

    .privacy {
      color: var(--soft-muted);
      font-size: 12px;
      text-align: center;
      line-height: 1.45;
      margin-top: 14px;
    }

    footer {
      background: #FFFFFF;
      border-top: 1px solid var(--line-2);
      padding: 34px 0;
    }

    .footer-grid {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: center;
    }

    .footer-links {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

    @media (max-width: 1040px) {
      .nav-links { display: none; }

      .hero-grid,
      .section-head,
      .workflow-grid,
      .importer-layout,
      .security-box,
      .form-layout {
        grid-template-columns: 1fr;
      }

      .preview-body,
      .before-after,
      .benefit-grid,
      .module-grid,
      .faq-grid,
      .strip-inner,
      .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
      }

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

      .workflow-copy { position: static; }

      .strip-item:nth-child(2) { border-right: 0; }
      .strip-item:nth-child(1), .strip-item:nth-child(2) { border-bottom: 1px solid var(--line-2); }

      .pricing-grid .price-card.enterprise {
        grid-column: 1 / -1;
        min-height: auto;
      }
    }

    @media (max-width: 680px) {
      .container { width: min(100% - 28px, 1180px); }
      .brand small { display: none; }
      .brand-word { font-size: 26px; }
      .topbar .button { padding: 0 14px; font-size: 13px; }
      .hero { padding: 60px 0 38px; }
      section { padding: 66px 0; }

      .hero-actions .button,
      .center-cta .button {
        width: 100%;
      }

      .proof-row,
      .preview-body,
      .before-after,
      .benefit-grid,
      .module-grid,
      .faq-grid,
      .strip-inner,
      .pricing-grid,
      .form-grid,
      .mini-grid,
      .dashboard-grid {
        grid-template-columns: 1fr;
      }

      .strip-item {
        border-right: 0;
        border-bottom: 1px solid var(--line-2);
      }

      .strip-item:last-child { border-bottom: 0; }

      .timeline-item { grid-template-columns: 1fr; }

      .state-card h3 { font-size: 28px; }

      .price-card { min-height: auto; }

      .footer-grid {
        align-items: flex-start;
        flex-direction: column;
      }

      h1 { font-size: 43px; }
      h2 { font-size: 35px; }
    }

/* Honeypot: off-screen but in DOM. Bots fill it, humans don't see it. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ========== Hero image ========== */
.hero-image {
  display: block;
  position: relative;
  width: 100%;
  /* allow image to overflow toward the right; .hero has overflow:hidden so it clips at viewport */
  overflow: visible;
}

.hero-image img {
  display: block;
  width: 200%;
  max-width: none;
  height: auto;
  /* push the image to the right so ~50% is visible inside the column */
  margin-left: 0;
  border-radius: var(--radius-lg);
  background: transparent;
  /* vertical fade-to-transparent on the right edge */
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 55%, rgba(0,0,0,0.35) 85%, transparent 100%);
          mask-image: linear-gradient(to right, #000 0%, #000 55%, rgba(0,0,0,0.35) 85%, transparent 100%);
}

@media (max-width: 1040px) {
  .hero-image {
    max-width: 720px;
    margin: 0 auto;
  }
  .hero-image img {
    width: 100%;
    margin-left: 0;
    -webkit-mask-image: none;
            mask-image: none;
  }
}

/* ========== Partners marquee ========== */
.partners-section {
  padding: 54px 0 58px;
  background: #FFFFFF;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}

.partners-layout {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: 34px;
  align-items: center;
}

.partners-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mint-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.partners-kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--purple), var(--mint));
  flex: none;
}

.partners-title {
  color: var(--purple);
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.partners-copy {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  max-width: 32ch;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: logo-scroll 32s linear infinite;
}

.logo-marquee:hover .logo-marquee-track { animation-play-state: paused; }

.logo-slot {
  flex: 0 0 auto;
  min-width: 160px;
  height: 92px;
  border-radius: 20px;
  border: 1px solid var(--line-2);
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  box-shadow: 0 10px 28px rgba(73, 28, 150, 0.06);
}

.logo-slot img {
  max-width: 140px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(0.15);
  opacity: 0.92;
  transition: filter .2s ease, opacity .2s ease;
}

.logo-slot:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@keyframes logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

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

@media (max-width: 1040px) {
  .partners-layout { grid-template-columns: 1fr; }
}

/* ========== FAQ accordion ========== */
.faq-item details {
  width: 100%;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.faq-item details > p {
  font-size: 14px;
}

.faq-item summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: none;
  color: var(--purple);
  background: var(--purple-50);
  border: 1px solid var(--line-2);
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  transition: .18s ease;
}

.faq-item details[open] summary::after {
  content: "–";
  background: linear-gradient(135deg, var(--purple), var(--purple-400));
  color: #FFFFFF;
  border-color: transparent;
}

.faq-item details > p {
  margin-top: 12px;
}

.faq-item details[open] > p {
  animation: faqFade .18s ease;
}

@keyframes faqFade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========== Tablet / intermediate breakpoint (681px - 1040px) ========== */
@media (min-width: 681px) and (max-width: 1040px) {
  h1 { font-size: clamp(36px, 5.4vw, 56px); }
  h2 { font-size: clamp(28px, 4vw, 40px); }
  h3 { font-size: 18px; }

  .lead { font-size: 15px; }
  .eyebrow { font-size: 11px; }

  .state-card { padding: 26px; }
  .state-card h3 { font-size: 26px; }

  .benefit-card, .module-card, .faq-item { padding: 24px; }

  .partners-title { font-size: 22px; }
  .partners-copy { font-size: 13px; }

  .price-card { padding: 28px; }
  .plan-name { font-size: 22px; }
  .price .amount { font-size: 32px; }

  .timeline-item h3 { font-size: 18px; }

  .form-card { padding: 28px; }
  .form-card h3 { font-size: 24px !important; }

  section { padding: 78px 0; }
  .hero { padding: 70px 0 50px; }
}

/* ========== Header CTA group + mobile nav ========== */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button.ghost {
  color: var(--purple);
  background: transparent;
  border-color: transparent;
}

.button.ghost:hover {
  background: var(--purple-50);
}

.nav-login-mobile { display: none; }

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #FFFFFF;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}

.nav-toggle span:nth-child(1) { margin-top: -7px; }
.nav-toggle span:nth-child(3) { margin-top: 7px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  margin-top: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  margin-top: 0;
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 1040px) {
  .nav-toggle { display: block; }

  .nav-cta .nav-login { display: none; }

  .nav-links {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 28px 24px;
    background: #FFFFFF;
    border-bottom: 1px solid var(--line-2);
    box-shadow: 0 18px 36px rgba(73, 28, 150, 0.08);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .22s ease, opacity .22s ease, visibility .22s ease;
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-2);
    color: var(--ink);
    font-size: 15px;
    font-weight: 500;
  }

  .nav-links a:last-child { border-bottom: 0; }

  .nav-login-mobile {
    display: block !important;
    margin-top: 10px;
    color: var(--purple) !important;
    font-weight: 600 !important;
  }

  .topbar.nav-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .topbar { position: relative; }
  .topbar.nav-open { position: sticky; }
}

@media (max-width: 680px) {
  .nav-cta .button.primary { padding: 0 14px; font-size: 13px; min-height: 42px; }
}
