    :root {
      --bg: #070A13;
      --bg-soft: #0E1424;
      --line: rgba(255, 255, 255, 0.14);
      --text: #F7FAFC;
      --muted: #B8C1D9;
      --muted-2: #8793B0;
      --blue: #38BDF8;
      --cyan: #22D3EE;
      --green: #34D399;
      --orange: #F97316;
      --purple: #A78BFA;
      --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
      --radius-xl: 28px;
      --radius-lg: 20px;
      --max: 1180px;
    }

    * { 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;
      background:
        radial-gradient(circle at 18% 12%, rgba(56, 189, 248, 0.22), transparent 32%),
        radial-gradient(circle at 84% 8%, rgba(236, 72, 153, 0.16), transparent 34%),
        radial-gradient(circle at 50% 72%, rgba(34, 211, 238, 0.10), transparent 36%),
        var(--bg);
      color: var(--text);
      line-height: 1.55;
      overflow-x: hidden;
    }

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

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

    header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(20px);
      background: rgba(7, 10, 19, 0.82);
      border-bottom: 1px solid var(--line);
    }

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

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

    .brand-logo {
      height: 54px;
      width: 54px;
      object-fit: contain;
      border-radius: 14px;
      box-shadow: 0 10px 24px rgba(56, 189, 248, 0.20);
    }

    .brand-wordmark {
      display: flex;
      flex-direction: column;
      line-height: 1.02;
    }

    .brand-name {
      font-size: 1.28rem;
      font-weight: 900;
      letter-spacing: -0.035em;
      color: #F7FAFC;
      white-space: nowrap;
    }

    .brand-tagline {
      margin-top: 5px;
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.18em;
      color: #B8C1D9;
      white-space: nowrap;
    }

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

    .nav-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--muted);
      font-weight: 650;
      font-size: 0.94rem;
      padding: 10px 12px;
      border-radius: 999px;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .nav-app-icon {
      width: 23px;
      height: 23px;
      border-radius: 50%;
      object-fit: cover;
      display: block;
      flex: 0 0 auto;
      clip-path: circle(48% at 50% 50%);
    }

    .home-arrow-icon {
      width: 28px;
      height: 20px;
      object-fit: cover;
      border-radius: 6px;
      box-shadow: 0 8px 18px rgba(236, 72, 153, 0.18);
      flex: 0 0 auto;
    }

    .nav-link.home-nav {
      gap: 3px;
    }

    .nav-link.home-nav { color: var(--purple); }
    .nav-link.clean-nav { color: var(--blue); }
    .nav-link.mow-nav { color: var(--green); }
    .nav-link.build-nav { color: var(--orange); }
    .nav-link.pricing-nav { color: var(--green); }

    .nav-link:hover,
    .nav-link.active {
      color: var(--text);
      background: rgba(255, 255, 255, 0.08);
    }

    .nav-link.clean-nav:hover,
    .nav-link.clean-nav.active {
      color: var(--blue);
      background: rgba(56, 189, 248, 0.12);
    }

    .nav-link.mow-nav:hover,
    .nav-link.mow-nav.active {
      color: var(--green);
      background: rgba(52, 211, 153, 0.12);
    }

    .nav-link.build-nav:hover,
    .nav-link.build-nav.active {
      color: var(--orange);
      background: rgba(249, 115, 22, 0.12);
    }

    .nav-link.home-nav:hover,
    .nav-link.home-nav.active {
      color: var(--purple);
      background: transparent;
    }

    .nav-link.pricing-nav:hover,
    .nav-link.pricing-nav.active {
      color: var(--green);
      background: rgba(52, 211, 153, 0.12);
    }

    .pricing-dollar {
      width: 24px;
      height: 24px;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      background: var(--green);
      color: #fff;
      font-weight: 950;
      line-height: 1;
    }

    .who-contact-theme {
      padding: 72px 0;
    }

    .who-contact-content {
      width: 100%;
      display: grid;
      gap: clamp(44px, 6vw, 72px);
      justify-items: stretch;
    }

    .who-contact-section {
      width: 100%;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }

    .who-card-intro {
      width: 100%;
      padding: 0;
    }

    .who-contact-section h2 {
      margin: 0 0 14px;
      font-size: clamp(1.35rem, 3vw, 2rem);
      line-height: 1.1;
      font-weight: 900;
      letter-spacing: -0.02em;
    }

    .who-contact-section p {
      margin: 0 0 14px;
      color: var(--muted);
      font-size: 1.03rem;
      line-height: 1.78;
    }

    .who-contact-section p:last-child {
      margin-bottom: 0;
    }

    .who-intro-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
      gap: clamp(36px, 6vw, 72px);
      align-items: center;
    }

    .who-brand-panel {
      display: grid;
      justify-items: center;
      gap: 12px;
      text-align: center;
    }

    .who-logo {
      width: clamp(220px, 22vw, 300px);
      height: auto;
      display: block;
    }

    .who-intro-copy {
      max-width: 780px;
      text-align: left;
    }

    .footer-link-plain {
      text-decoration: none !important;
    }

    .app-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
      color: var(--muted);
      font-size: 1.03rem;
    }

    .app-list strong {
      color: var(--text);
    }

    .contact-table {
      width: 100%;
      border-collapse: collapse;
      overflow: hidden;
      border-radius: 14px;
      color: var(--muted);
      font-size: 1rem;
    }

    .contact-table th,
    .contact-table td {
      padding: 14px 16px;
      border: 1px solid var(--line);
      text-align: left;
      vertical-align: top;
    }

    .contact-table th {
      color: var(--text);
      background: rgba(255, 255, 255, 0.08);
      font-weight: 850;
    }

    .contact-table a {
      color: var(--text);
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .nav-link.early-nav {
      color: #06131C;
      background: linear-gradient(135deg, #22D3EE, #EC4899, #3B82F6);
      box-shadow: 0 14px 32px rgba(56, 189, 248, 0.24);
    }

    .nav-link.early-nav:hover,
    .nav-link.early-nav.active {
      color: #06131C;
      filter: brightness(1.06);
      background: linear-gradient(135deg, #22D3EE, #EC4899, #3B82F6);
    }

    .hero-offer-marquee {
      width: 100%;
      overflow: hidden;
      border: 1px solid rgba(56, 189, 248, 0.26);
      border-radius: 999px;
      margin: 0 0 24px;
      background: linear-gradient(135deg, rgba(56, 189, 248, 0.16), rgba(236, 72, 153, 0.12));
      box-shadow: 0 16px 42px rgba(56, 189, 248, 0.14);
    }

    .hero-offer-static {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      width: 100%;
      margin: 0 0 24px;
      border: 1px solid rgba(56, 189, 248, 0.26);
      border-radius: 999px;
      padding: 14px 16px;
      background: linear-gradient(135deg, rgba(56, 189, 248, 0.16), rgba(236, 72, 153, 0.12));
      box-shadow: 0 16px 42px rgba(56, 189, 248, 0.14);
      text-align: center;
      color: #F7FAFC;
      font-weight: 900;
      font-size: clamp(1.08rem, 1.9vw, 1.55rem);
    }

    .hero-offer-static .btn {
      min-height: 42px;
      padding: 10px 16px;
    }

    @media (max-width: 620px) {
      .hero-offer-static {
        border-radius: 42px;
        padding: 20px 18px;
        gap: 12px;
        font-size: clamp(1rem, 5.5vw, 1.25rem);
        line-height: 1.35;
      }

      .hero-offer-static .btn {
        width: min(100%, 280px);
        min-height: 44px;
        padding: 10px 14px;
        justify-content: center;
      }

      .offer-action {
        width: 100%;
      }
    }

    .offer-click {
      color: #EAFBFF;
      font-weight: 950;
    }

    .hero-offer-track {
      display: flex;
      width: max-content;
      animation: offerScroll 19s linear infinite;
    }

    .hero-offer-track span {
      display: inline-flex;
      align-items: center;
      padding: 18px 4px;
      color: #F7FAFC;
      font-size: clamp(2.7rem, 5.7vw, 5.15rem);
      line-height: 1.04;
      font-weight: 900;
      white-space: nowrap;
    }

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

    .lang-toggle {
      display: inline-grid;
      grid-template-columns: repeat(2, minmax(78px, 1fr));
      align-items: center;
      gap: 7px;
      padding: 6px;
      border: 1px solid rgba(56, 189, 248, 0.44);
      border-radius: 999px;
      background: rgba(56, 189, 248, 0.12);
      box-shadow: 0 14px 32px rgba(56, 189, 248, 0.18);
    }

    .lang-btn {
      border: 0;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      border-radius: 999px;
      padding: 11px 16px;
      background: transparent;
      color: #D9F8FF;
      font-weight: 900;
      font-size: 0.96rem;
      line-height: 1;
      text-align: center;
    }

    .lang-btn.active {
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      color: #07101f;
      text-align: center;
    }

    main > section {
      display: none;
      animation: fadeIn 0.25s ease;
    }

    .standalone-page main > section {
      display: block;
    }

    .seo-page-section {
      padding: 28px 0 86px;
    }

    .seo-split {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      margin-top: 24px;
    }

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

    .billing-terms-grid {
      grid-template-columns: minmax(0, 1fr);
    }

    .billing-terms-card p + p {
      margin-top: 12px;
    }

    .page-faq-section {
      padding: 0 0 34px;
    }

    .page-faq-section .container {
      width: min(960px, calc(100% - 40px));
    }

    .page-faq-panel {
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 18px;
      background: rgba(255,255,255,0.055);
      box-shadow: 0 14px 38px rgba(0,0,0,0.16);
      padding: 18px;
    }

    .page-faq-header h2 {
      margin: 0 0 14px;
      font-size: clamp(1.55rem, 3vw, 2.25rem);
      line-height: 1.05;
      letter-spacing: -0.045em;
      text-align: center;
    }

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

    .page-faq-item {
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 12px;
      background: rgba(7, 10, 19, 0.42);
      overflow: hidden;
    }

    .page-faq-item summary {
      cursor: pointer;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 11px 14px;
      color: var(--text);
      font-weight: 850;
      font-size: 0.94rem;
      line-height: 1.3;
      letter-spacing: -0.025em;
    }

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

    .page-faq-item summary::after {
      content: "+";
      width: 24px;
      height: 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      border-radius: 50%;
      background: rgba(56, 189, 248, 0.12);
      color: #EAFBFF;
      font-size: 1rem;
      line-height: 1;
    }

    .page-faq-item[open] summary::after {
      content: "-";
    }

    .page-faq-item p {
      margin: 0;
      padding: 0 14px 13px;
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.45;
    }

    .page-kicker {
      display: inline-flex;
      width: fit-content;
      margin-bottom: 14px;
      padding: 7px 10px;
      border-radius: 999px;
      border: 1px solid rgba(56, 189, 248, 0.28);
      color: var(--cyan);
      background: rgba(56, 189, 248, 0.10);
      font-size: 0.82rem;
      font-weight: 850;
    }

    .page-cta-band {
      margin: 30px 0 0;
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: var(--radius-xl);
      padding: 24px;
      background: linear-gradient(135deg, rgba(56,189,248,0.13), rgba(236,72,153,0.10));
      box-shadow: 0 18px 60px rgba(0,0,0,0.20);
    }

    .early-access-theme .conversion-panel,
    .pricing-theme .tier-showcase {
      margin-top: 26px;
    }

    .pricing-theme .tier-showcase {
      margin-bottom: 26px;
    }

    .standalone-page .seo-split,
    .standalone-page .feature-columns {
      gap: 14px;
      margin-top: 18px;
    }

    .early-access-theme .page-grid {
      align-items: start;
    }

    .early-access-theme .early-info-grid {
      gap: 18px;
      margin-top: 20px;
    }

    .early-access-theme .early-info-grid .small-card {
      padding: 22px 26px;
      min-height: 0;
    }

    .early-access-theme .early-info-grid .small-card h2 {
      margin: 0 0 10px;
      line-height: 1.12;
    }

    .early-access-theme .early-info-grid .small-card p {
      line-height: 1.42;
    }

    .early-access-theme .service-panel {
      margin-top: 0;
    }

    .early-access-theme .page-grid {
      align-items: center;
    }

    .product-hero-card .roadmap {
      grid-template-columns: repeat(4, 1fr);
      max-width: 1120px;
      margin-bottom: 42px;
    }

    @media (max-width: 1320px) {
      .nav { gap: 12px; }
      .brand { min-width: 250px; }
      .brand-name { font-size: 1.08rem; }
      .brand-tagline { font-size: 0.62rem; }
      .nav-links { gap: 4px; }
      .nav-link { gap: 5px; padding: 9px 9px; font-size: 0.86rem; }
      .lang-btn { padding: 9px 12px; font-size: 0.86rem; }
    }

    main > section.active { display: block; }

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

    .hero {
      padding: 38px 0 54px;
      position: relative;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 38px;
      align-items: center;
    }

    .eyebrow {
      width: fit-content;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 13px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: #D9F8FF;
      background: rgba(56, 189, 248, 0.09);
      font-size: 0.86rem;
      font-weight: 750;
      margin-bottom: 20px;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 18px rgba(52, 211, 153, 0.8);
    }

    h1 {
      font-size: clamp(2.7rem, 5.7vw, 5.15rem);
      line-height: 1.04;
      margin: 0 0 22px;
      letter-spacing: -0.04em;
      padding: 0 0.22em 0.08em 0;
      overflow: visible;
    }

    h1 span,
    .gradient-text {
      background: linear-gradient(135deg, #FFFFFF 0%, #8DEBFF 42%, #EC4ED8 68%, #3BA7FF 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      -webkit-box-decoration-break: clone;
      box-decoration-break: clone;
      padding-right: 0.08em;
    }

    .nowrap {
      white-space: nowrap;
    }

    .hero-nowrap {
      white-space: nowrap;
    }

    .lead {
      color: var(--muted);
      font-size: clamp(1.08rem, 2vw, 1.28rem);
      max-width: 650px;
      margin: 0 0 28px;
    }

    .hero-subline {
      margin: -6px 0 20px;
      color: #F7FAFC;
      font-size: clamp(1.35rem, 2.6vw, 2.05rem);
      font-weight: 900;
      letter-spacing: -0.045em;
    }

    #tester,
    #waitlist,
    .scroll-target {
      scroll-margin-top: 120px;
    }

    @media (min-width: 769px) {
      #early-access-form {
        scroll-margin-top: 170px;
      }
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: 999px;
      padding: 14px 20px;
      font-weight: 850;
      border: 1px solid transparent;
      transition: 0.2s ease;
      cursor: pointer;
      font-size: 0.98rem;
    }

    .btn-primary {
      background: linear-gradient(135deg, #22D3EE, #EC4899, #3B82F6);
      color: white;
      box-shadow: 0 16px 40px rgba(56, 189, 248, 0.24);
    }

    .btn-secondary {
      border-color: var(--line);
      background: rgba(255, 255, 255, 0.06);
      color: var(--text);
    }

    .btn-app-shortcut {
      border-color: rgba(255, 255, 255, 0.18);
      color: #F7FAFC;
      box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
    }

    .btn-app-shortcut.clean {
      border-color: rgba(56, 189, 248, 0.62);
      background: #FFFFFF;
      color: #0F172A;
    }

    .btn-app-shortcut.mow {
      border-color: rgba(52, 211, 153, 0.42);
      background: linear-gradient(135deg, rgba(52, 211, 153, 0.34), rgba(22, 163, 74, 0.18));
    }

    .btn-app-shortcut.build {
      border-color: rgba(249, 115, 22, 0.46);
      background: linear-gradient(135deg, rgba(249, 115, 22, 0.36), rgba(245, 158, 11, 0.18));
    }

    .btn-whatsapp {
      border-color: transparent;
      background: linear-gradient(135deg, #22D3EE, #EC4899, #3B82F6);
      color: white;
      box-shadow: 0 16px 40px rgba(56, 189, 248, 0.24);
    }

    .btn-contact-secondary {
      border-color: rgba(37, 211, 102, 0.50);
      background: linear-gradient(135deg, #25D366, #22D3EE, #3B82F6);
      color: #06131C;
      box-shadow: 0 16px 40px rgba(37, 211, 102, 0.22);
    }

    .btn-waitlist {
      border-color: rgba(250, 204, 21, 0.72);
      background: linear-gradient(135deg, #FACC15, #F97316);
      color: #171102;
      box-shadow: 0 16px 40px rgba(250, 204, 21, 0.22);
    }

    .btn:hover {
      transform: translateY(-2px);
      filter: brightness(1.05);
    }

    .btn-app-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      object-fit: cover;
      clip-path: circle(48% at 50% 50%);
      flex: 0 0 auto;
    }

    .device-card {
      width: min(390px, 100%);
      margin: 0 auto;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 42px;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055));
      box-shadow: var(--shadow), inset 0 0 0 2px rgba(255,255,255,0.08);
      padding: 12px;
      position: relative;
      overflow: hidden;
    }

    .device-card::before {
      content: "";
      position: absolute;
      inset: -1px;
      background: radial-gradient(circle at 20% 12%, rgba(56, 189, 248, 0.20), transparent 36%), radial-gradient(circle at 78% 28%, rgba(236, 72, 153, 0.18), transparent 34%);
      pointer-events: none;
    }

    .phone-ui {
      position: relative;
      min-height: 620px;
      border-radius: 34px;
      background:
        radial-gradient(circle at 22% 12%, rgba(56,189,248,0.12), transparent 34%),
        radial-gradient(circle at 78% 8%, rgba(236,72,153,0.13), transparent 32%),
        #101827;
      border: 1px solid rgba(255,255,255,0.16);
      padding: 22px;
      overflow: hidden;
    }

    .phone-ui::before {
      content: "";
      position: absolute;
      top: 10px;
      left: 50%;
      transform: translateX(-50%);
      width: 116px;
      height: 28px;
      border-radius: 0 0 18px 18px;
      background: #070A13;
      border: 1px solid rgba(255,255,255,0.10);
      border-top: 0;
      z-index: 2;
    }

    .phone-ui::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 12px;
      transform: translateX(-50%);
      width: 112px;
      height: 5px;
      border-radius: 999px;
      background: rgba(255,255,255,0.32);
    }

    .phone-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin: 22px 0 22px;
      color: var(--muted);
      font-size: 0.86rem;
      font-weight: 700;
    }

    .mini-pill {
      height: 0;
      width: 0;
      margin: 0;
      display: none;
    }

    .dash-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 22px;
      padding: 16px;
      margin-bottom: 14px;
    }

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

    .dash-title {
      font-size: 0.9rem;
      color: var(--muted);
      font-weight: 700;
      margin: 0 0 5px;
    }

    .dash-value {
      margin: 0;
      font-size: 1.75rem;
      line-height: 1;
      font-weight: 900;
      letter-spacing: -0.04em;
    }

    .status {
      display: inline-flex;
      border-radius: 999px;
      padding: 6px 10px;
      font-size: 0.75rem;
      font-weight: 850;
      color: #06131C;
      background: #A7F3D0;
    }

    .app-card-grid { padding: 24px 0 86px; }

    .section-head {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 34px;
    }

    .app-card-grid .section-head {
      max-width: 1180px;
    }

    .section-head h2 {
      font-size: clamp(2rem, 4vw, 3.4rem);
      letter-spacing: -0.06em;
      line-height: 1.04;
      margin: 0 0 14px;
    }

    .section-head p {
      color: var(--muted);
      margin: 0;
      font-size: 1.08rem;
    }

    .app-card-grid .section-head h2 .en {
      white-space: nowrap;
    }

    .app-card-grid .section-head p {
      font-size: clamp(1.25rem, 2vw, 1.65rem);
      line-height: 1.35;
    }

    .single-line-es {
      white-space: nowrap;
    }

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

    .app-card {
      min-height: 520px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.055));
      padding: 18px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 18px 60px rgba(0,0,0,0.22);
      transition: 0.24s ease;
    }

    .app-card:hover {
      transform: translateY(-5px);
      border-color: rgba(255,255,255,0.26);
      background: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0.07));
    }

    .app-card > strong {
      display: block;
      margin-top: 24px;
    }

    .app-card-image {
      width: 100%;
      border-radius: 16px;
      display: block;
      object-fit: cover;
      box-shadow: 0 16px 32px rgba(0,0,0,0.24);
      margin-bottom: 18px;
    }

    .badge {
      width: fit-content;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      color: var(--muted);
      border: 1px solid rgba(255,255,255,0.13);
      font-weight: 750;
      font-size: 0.82rem;
      margin-bottom: 12px;
    }

    .badge.waitlist-badge {
      color: #06131C;
      border-color: rgba(34, 211, 238, 0.55);
      background: linear-gradient(135deg, #22D3EE, #EC4899, #3B82F6);
      box-shadow: 0 12px 28px rgba(56, 189, 248, 0.18);
    }

    .card-copy h3 {
      font-size: 1.6rem;
      line-height: 1;
      letter-spacing: -0.045em;
      margin: 0 0 10px;
    }

    .card-copy p {
      color: var(--muted);
      margin: 0 0 14px;
      font-size: 1rem;
    }

    .feature-list {
      display: grid;
      gap: 9px;
      margin: 14px 0 0;
      padding: 0;
      list-style: none;
      color: var(--muted);
      font-weight: 650;
      font-size: 0.96rem;
    }

    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 9px;
    }

    .check {
      color: var(--green);
      font-weight: 900;
    }

    .clean-accent .check { color: var(--cyan); }
    .mow-accent .check { color: var(--green); }
    .build-accent .check { color: var(--orange); }

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

    .standalone-page .page-hero {
      padding-top: 46px;
    }

    .page-grid {
      display: grid;
      grid-template-columns: 1fr 0.88fr;
      gap: 34px;
      align-items: center;
    }

    .service-panel {
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.07);
      border-radius: var(--radius-xl);
      padding: 26px;
      box-shadow: var(--shadow);
    }

    .todoclean-theme .service-panel,
    .todoclean-theme .small-card,
    .todoclean-theme .qr-wrap {
      border-color: rgba(56, 189, 248, 0.24);
      background: linear-gradient(135deg, rgba(56,189,248,0.13), rgba(255,255,255,0.055));
    }

    .todoclean-theme .page-grid {
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
      gap: 42px;
      align-items: center;
    }

    .todoclean-theme .service-panel {
      width: min(440px, 100%);
      justify-self: end;
      padding: 22px;
      text-align: center;
    }

    .todoclean-theme .service-panel h2 {
      font-size: clamp(1.25rem, 2.1vw, 1.65rem);
      line-height: 1.08;
      letter-spacing: -0.035em;
      margin: 0 0 10px;
    }

    .todoclean-theme .service-panel .lead {
      margin-bottom: 0;
      line-height: 1.42;
    }

    .todoclean-theme .landing-card-image {
      max-width: 330px;
      margin-bottom: 14px;
    }

    .todoclean-theme .service-panel .mini-trust-row,
    .product-hero-card .service-panel .mini-trust-row {
      justify-content: center;
      margin: 4px 0 18px;
    }

    .early-access-theme .page-grid {
      align-items: center;
    }

    .early-access-theme .service-panel {
      width: min(360px, 100%);
      justify-self: end;
      text-align: center;
    }

    .early-access-theme .landing-card-image {
      max-width: 245px;
      margin-bottom: 14px;
    }

    .product-hero-card .page-grid {
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
      gap: 42px;
      align-items: center;
    }

    .product-hero-card .service-panel {
      width: min(430px, 100%);
      justify-self: end;
      padding: 22px;
      text-align: center;
    }

    .product-hero-card .landing-card-image {
      max-width: 320px;
      margin-bottom: 14px;
    }

    .todomow-theme .coming-panel {
      border-color: rgba(34, 197, 94, 0.30);
      background: linear-gradient(135deg, rgba(34,197,94,0.16), rgba(255,255,255,0.055));
    }

    .todomow-theme .service-panel {
      border-color: rgba(34, 197, 94, 0.30);
      background: linear-gradient(135deg, rgba(34,197,94,0.16), rgba(255,255,255,0.055));
    }

    .todobuild-theme .coming-panel {
      border-color: rgba(249, 115, 22, 0.32);
      background: linear-gradient(135deg, rgba(249,115,22,0.16), rgba(255,255,255,0.055));
    }

    .todobuild-theme .service-panel {
      border-color: rgba(249, 115, 22, 0.32);
      background: linear-gradient(135deg, rgba(249,115,22,0.16), rgba(255,255,255,0.055));
    }

    .feature-columns {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin: 34px 0;
    }

    .todoclean-theme .clean-feature-grid {
      gap: 20px 18px;
      margin-top: 20px;
      margin-bottom: 0;
    }

    .todoclean-theme .feature-columns.clean-feature-grid {
      margin: 20px 0 0;
    }

    .todoclean-theme .clean-feature-grid .small-card {
      min-height: 0;
      height: auto;
      padding: 24px 28px;
    }

    .todoclean-theme .clean-feature-grid .small-card h2 {
      margin: 0 0 14px;
      line-height: 1.12;
    }

    .todoclean-theme .clean-feature-grid .small-card p {
      line-height: 1.42;
    }

    .small-card {
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,0.065);
      padding: 18px;
    }

    .small-card h4 {
      margin: 0 0 8px;
      font-size: 1.02rem;
    }

    .small-card p {
      color: var(--muted);
      margin: 0;
      font-size: 0.94rem;
    }

    .tier-showcase {
      position: relative;
      margin: 34px 0 0;
      border: 2px solid rgba(56, 189, 248, 0.34);
      border-radius: 24px;
      overflow: hidden;
      background:
        radial-gradient(circle at 18% 8%, rgba(56, 189, 248, 0.18), transparent 34%),
        radial-gradient(circle at 82% 14%, rgba(236, 72, 153, 0.14), transparent 34%),
        rgba(20, 24, 38, 0.92);
      color: #F7FAFC;
      box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
    }

    .tier-window-bar {
      height: 56px;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0 24px;
      border-bottom: 2px solid rgba(56, 189, 248, 0.26);
      background: rgba(14, 20, 36, 0.94);
    }

    .tier-window-dot {
      width: 16px;
      height: 16px;
      border: 3px solid #CFFAFE;
      border-radius: 50%;
      background: transparent;
    }

    .tier-stage {
      position: relative;
      padding: 34px 30px 42px;
      min-height: 610px;
      overflow: hidden;
    }

    .tier-stage::before {
      content: "";
      position: absolute;
      left: -8%;
      right: -8%;
      bottom: -11%;
      height: 64%;
      background: linear-gradient(135deg, rgba(236, 72, 153, 0.92), rgba(167, 139, 250, 0.94), rgba(59, 130, 246, 0.78));
      clip-path: polygon(0 24%, 36% 8%, 70% 18%, 100% 34%, 100% 100%, 0 100%);
      opacity: 0.90;
    }

    .tier-stage::after {
      content: "";
      position: absolute;
      top: 112px;
      right: 72px;
      width: 58px;
      height: 58px;
      border-radius: 999px 999px 999px 8px;
      background: rgba(236, 72, 153, 0.22);
      transform: rotate(44deg);
    }

    .tier-heading {
      position: relative;
      z-index: 1;
      text-align: center;
      margin-bottom: 42px;
    }

    .tier-heading h2 {
      margin: 0 0 8px;
      background: linear-gradient(135deg, #DFFBFF 0%, #8DEBFF 30%, #EC4ED8 64%, #7C83FF 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-size: clamp(2rem, 4.8vw, 4.15rem);
      line-height: 0.98;
      font-weight: 950;
      letter-spacing: -0.055em;
    }

    .tier-heading p {
      max-width: 620px;
      margin: 0 auto;
      color: #D8E0F4;
      font-size: 1.04rem;
      font-weight: 800;
    }

    .billing-toggle {
      position: relative;
      z-index: 1;
      width: fit-content;
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 22px auto 38px;
      padding: 7px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    }

    .billing-option {
      border: 0;
      border-radius: 999px;
      padding: 14px 24px;
      background: transparent;
      color: #D8E0F4;
      cursor: pointer;
      font-weight: 900;
      font-size: 1.08rem;
    }

    .billing-option.active {
      background: #FFFFFF;
      color: #0F172A;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    }

    .tier-cards {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      align-items: stretch;
      gap: 18px;
      max-width: 980px;
      margin: 0 auto;
    }

    .tier-card {
      position: relative;
      min-height: 430px;
      padding: 28px 26px;
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 22px;
      background: #EEF5FA;
      color: #111827;
      box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
      cursor: pointer;
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, opacity 0.25s ease;
      transform: none;
      opacity: 0.92;
    }

    .tier-card:first-child {
      border-radius: 22px;
    }

    .tier-card:last-child {
      border-radius: 22px;
    }

    .tier-card.active {
      z-index: 3;
      background: #FFFFFF;
      transform: translateY(-18px) scale(1.04);
      opacity: 1;
      box-shadow: 0 30px 72px rgba(15, 23, 42, 0.24);
    }

    .tier-card:focus-visible {
      outline: 4px solid rgba(17, 135, 255, 0.34);
      outline-offset: 4px;
    }

    .tier-card h3 {
      margin: 0 0 14px;
      text-align: center;
      background: linear-gradient(135deg, #075985 0%, #0E7490 28%, #9D174D 64%, #4C1D95 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-size: clamp(2rem, 3.2vw, 2.75rem);
      line-height: 1.1;
      letter-spacing: -0.035em;
    }

    .tier-card p {
      min-height: 74px;
      margin: 0 0 18px;
      color: #334155;
      font-size: 0.98rem;
      line-height: 1.5;
      font-weight: 650;
    }

    .tier-price {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin: 0 0 8px;
      color: #0F172A;
    }

    .tier-fit-note {
      min-height: 22px;
      margin: 0 0 16px;
      color: #4C1D95;
      font-size: 0.92rem;
      line-height: 1.3;
      font-weight: 900;
    }

    .tier-price strong {
      font-size: clamp(1.95rem, 3vw, 2.7rem);
      line-height: 0.95;
      letter-spacing: -0.045em;
      font-weight: 950;
    }

    .tier-price span {
      color: #334155;
      font-size: 0.86rem;
      line-height: 1.22;
      font-weight: 850;
    }

    .tier-save-note {
      min-height: 28px;
      margin: -6px 0 16px;
      color: #7C3AED;
      font-size: 0.84rem;
      font-weight: 900;
    }

    .tier-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      width: 100%;
      margin: 0 0 18px;
      border-radius: 12px;
      border: 1px solid rgba(15, 23, 42, 0.10);
      background: #FFFFFF;
      color: #0F172A;
      font-weight: 900;
      box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
    }

    .tier-card.active .tier-pill {
      border-color: transparent;
      background: linear-gradient(135deg, #22D3EE, #EC4899, #3B82F6);
      color: #FFFFFF;
      box-shadow: 0 16px 32px rgba(59, 130, 246, 0.24);
    }

    .tier-divider {
      height: 1px;
      margin: 0 0 18px;
      background: rgba(15, 23, 42, 0.10);
    }

    .tier-card .feature-list {
      color: #334155;
      font-size: 0.94rem;
      gap: 11px;
    }

    .tier-card .check {
      width: 22px;
      height: 22px;
      display: inline-grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 50%;
      background: #73F3D0;
      color: #047857;
      font-size: 0.82rem;
    }

    .qr-section { padding: 20px 0 86px; }

    .qr-wrap {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 22px;
      align-items: stretch;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      padding: 24px;
    }

    .qr-card {
      min-height: 230px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px dashed rgba(255,255,255,0.30);
      border-radius: var(--radius-lg);
      background: rgba(7,10,19,0.42);
      padding: 18px;
    }

    .qr-boxes {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .qr-placeholder {
      aspect-ratio: 1;
      border-radius: 20px;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 16px;
      color: var(--muted);
      background:
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        rgba(255,255,255,0.05);
      background-size: 18px 18px;
      border: 1px solid rgba(255,255,255,0.18);
      font-weight: 800;
    }

    .store-label {
      margin-top: 10px;
      color: var(--text);
      font-weight: 850;
      text-align: center;
    }

    .coming-soon { padding: 86px 0 96px; }

    .coming-panel {
      text-align: center;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      padding: 54px 26px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .roadmap {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin: 30px auto 0;
      max-width: 860px;
      position: relative;
    }

    .roadmap-step {
      border: 1px solid var(--line);
      border-radius: 18px;
      background: rgba(7, 10, 19, 0.36);
      padding: 16px;
      text-align: center;
      display: grid;
      align-content: center;
    }

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

    .roadmap-step span {
      color: var(--muted);
      font-size: 0.92rem;
    }

    .roadmap-step.coming-status {
      display: grid;
      align-content: center;
      min-height: 136px;
    }

    .conversion-area {
      padding: 0 0 96px;
    }

    .conversion-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      align-items: stretch;
      margin-top: 24px;
    }

    .conversion-panel {
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: var(--radius-xl);
      padding: 28px;
      background: linear-gradient(180deg, rgba(255,255,255,0.115), rgba(255,255,255,0.055));
      box-shadow: 0 18px 60px rgba(0,0,0,0.22);
      position: relative;
      overflow: hidden;
    }

    .conversion-panel::before {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      border-radius: 999px;
      top: -110px;
      right: -110px;
      background: rgba(56, 189, 248, 0.16);
      pointer-events: none;
    }

    .conversion-panel.tester::before {
      background: rgba(236, 72, 153, 0.18);
    }

    .conversion-panel.waitlist::before {
      background: rgba(56, 189, 248, 0.18);
    }

    .conversion-panel h2 {
      position: relative;
      margin: 0 0 12px;
      font-size: clamp(1.75rem, 3vw, 2.55rem);
      line-height: 1.05;
      letter-spacing: -0.055em;
    }

    .conversion-panel p {
      position: relative;
      color: var(--muted);
      margin: 0 0 20px;
    }

    .early-offer {
      font-size: clamp(1.28rem, 2.4vw, 1.72rem);
      font-weight: 900;
      line-height: 1.18;
      background: linear-gradient(135deg, #FFFFFF 0%, #8DEBFF 42%, #EC4ED8 68%, #3BA7FF 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent !important;
    }

    .path-options {
      position: relative;
      display: grid;
      gap: 12px;
      margin-top: 20px;
    }

    .path-card {
      border: 1px solid rgba(255,255,255,0.13);
      border-radius: 18px;
      background: rgba(7, 10, 19, 0.34);
      padding: 16px;
    }

    .path-card strong {
      display: block;
      margin-bottom: 5px;
      color: var(--text);
      font-size: 1.02rem;
    }

    .path-card span {
      color: var(--muted);
      font-size: 0.94rem;
    }

    .form-shell {
      position: relative;
      margin-top: 22px;
      display: grid;
      gap: 12px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .field {
      display: grid;
      gap: 6px;
    }

    .field label {
      color: #DDE5F7;
      font-weight: 750;
      font-size: 0.86rem;
    }

    .field input,
    .field select {
      width: 100%;
      border: 1px solid rgba(255,255,255,0.16);
      background: rgba(7, 10, 19, 0.58);
      color: var(--text);
      border-radius: 14px;
      padding: 12px 13px;
      font: inherit;
      outline: none;
    }

    .field input::placeholder {
      color: rgba(184, 193, 217, 0.62);
    }

    .field input:focus,
    .field select:focus {
      border-color: rgba(56, 189, 248, 0.62);
      box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
    }

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

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

    .checkbox-card {
      position: relative;
      display: grid;
      gap: 4px;
      min-height: 86px;
      padding: 14px;
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 16px;
      background: rgba(7, 10, 19, 0.46);
      cursor: pointer;
      transition: 0.2s ease;
    }

    .checkbox-card input {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    .checkbox-card strong {
      color: var(--text);
      font-size: 0.98rem;
      line-height: 1.1;
    }

    .checkbox-card span {
      color: var(--muted);
      font-size: 0.82rem;
      line-height: 1.25;
    }

    .checkbox-card:has(input:checked) {
      border-color: rgba(34, 211, 238, 0.74);
      background: rgba(34, 211, 238, 0.12);
      box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.10);
    }

    .checkbox-card:has(input:focus-visible) {
      outline: 3px solid rgba(56, 189, 248, 0.35);
      outline-offset: 2px;
    }

    .form-submit-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      margin-top: 2px;
    }

    .form-submit-row .btn[disabled] {
      opacity: 0.65;
      cursor: wait;
      transform: none;
    }

    .form-status {
      min-height: 22px;
      color: var(--muted);
      font-size: 0.92rem;
      font-weight: 700;
    }

    .form-status.success {
      color: #CFFAEA;
    }

    .form-status.error {
      color: #FECACA;
    }

    .form-note {
      margin-top: 12px;
      color: var(--muted-2);
      font-size: 0.88rem;
    }

    .whatsapp-prefer {
      width: fit-content;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 10px;
      padding: 9px 12px;
      border-radius: 999px;
      border: 1px solid transparent;
      background: linear-gradient(135deg, #22D3EE, #EC4899, #3B82F6);
      color: white;
      font-size: 0.88rem;
      font-weight: 800;
      box-shadow: 0 10px 26px rgba(56, 189, 248, 0.18);
    }

    .whatsapp-prefer:hover {
      transform: translateY(-1px);
      filter: brightness(1.05);
    }

    .coming-honesty {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 16px;
      padding: 9px 12px;
      border-radius: 999px;
      background: linear-gradient(135deg, #25D366, #22D3EE, #3B82F6);
      border: 1px solid rgba(37, 211, 102, 0.50);
      color: #06131C;
      font-weight: 750;
      font-size: 0.88rem;
      box-shadow: 0 12px 28px rgba(37, 211, 102, 0.18);
    }

    .mini-trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 14px;
    }

    .mini-trust-badge {
      width: fit-content;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 11px 16px;
      border-radius: 999px;
      border: 1px solid rgba(56, 189, 248, 0.30);
      background: rgba(56, 189, 248, 0.10);
      color: #EAFBFF;
      font-weight: 900;
      font-size: 1rem;
      box-shadow: 0 12px 30px rgba(56, 189, 248, 0.14);
    }

    .platform-icon {
      width: 19px;
      height: 19px;
      display: inline-block;
      flex: 0 0 auto;
      vertical-align: -0.12em;
    }

    .platform-icon svg {
      width: 100%;
      height: 100%;
      display: block;
      fill: currentColor;
    }

    .checkbox-card.mow-option {
      border-color: rgba(52, 211, 153, 0.34);
      background: rgba(52, 211, 153, 0.10);
    }

    .checkbox-card.build-option {
      border-color: rgba(249, 115, 22, 0.36);
      background: rgba(249, 115, 22, 0.11);
    }

    .checkbox-title {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .checkbox-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      object-fit: cover;
      clip-path: circle(48% at 50% 50%);
      flex: 0 0 auto;
    }

    .trust-strip {
      margin-top: 22px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .trust-item {
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 16px;
      background: rgba(255,255,255,0.055);
      padding: 14px;
      color: var(--muted);
      font-weight: 650;
      font-size: 0.92rem;
    }

    .social-strip {
      padding: 0 0 24px;
    }

    .social-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      color: #DDE5F7;
      font-weight: 850;
      font-size: 1.18rem;
    }

    .social-link {
      width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.07);
      color: #F7FAFC;
    }

    .social-link svg {
      width: 22px;
      height: 22px;
      display: block;
      stroke: currentColor;
    }

    .social-link .fill-icon {
      fill: currentColor;
      stroke: none;
    }


    footer {
      border-top: 1px solid rgba(255,255,255,0.10);
      background:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
        rgba(7, 10, 19, 0.98);
      background-size: 72px 72px;
      padding: 24px 0;
      color: #C7CBE2;
    }

    .footer-row {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 28px;
      flex-wrap: nowrap;
    }

    .footer-logo-img {
      width: 154px;
      height: 92px;
      object-fit: contain;
      border-radius: 14px;
      display: block;
      flex: 0 0 auto;
    }

    .footer-copy {
      font-size: clamp(1.18rem, 2.5vw, 2rem);
      line-height: 1.25;
      font-weight: 650;
      letter-spacing: -0.035em;
      color: #C8CBE3;
    }

    .footer-links {
      display: inline-flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
      row-gap: 10px;
    }

    footer .footer-link {
      font-size: 1.08em;
      font-weight: 720;
      text-decoration: none !important;
      text-decoration-thickness: 2px;
      text-underline-offset: 5px;
      transition: color 0.2s ease, opacity 0.2s ease;
    }

    footer .footer-link:hover,
    footer .footer-link:focus-visible,
    footer .footer-link:active,
    footer .footer-link[aria-current="page"] {
      color: var(--text);
      opacity: 0.88;
      text-decoration: underline !important;
      outline-offset: 4px;
    }

    .legal-hero {
      position: relative;
      overflow: hidden;
      padding: clamp(42px, 6vw, 72px) 0 clamp(34px, 4.5vw, 54px);
      border-bottom: 1px solid var(--line);
      background:
        linear-gradient(135deg, rgba(56, 189, 248, 0.18), transparent 34%),
        linear-gradient(110deg, rgba(167, 139, 250, 0.14), transparent 48%),
        rgba(14, 20, 36, 0.42);
    }

    .legal-hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.65), transparent);
    }

    .legal-kicker {
      margin: 0 0 12px;
      color: var(--blue);
      font-size: 0.78rem;
      font-weight: 850;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .legal-hero h1 {
      margin: 0;
      max-width: 760px;
      font-size: clamp(2.45rem, 6.4vw, 4.8rem);
      line-height: 0.95;
      font-weight: 950;
      letter-spacing: 0;
    }

    .legal-hero p:not(.legal-kicker) {
      max-width: 680px;
      margin: 18px 0 0;
      color: var(--muted);
      font-size: clamp(1.02rem, 2vw, 1.2rem);
      line-height: 1.7;
    }

    .legal-shell {
      padding: clamp(42px, 6vw, 76px) 0;
    }

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

    .legal-card {
      display: grid;
      align-content: start;
      min-height: 190px;
      padding: clamp(22px, 4vw, 32px);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 18px;
      color: var(--text);
      text-decoration: none;
      background: rgba(255, 255, 255, 0.035);
      transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }

    .legal-card:hover,
    .legal-card:focus-visible {
      transform: translateY(-2px);
      border-color: rgba(56, 189, 248, 0.58);
      background: rgba(56, 189, 248, 0.08);
      outline: 2px solid rgba(56, 189, 248, 0.32);
      outline-offset: 3px;
    }

    .legal-card h2 {
      margin: 12px 0 24px;
      font-size: clamp(1.3rem, 2.8vw, 1.75rem);
      line-height: 1.2;
      letter-spacing: 0;
    }

    .legal-version {
      color: var(--blue);
      font-size: 0.76rem;
      font-weight: 850;
      letter-spacing: 0.1em;
    }

    .legal-card-action {
      align-self: end;
      margin-top: auto;
      color: var(--muted);
      font-size: 0.92rem;
      font-weight: 760;
    }

    .legal-layout {
      display: grid;
      grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
      gap: clamp(32px, 5vw, 64px);
      align-items: start;
    }

    .legal-content {
      grid-column: 2;
      min-width: 0;
      max-width: 820px;
    }

    .legal-document {
      scroll-margin-top: 110px;
      padding-bottom: clamp(42px, 6vw, 72px);
      margin-bottom: clamp(42px, 6vw, 72px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .legal-back-link {
      display: inline-block;
      margin-bottom: 28px;
      color: var(--blue);
      font-weight: 760;
      text-decoration: none;
    }

    .legal-document:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: 0;
    }

    .legal-document h2 {
      margin: 0 0 20px;
      color: var(--text);
      font-size: clamp(1.9rem, 4vw, 3rem);
      line-height: 1.08;
      font-weight: 950;
      letter-spacing: 0;
    }

    .legal-document h3 {
      margin: 34px 0 12px;
      color: #EAF6FF;
      font-size: clamp(1.2rem, 2.2vw, 1.48rem);
      line-height: 1.28;
      font-weight: 850;
      letter-spacing: 0;
    }

    .legal-document h4 {
      margin: 24px 0 10px;
      color: #D7ECFF;
      font-size: 1.04rem;
      line-height: 1.35;
      font-weight: 820;
      letter-spacing: 0;
    }

    .legal-document p,
    .legal-document li,
    .legal-table td,
    .legal-table th {
      color: var(--muted);
      font-size: 0.98rem;
      line-height: 1.78;
      letter-spacing: 0;
    }

    .legal-document p {
      margin: 0 0 14px;
    }

    .legal-list {
      margin: 0 0 18px;
      padding-left: 1.35rem;
    }

    .legal-list li {
      margin: 0 0 8px;
      padding-left: 0.2rem;
    }

    .legal-table {
      width: 100%;
      margin: 18px 0 24px;
      border-collapse: collapse;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(255, 255, 255, 0.035);
    }

    .legal-table th,
    .legal-table td {
      padding: 12px 14px;
      vertical-align: top;
      border: 1px solid rgba(255, 255, 255, 0.12);
      text-align: left;
    }

    .legal-table th {
      color: var(--text);
      font-weight: 850;
      background: rgba(56, 189, 248, 0.10);
    }

    .legal-sidebar {
      grid-column: 1;
      grid-row: 1;
      position: sticky;
      top: 112px;
      max-height: calc(100vh - 136px);
      overflow-y: auto;
      padding-right: 8px;
    }

    .legal-nav {
      display: grid;
      gap: 6px;
      padding: 8px 0;
      border-left: 1px solid rgba(255, 255, 255, 0.14);
    }

    .legal-nav p {
      margin: 0 0 8px;
      padding-left: 16px;
      color: var(--muted-2);
      font-size: 0.76rem;
      font-weight: 850;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .legal-nav a {
      display: block;
      padding: 10px 14px 10px 16px;
      border-radius: 0 8px 8px 0;
      color: var(--muted);
      font-size: 0.95rem;
      font-weight: 720;
      line-height: 1.35;
      text-decoration: none;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .legal-nav a:hover,
    .legal-nav a:focus-visible,
    .legal-nav a[aria-current="page"] {
      color: var(--text);
      background: rgba(56, 189, 248, 0.12);
      outline: 2px solid rgba(56, 189, 248, 0.35);
      outline-offset: 2px;
    }

    [data-lang="es"] .en { display: none; }
    [data-lang="en"] .es { display: none; }

    @media (max-width: 920px) {
      .hero-grid,
      .page-grid,
      .legal-layout,
      .qr-wrap { grid-template-columns: 1fr; }

      .legal-sidebar {
        position: static;
        grid-column: auto;
        grid-row: auto;
        max-height: none;
        overflow: visible;
        padding-right: 0;
        order: -1;
      }

      .legal-content {
        grid-column: auto;
      }

      .legal-nav {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        padding: 14px 0;
      }

      .legal-nav p,
      .legal-nav a {
        padding-left: 0;
      }

      .legal-nav a {
        border-radius: 8px;
      }

      .legal-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
      }

      .legal-index {
        grid-template-columns: 1fr;
      }

      .todoclean-theme .service-panel {
        justify-self: center;
      }

      .cards,
      .roadmap { grid-template-columns: 1fr; }

      .phone-ui { min-height: 420px; }

      .nav {
        align-items: flex-start;
        padding: 14px 0;
        flex-direction: column;
      }

      .brand-logo {
        height: 50px;
        width: 50px;
      }

      .brand {
        min-width: 260px;
      }

      .brand-name {
        font-size: 1.12rem;
      }

      .brand-tagline {
        font-size: 0.6rem;
        letter-spacing: 0.13em;
      }

      .nav-links {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
      }
    }

    @media (max-width: 620px) {
      .scroll-target {
        scroll-margin-top: 90px;
      }

      .container { width: min(100% - 28px, var(--max)); }
      .hero { padding-top: 24px; }
      .feature-columns,
      .qr-boxes { grid-template-columns: 1fr; }
      .app-card { min-height: auto; }

      .conversion-grid,
      .form-row,
      .checkbox-grid,
      .trust-strip {
        grid-template-columns: 1fr;
      }
      .brand-logo {
        height: 46px;
        width: 46px;
      }

      .brand {
        min-width: auto;
      }

      .brand-name {
        font-size: 1rem;
      }

      .brand-tagline {
        font-size: 0.54rem;
        letter-spacing: 0.10em;
      }

      .who-contact-theme {
        padding: 46px 0;
      }

      .who-contact-content {
        gap: 38px;
      }

      .who-intro-layout {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: left;
      }

      .who-brand-panel {
        justify-items: center;
      }

      .who-logo {
        width: clamp(160px, 54vw, 220px);
      }

      .contact-table,
      .contact-table thead,
      .contact-table tbody,
      .contact-table tr,
      .contact-table th,
      .contact-table td {
        display: block;
        width: 100%;
      }

      .contact-table thead {
        display: none;
      }

      .contact-table tr {
        border: 1px solid var(--line);
        border-radius: 14px;
        margin-bottom: 12px;
        overflow: hidden;
      }

      .contact-table td {
        border: 0;
        padding: 12px 14px;
      }

      .contact-table td:first-child {
        color: var(--text);
        background: rgba(255, 255, 255, 0.08);
        font-weight: 850;
      }

      .footer-row {
        gap: 16px;
        align-items: center;
      }

      .footer-logo-img {
        width: 112px;
        height: 68px;
      }

      .footer-copy {
        font-size: 1rem;
      }
    }
  
    .hero-kicker {
      width: fit-content;
      margin-bottom: 16px;
      color: #8DEBFF;
      font-size: 0.82rem;
      font-weight: 900;
      letter-spacing: 0.22em;
    }

    .hero-grid {
      grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.78fr) !important;
      gap: 34px !important;
    }

    .hero .lead {
      max-width: 760px;
    }

    .lang-btn {
      padding-left: 13px !important;
      padding-right: 13px !important;
      font-size: 0.82rem !important;
    }

    .brand-logo {
      object-fit: cover !important;
    }

    .calendar-card {
      width: min(430px, 100%);
      margin: 0 auto;
      border-radius: 34px;
      background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
      color: #0B1536;
      box-shadow: 0 28px 90px rgba(0,0,0,0.34), 0 0 0 1px rgba(255,255,255,0.22);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.50);
    }

    .calendar-header {
      padding: 22px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: linear-gradient(135deg, #22D3EE, #3B82F6, #EC4899);
      color: white;
    }

    .calendar-header strong {
      display: block;
      font-size: 1.65rem;
      letter-spacing: -0.04em;
      line-height: 1;
    }

    .calendar-header span {
      display: block;
      margin-top: 4px;
      font-size: 0.85rem;
      font-weight: 750;
      opacity: 0.88;
    }

    .calendar-icon {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      background: rgba(255,255,255,0.20);
      border: 1px solid rgba(255,255,255,0.28);
      display: grid;
      place-items: center;
      font-size: 1.65rem;
    }

    .calendar-body {
      padding: 22px;
      display: grid;
      gap: 14px;
    }

    .calendar-metric {
      display: grid;
      grid-template-columns: 52px 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 16px;
      border-radius: 20px;
      background: #FFFFFF;
      border: 1px solid rgba(11, 21, 54, 0.08);
      box-shadow: 0 12px 28px rgba(11, 21, 54, 0.08);
    }

    .metric-badge {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      font-weight: 950;
      color: white;
      background: linear-gradient(135deg, #22D3EE, #3B82F6);
    }

    .calendar-metric:nth-child(2) .metric-badge {
      background: linear-gradient(135deg, #34D399, #16A34A);
    }

    .calendar-metric:nth-child(3) .metric-badge {
      background: linear-gradient(135deg, #F97316, #F59E0B);
    }

    .metric-label {
      font-size: 0.86rem;
      color: #60708D;
      font-weight: 850;
      margin: 0 0 2px;
    }

    .metric-title {
      color: #0B1536;
      font-size: 1.15rem;
      font-weight: 950;
      margin: 0;
      letter-spacing: -0.035em;
    }

    .metric-value {
      color: #0B1536;
      font-size: 1.6rem;
      line-height: 1;
      font-weight: 950;
      letter-spacing: -0.05em;
    }

    .calendar-footer {
      margin: 2px 22px 22px;
      border-radius: 20px;
      background: #EAF4FF;
      color: #274161;
      font-weight: 800;
      padding: 14px 16px;
      text-align: center;
      border: 1px solid rgba(34, 211, 238, 0.22);
    }

    .landing-card-image {
      width: 100%;
      max-width: 420px;
      display: block;
      margin: 0 auto 20px;
      border-radius: 22px;
      box-shadow: 0 18px 44px rgba(0,0,0,0.24);
      border: 1px solid rgba(255,255,255,0.18);
    }

    @media (max-width: 920px) {
      .hero-grid {
        grid-template-columns: 1fr !important;
      }
    }

  
    .brand { min-width: 280px !important; }
    .brand-full-logo { height: 64px; width: auto; max-width: 286px; object-fit: contain; display: block; }
    .hero-phone-shot { width: min(370px, 100%); margin: 0 auto; border-radius: 42px; padding: 10px; background: linear-gradient(145deg, rgba(255,255,255,0.20), rgba(255,255,255,0.06)); border: 1px solid rgba(255,255,255,0.18); box-shadow: 0 28px 90px rgba(0,0,0,0.34); }
    .hero-phone-shot img { width: 100%; height: auto; display: block; border-radius: 34px; box-shadow: 0 18px 48px rgba(0,0,0,0.24); }
    .contact-strip { padding: 0 0 34px; }
    .contact-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; border: 1px solid rgba(255,255,255,0.14); border-radius: 24px; padding: 20px; background: linear-gradient(135deg, rgba(56,189,248,0.12), rgba(236,72,153,0.10)); box-shadow: 0 18px 50px rgba(0,0,0,0.18); }
    .contact-inner strong { display: block; font-size: 1.15rem; letter-spacing: -0.035em; margin-bottom: 3px; color: var(--text); }
    .contact-inner span { color: var(--muted); font-size: 0.96rem; }
    .contact-actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; flex-wrap: wrap; }
    .contact-inner .btn span { color: inherit; font-size: inherit; }
    .mobile-whatsapp-fab { display: none; }
    footer { padding: 18px 0 !important; }
    .footer-row { gap: 16px !important; }
    .footer-logo-img { width: 96px !important; height: 58px !important; border-radius: 10px !important; }
    .footer-copy { font-size: clamp(0.86rem, 1.5vw, 1.05rem) !important; line-height: 1.35 !important; font-weight: 550 !important; letter-spacing: -0.015em !important; color: #AEB6D2 !important; }
    @media (max-width: 720px) {
      .contact-inner { flex-direction: column; align-items: flex-start; }
      .contact-actions { width: 100%; justify-content: flex-start; }
      .contact-actions .btn { width: 100%; }
      .brand-full-logo { height: 54px; max-width: 246px; }
    }

  
    .brand {
      min-width: 330px !important;
      display: flex !important;
      align-items: center !important;
      gap: 12px !important;
    }

    .brand-icon-logo {
      width: 58px;
      height: 58px;
      object-fit: cover;
      object-position: center top;
      border-radius: 14px;
      box-shadow: 0 10px 24px rgba(56, 189, 248, 0.20);
      flex: 0 0 auto;
    }

    .brand-wordmark {
      display: flex;
      flex-direction: column;
      line-height: 1.02;
    }

    .brand-name {
      font-size: 1.28rem;
      font-weight: 900;
      letter-spacing: -0.035em;
      color: #F7FAFC;
      white-space: nowrap;
    }

    .brand-tagline {
      margin-top: 5px;
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: -0.01em;
      color: #B8C1D9;
      white-space: nowrap;
    }

    .hero-grid {
      grid-template-columns: minmax(0, 1.34fr) minmax(260px, 0.66fr) !important;
      gap: 30px !important;
      align-items: center !important;
    }

    .hero-phone-shot {
      width: min(255px, 100%) !important;
      justify-self: center;
      align-self: center;
      padding: 8px !important;
      border-radius: 34px !important;
    }

    .hero-phone-shot img {
      border-radius: 28px !important;
    }

    [data-lang="es"] .hero-phone-shot {
      width: min(285px, 100%) !important;
    }

    .contact-inner {
      align-items: center !important;
    }

    .contact-inner strong {
      margin-bottom: 0 !important;
    }

    footer {
      padding: 18px 0 !important;
    }

    .footer-row {
      justify-content: center !important;
      gap: 0 !important;
      text-align: center !important;
    }

    .footer-logo-img {
      display: none !important;
    }

    .footer-copy {
      font-size: clamp(0.86rem, 1.5vw, 1.05rem) !important;
      line-height: 1.35 !important;
      font-weight: 550 !important;
      letter-spacing: -0.015em !important;
      color: #AEB6D2 !important;
    }

    @media (max-width: 920px) {
      .hero-grid {
        grid-template-columns: 1fr !important;
      }

      .hero-phone-shot {
        width: min(320px, 100%) !important;
      }

      [data-lang="es"] .hero-phone-shot {
        width: min(340px, 100%) !important;
      }
    }

    @media (max-width: 620px) {
      .brand {
        min-width: auto !important;
      }

      .brand-icon-logo {
        width: 46px !important;
        height: 46px !important;
      }

      .brand-name {
        font-size: 1rem !important;
      }

      .brand-tagline {
        font-size: 0.66rem !important;
      }
    }

    @media (max-width: 720px) {
      html,
      body,
      main,
      main > section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
      }

      body {
        background:
          radial-gradient(circle at 18% 8%, rgba(56, 189, 248, 0.18), transparent 30%),
          radial-gradient(circle at 82% 16%, rgba(236, 72, 153, 0.12), transparent 32%),
          var(--bg);
      }

      header {
        position: relative;
      }

      .container {
        width: min(100% - 28px, var(--max));
        max-width: calc(100vw - 28px);
      }

      .nav {
        min-height: 0;
        gap: 12px;
        padding: 14px 0 16px;
      }

      .brand {
        width: 100%;
        min-width: 0 !important;
        gap: 10px !important;
      }

      .brand-icon-logo,
      .brand-logo {
        width: 44px !important;
        height: 44px !important;
        border-radius: 12px;
      }

      .brand-name {
        font-size: 1rem !important;
      }

      .brand-tagline {
        font-size: 0.58rem !important;
        white-space: normal;
      }

      .nav-links {
        order: 3;
        gap: 6px;
        padding: 2px 0 8px;
        scrollbar-width: none;
      }

      .nav-links::-webkit-scrollbar {
        display: none;
      }

      .nav-link {
        flex: 0 0 auto;
        padding: 9px 11px;
        font-size: 0.86rem;
      }

      .hero-offer-track span {
        padding: 13px 8px;
        font-size: clamp(1.58rem, 7.6vw, 1.94rem);
      }

      .lang-toggle {
        order: 2;
        align-self: flex-start;
        width: 100%;
        justify-content: center;
        margin-top: 2px;
        margin-bottom: 2px;
        padding: 7px;
      }

      .lang-btn {
        flex: 1;
        padding: 12px 14px;
        font-size: 1rem;
      }

      .hero,
      .page-hero,
      .coming-soon {
        padding-top: 34px;
      }

      .hero-grid,
      .page-grid,
      .todoclean-theme .page-grid {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        min-width: 0;
      }

      .hero-grid > div:first-child,
      .page-grid > *,
      .conversion-panel,
      .small-card,
      .app-card,
      .contact-inner {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: hidden;
      }

      .hero-grid > div:first-child {
        max-width: min(100%, 340px);
      }

      h1 {
        width: 100%;
        max-width: min(100%, 340px);
        font-size: clamp(1.58rem, 7.6vw, 1.94rem);
        line-height: 1.12;
        letter-spacing: 0;
        padding-right: 0;
        overflow-wrap: anywhere;
        word-break: break-word;
      }

      h1 span,
      .gradient-text {
        overflow-wrap: anywhere;
        word-break: break-word;
      }

      h1 .nowrap,
      .nowrap {
        white-space: normal;
      }

      .hero-subline {
        max-width: 100%;
        font-size: 1.08rem;
        line-height: 1.18;
        letter-spacing: 0;
        overflow-wrap: anywhere;
      }

      .hero .lead,
      .hero-subline,
      .hero-actions {
        max-width: min(100%, 340px);
      }

      .lead,
      .section-head p,
      .conversion-panel p,
      .small-card p,
      .card-copy p,
      .path-card span {
        font-size: 1rem;
        line-height: 1.55;
        overflow-wrap: anywhere;
      }

      .todoclean-theme .clean-feature-grid {
        gap: 16px;
        margin-top: 16px;
      }

      .todoclean-theme .feature-columns.clean-feature-grid {
        margin-top: 16px;
      }

      .todoclean-theme .clean-feature-grid .small-card {
        padding: 20px 22px;
      }

      .todoclean-theme .clean-feature-grid .small-card h2 {
        margin-bottom: 10px;
      }

      .todoclean-theme .clean-feature-grid .small-card p {
        line-height: 1.36;
      }

      .early-access-theme .early-info-grid {
        gap: 14px;
        grid-template-columns: 1fr;
        margin-top: 16px;
      }

      .early-access-theme .early-info-grid .small-card {
        padding: 18px 20px;
      }

      .early-access-theme .early-info-grid .small-card h2 {
        margin-bottom: 8px;
      }

      .early-access-theme .early-info-grid .small-card p {
        line-height: 1.36;
      }

      .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-left: auto;
        margin-right: auto;
        justify-items: center;
      }

      .btn {
        width: 100%;
        min-height: 48px;
        padding: 13px 16px;
        white-space: normal;
        text-align: center;
      }

      .hero-actions .btn {
        box-shadow: none;
      }

      .hero-phone-shot {
        width: min(270px, 86vw) !important;
        border-radius: 30px !important;
      }

      .hero-phone-shot img {
        border-radius: 24px !important;
      }

      .app-card-grid,
      .qr-section,
      .conversion-area {
        padding-bottom: 54px;
      }

      .section-head {
        margin-bottom: 22px;
        text-align: left;
      }

      .section-head h2,
      .conversion-panel h2,
      .coming-panel h1 {
        font-size: clamp(1.7rem, 8vw, 2.15rem);
        line-height: 1.1;
        letter-spacing: 0;
        overflow-wrap: anywhere;
      }

      .cards,
      .conversion-grid,
      .feature-columns,
      .qr-wrap,
      .qr-boxes,
      .roadmap,
      .trust-strip {
        grid-template-columns: 1fr !important;
      }

      .app-card,
      .conversion-panel,
      .service-panel,
      .coming-panel,
      .qr-wrap {
        border-radius: 20px;
        padding: 18px;
      }

      .app-card {
        min-height: 0;
      }

      .todomow-theme .roadmap-step.coming-status,
      .todobuild-theme .roadmap-step.coming-status {
        min-height: auto;
        height: auto;
        padding-top: 32px;
        padding-bottom: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .todomow-theme .roadmap-step.coming-status strong,
      .todobuild-theme .roadmap-step.coming-status strong {
        margin: 0;
        text-align: center;
      }

      .app-card > strong {
        margin-top: 16px;
      }

      .card-copy h3 {
        font-size: 1.35rem;
        letter-spacing: 0;
      }

      .form-row,
      .checkbox-grid {
        grid-template-columns: 1fr !important;
      }

      .checkbox-card {
        min-height: 0;
        padding: 13px;
      }

      .form-submit-row {
        display: grid;
        grid-template-columns: 1fr;
      }

      .tier-showcase {
        border-width: 1px;
        border-radius: 18px;
      }

      .tier-window-bar {
        height: 44px;
        padding: 0 16px;
      }

      .tier-window-dot {
        width: 13px;
        height: 13px;
        border-width: 2px;
      }

      .tier-stage {
        min-height: 0;
        padding: 28px 16px 34px;
      }

      .tier-heading {
        text-align: left;
        margin-bottom: 24px;
      }

      .tier-heading h2 {
        font-size: clamp(1.82rem, 9vw, 2.35rem);
        letter-spacing: 0;
      }

      .tier-heading p {
        font-size: 0.98rem;
      }

      .billing-toggle {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        margin: 18px 0 24px;
        border-radius: 18px;
      }

      .billing-option {
        flex: 1;
      }

      .tier-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .tier-card,
      .tier-card.active {
        min-height: 0;
        border-radius: 16px;
        transform: none;
        opacity: 1;
      }

      .tier-card.active {
        box-shadow: 0 24px 52px rgba(15, 23, 42, 0.26);
      }

      .tier-price strong {
        font-size: 2rem;
      }

      .todoclean-theme .service-panel {
        width: 100%;
        justify-self: stretch;
      }

      .todoclean-theme .landing-card-image {
        max-width: 220px;
      }

      .calendar-card {
        border-radius: 24px;
      }

      .calendar-header,
      .calendar-body {
        padding: 18px;
      }

      .calendar-metric {
        grid-template-columns: 44px 1fr;
        gap: 12px;
        padding: 14px;
      }

      .metric-badge {
        width: 44px;
        height: 44px;
      }

      .metric-value {
        grid-column: 2;
        font-size: 1.28rem;
        letter-spacing: 0;
      }

      .footer-row {
        justify-content: flex-start !important;
        text-align: left !important;
      }

      body.show-whatsapp-fab .mobile-whatsapp-fab {
        position: fixed;
        right: 16px;
        bottom: 76px;
        z-index: 60;
        display: inline-flex;
        width: auto;
        min-height: 42px;
        padding: 10px 14px;
        border-radius: 999px;
        font-size: 0.9rem;
        box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
      }
    }

    @media (max-width: 380px) {
      .container {
        width: min(100% - 22px, var(--max));
        max-width: calc(100vw - 22px);
      }

      h1 {
        font-size: 1.64rem;
      }

      .brand-name {
        font-size: 0.94rem !important;
      }

      .nav-link {
        font-size: 0.82rem;
      }
    }

    @media (max-width: 480px) {
      .app-card-grid .section-head h2 .en {
        white-space: normal;
      }

      .hero-grid > div:first-child,
      .page-grid > div:first-child,
      .page-grid > div:last-child,
      .app-card,
      .service-panel,
      .small-card,
      .tier-showcase,
      .conversion-panel,
      .coming-panel,
      .qr-wrap,
      .contact-inner {
        width: min(100%, 340px);
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
      }

      .page-grid > div:first-child {
        margin-left: 0;
      }

      .page-grid p,
      .small-card p,
      .service-panel p,
      .conversion-panel p,
      .coming-panel p,
      .card-copy p,
      .feature-list,
      .roadmap-step span {
        max-width: 100%;
        overflow-wrap: anywhere;
      }
    }

    /* App embed mode (?embed=1): legal document only, no site chrome.
       Used by the TodoClean mobile app's in-app legal viewer. */
    html.embed header,
    html.embed footer,
    html.embed .legal-hero,
    html.embed .legal-sidebar,
    html.embed .legal-back-link,
    html.embed .cookie-consent { display: none !important; }
    html.embed .legal-shell { padding: 8px 0 32px; }
    html.embed .legal-layout { grid-template-columns: 1fr; }
    html.embed .legal-content { grid-column: 1; }

    /* Trust Center redesign: intentionally scoped so no other page inherits it. */
    .trust-center-page {
      scroll-behavior: smooth;
    }

    .trust-center-page > header {
      position: sticky;
      top: 0;
      z-index: 90;
      background: #080e1b;
    }

    .trust-center-page .trust-nav-banner {
      position: relative;
      z-index: 20;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(8, 14, 27, 0.96);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    }

    .trust-center-page .trust-nav-inner {
      display: flex;
      align-items: center;
      gap: 8px;
      min-height: 58px;
      overflow-x: auto;
      scrollbar-width: thin;
      scrollbar-color: rgba(56, 189, 248, 0.5) transparent;
    }

    .trust-center-page .trust-nav-inner a {
      flex: 0 0 auto;
      padding: 10px 14px;
      border: 1px solid transparent;
      border-radius: 999px;
      color: #bfd1e5;
      font-size: 0.94rem;
      font-weight: 780;
      line-height: 1.2;
      text-decoration: none;
      transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }

    .trust-center-page .trust-nav-inner a:hover {
      color: #fff;
      background: rgba(56, 189, 248, 0.1);
    }

    .trust-center-page .trust-nav-inner a:focus-visible {
      color: #fff;
      border-color: #7dd3fc;
      outline: 2px solid #7dd3fc;
      outline-offset: 2px;
    }

    .trust-center-page .trust-nav-inner a[aria-current="page"] {
      color: #06111f;
      border-color: #7dd3fc;
      background: #7dd3fc;
    }

    .trust-center-page .trust-hero {
      padding: clamp(44px, 6vw, 76px) 0 clamp(40px, 5vw, 64px);
    }

    .trust-center-page .trust-hero h1 {
      max-width: none;
      font-size: clamp(2.6rem, 6vw, 4.7rem);
      white-space: nowrap;
    }

    .trust-center-page .trust-hero p:not(.legal-kicker) {
      max-width: none;
      white-space: nowrap;
    }

    .trust-center-page .trust-overview {
      scroll-margin-top: 24px;
      padding: clamp(48px, 7vw, 84px) 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      background: linear-gradient(180deg, rgba(56, 189, 248, 0.035), transparent);
    }

    .trust-center-page .trust-overview-inner {
      display: grid;
      gap: clamp(34px, 5vw, 56px);
    }

    .trust-center-page .trust-overview-copy {
      width: fit-content;
      max-width: 100%;
    }

    .trust-center-page .trust-overview-copy h2 {
      margin: 0 0 22px;
      color: #f7fbff;
      font-size: clamp(2rem, 4.5vw, 3.35rem);
      line-height: 1.08;
      letter-spacing: -0.025em;
      white-space: nowrap;
    }

    .trust-center-page[data-lang="es"] .trust-overview-copy h2 {
      font-size: clamp(1.85rem, 3.6vw, 2.9rem);
    }

    .trust-center-page .trust-overview-copy p {
      max-width: none;
      margin: 0 0 16px;
      color: #c7d7e8;
      font-size: clamp(1rem, 1.7vw, 1.1rem);
      line-height: 1.78;
    }

    .trust-center-page .trust-badges {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .trust-center-page .trust-badges li {
      display: flex;
      align-items: center;
      gap: 12px;
      min-height: 72px;
      padding: 16px 18px;
      border: 1px solid rgba(125, 211, 252, 0.24);
      border-radius: 15px;
      color: #f7fbff;
      background: rgba(255, 255, 255, 0.045);
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.13);
    }

    .trust-center-page .trust-badges li span {
      flex: 0 0 auto;
      font-size: 1.05rem;
      line-height: 1;
    }

    .trust-center-page .trust-badges li strong {
      font-size: 0.96rem;
      line-height: 1.3;
    }

    .trust-center-page .trust-documents {
      min-height: 0;
      padding: clamp(44px, 6vw, 76px) 0;
    }

    .trust-center-page .trust-documents .legal-content {
      max-width: 940px;
      margin: 0 auto;
    }

    .trust-center-page .trust-document {
      scroll-margin-top: 24px;
      margin: 0;
      padding: clamp(26px, 4vw, 46px);
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.03);
      box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
    }

    .trust-center-page .trust-document[hidden] {
      display: none;
    }

    .trust-center-page .trust-document h2 {
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }

    .trust-center-page .trust-document blockquote {
      margin: 0 0 24px;
      padding: 16px 18px;
      border: 1px solid rgba(250, 204, 21, 0.42);
      border-left: 4px solid #facc15;
      border-radius: 10px;
      color: #fff4bc;
      background: rgba(250, 204, 21, 0.08);
      line-height: 1.65;
    }

    .trust-center-page .trust-document a {
      color: #7dd3fc;
      text-underline-offset: 3px;
    }

    .trust-center-page .trust-document a:hover {
      color: #bae6fd;
    }

    .trust-center-page .trust-document a:focus-visible,
    .trust-center-page .trust-table-wrap:focus-visible {
      outline: 2px solid #7dd3fc;
      outline-offset: 3px;
    }

    .trust-center-page .trust-document code {
      padding: 0.12em 0.32em;
      border-radius: 5px;
      color: #e0f2fe;
      background: rgba(125, 211, 252, 0.1);
      overflow-wrap: anywhere;
    }

    .trust-center-page .trust-table-wrap {
      max-width: 100%;
      margin: 18px 0 24px;
      overflow-x: auto;
      border-radius: 12px;
    }

    .trust-center-page .trust-table-wrap .legal-table {
      min-width: 680px;
      margin: 0;
    }

    .todoclean-trust-center-page .legal-layout {
      grid-template-columns: minmax(0, 1fr);
    }

    .todoclean-trust-center-page .trust-nav-banner {
      position: sticky;
      top: var(--trust-header-height, 0px);
      z-index: 80;
    }

    .todoclean-trust-center-page .trust-nav-inner {
      flex-wrap: wrap;
      overflow-x: visible;
      padding-top: 8px;
      padding-bottom: 8px;
    }

    .trust-center-page:not(.todoclean-trust-center-page) .trust-nav-banner {
      position: sticky;
      top: var(--trust-header-height, 0px);
      z-index: 80;
    }

    .todoclean-trust-center-page .legal-content {
      grid-column: 1;
      width: 100%;
      max-width: none;
      margin: 0;
    }

    .todoclean-trust-center-page .legal-document {
      scroll-margin-top: 24px;
    }

    @media (max-width: 760px) {
      .trust-center-page .trust-hero p:not(.legal-kicker),
      .trust-center-page .trust-hero h1,
      .trust-center-page .trust-overview-copy h2 {
        white-space: normal;
      }

      .trust-center-page .trust-nav-inner {
        min-height: 56px;
        padding-top: 8px;
        padding-bottom: 8px;
      }

      .trust-center-page .trust-nav-inner a {
        padding: 9px 12px;
        font-size: 0.88rem;
      }

      .trust-center-page .trust-badges {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 460px) {
      .trust-center-page .trust-badges {
        grid-template-columns: 1fr;
      }

      .trust-center-page .trust-badges li {
        min-height: 62px;
      }

      .trust-center-page .trust-document {
        padding: 22px 17px;
        border-radius: 16px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .trust-center-page {
        scroll-behavior: auto;
      }

      .trust-center-page .trust-nav-inner a {
        transition: none;
      }
    }
