    :root {
      --landing-primary: #0788c8;
      --landing-primary-dark: #12649e;
      --landing-ink: #102a43;
      --landing-muted: #526b82;
      --landing-soft: #f3f8fc;
      --landing-line: #dce8f1;
      --landing-white: #ffffff;
      --landing-mint: #dff5ee;
      --landing-mint-ink: #146c55;
      --landing-warm: #ffcb77;
    }

    .landing-page {
      color: var(--landing-ink);
      background: #fff;
      min-height: 100vh;
    }

    .landing-nav {
      position: sticky;
      top: 0;
      z-index: 1030;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      background: rgba(255,255,255,.94);
      border-bottom: 1px solid rgba(220,232,241,.9);
    }

    .landing-logo {
      max-height: 50px;
      width: auto;
    }

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

    .landing-nav-link {
      color: #3d5870;
      font-weight: 600;
      font-size: .92rem;
    }

    .landing-nav-link:hover {
      color: var(--landing-primary);
      text-decoration: none;
    }

    .hero-wrap {
      position: relative;
      overflow: hidden;
      padding: 82px 0 74px;
      background:
        radial-gradient(circle at 82% 18%, rgba(36,130,196,.18), transparent 29%),
        radial-gradient(circle at 10% 76%, rgba(255,203,119,.18), transparent 25%),
        linear-gradient(135deg, #fafdff 0%, #f1f7fb 55%, #ffffff 100%);
    }

    .hero-wrap::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: .38;
      background-image: radial-gradient(#8ab6d3 1px, transparent 1px);
      background-size: 24px 24px;
      mask-image: linear-gradient(to right, #000, transparent 62%);
      -webkit-mask-image: linear-gradient(to right, #000, transparent 62%);
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 13px;
      background: var(--landing-mint);
      color: var(--landing-mint-ink);
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .35px;
      text-transform: uppercase;
    }

    .hero-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #27a77e;
      box-shadow: 0 0 0 4px rgba(39,167,126,.12);
    }

    .hero-title {
      max-width: 700px;
      font-size: clamp(2.55rem, 5vw, 4.35rem);
      font-weight: 800;
      line-height: 1.02;
      letter-spacing: -.045em;
      color: var(--landing-ink);
      margin: 22px 0 22px;
    }

    .hero-title-accent {
      color: var(--landing-primary);
    }

    .hero-subtitle {
      max-width: 640px;
      font-size: 1.1rem;
      line-height: 1.75;
      margin-bottom: 30px;
      color: var(--landing-muted);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 30px;
    }

    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      color: #45627a;
      font-size: .88rem;
      font-weight: 600;
    }

    .hero-trust span {
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }

    .hero-trust i {
      color: #21a179;
    }

    .hero-card {
      position: relative;
      background: #fff;
      border-radius: 22px;
      box-shadow: 0 28px 70px rgba(16,42,67,.16);
      border: 1px solid rgba(255,255,255,.7);
      padding: 30px;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      width: 78px;
      height: 7px;
      left: 30px;
      top: 0;
      border-radius: 0 0 8px 8px;
      background: linear-gradient(90deg, var(--landing-primary), #62b5e5);
    }

    .login-eyebrow {
      color: var(--landing-primary);
      font-size: .76rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 7px;
    }

    .login-heading {
      font-size: 1.45rem;
      font-weight: 750;
      margin-bottom: 6px;
    }

    .login-copy {
      color: var(--landing-muted);
      font-size: .9rem;
      line-height: 1.55;
      margin-bottom: 22px;
    }

    .hero-card label {
      color: #27445b;
      font-size: .88rem;
      font-weight: 650;
    }

    .hero-card .au-input {
      border: 1px solid #ccdbe7;
      border-radius: 10px;
      min-height: 48px;
      transition: border-color .2s, box-shadow .2s;
    }

    .hero-card .au-input:focus {
      border-color: var(--landing-primary);
      box-shadow: 0 0 0 3px rgba(36,130,196,.12);
    }

    .login-security-note {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      color: #72879a;
      font-size: .78rem;
      margin-top: 17px;
    }

    .value-strip {
      position: relative;
      z-index: 3;
      margin-top: -25px;
    }

    .value-strip-inner {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      background: var(--landing-ink);
      color: #fff;
      border-radius: 18px;
      box-shadow: 0 18px 45px rgba(16,42,67,.18);
      overflow: hidden;
    }

    .value-item {
      padding: 24px 28px;
      border-right: 1px solid rgba(255,255,255,.12);
    }

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

    .value-kicker {
      display: block;
      color: #9cc9e7;
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 5px;
    }

    .value-copy {
      font-size: .96rem;
      font-weight: 650;
    }

    .section-wrap {
      padding: 88px 0;
    }

    .section-title {
      font-size: clamp(2rem, 3vw, 2.75rem);
      font-weight: 800;
      letter-spacing: -.035em;
      color: var(--landing-ink);
      margin-bottom: 12px;
    }

    .section-subtitle {
      color: var(--landing-muted);
      line-height: 1.7;
      font-size: 1rem;
      margin-bottom: 36px;
      max-width: 710px;
    }

    .feature-card {
      height: 100%;
      background: #fff;
      border: 1px solid var(--landing-line);
      border-radius: 16px;
      padding: 25px;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .feature-card:hover {
      transform: translateY(-4px);
      border-color: #b7d6e9;
      box-shadow: 0 18px 40px rgba(16,42,67,.09);
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: #eaf5fc;
      color: var(--landing-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      font-size: 18px;
    }

    .feature-card h5 {
      color: var(--landing-ink);
      font-weight: 750;
      margin-bottom: 9px;
    }

    .feature-card p {
      color: var(--landing-muted);
      line-height: 1.65;
      font-size: .92rem;
    }

    .how-section {
      background: var(--landing-ink);
      color: #fff;
    }

    .how-section .section-title {
      color: #fff;
    }

    .how-section .section-subtitle {
      color: #b8cada;
    }

    .step-card {
      position: relative;
      height: 100%;
      padding: 28px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,.13);
      background: rgba(255,255,255,.055);
    }

    .step-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: var(--landing-warm);
      color: #5f3b00;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .step-card h5 {
      color: #fff;
      font-weight: 750;
      margin-bottom: 10px;
    }

    .step-card p {
      color: #b8cada;
      line-height: 1.65;
      margin: 0;
    }

    .package-card {
      position: relative;
      height: 100%;
      background: #fff;
      border: 1px solid var(--landing-line);
      border-radius: 18px;
      box-shadow: 0 13px 32px rgba(16,42,67,.07);
      padding: 28px;
      display: flex;
      flex-direction: column;
    }

    .package-price {
      font-size: 2.05rem;
      font-weight: 800;
      letter-spacing: -.035em;
      color: var(--landing-ink);
      margin: 12px 0 4px;
    }

    .package-price small {
      font-size: .75rem;
      letter-spacing: 0;
      color: #6d8294;
      font-weight: 650;
    }

    .package-label {
      color: var(--landing-muted);
      margin-bottom: 5px;
    }

    .package-card h5 {
      color: var(--landing-ink);
      font-weight: 750;
    }

    .package-feature-list {
      margin: 18px 0 24px;
    }

    .package-feature-list p {
      color: #45627a;
      font-size: .9rem;
      margin-bottom: 11px;
    }

    .package-feature-list i {
      color: #21a179;
      margin-right: 7px;
    }

    .package-card.featured {
      border: 2px solid var(--landing-primary);
      transform: translateY(-8px);
      box-shadow: 0 20px 45px rgba(36,130,196,.15);
    }

    .recommended-badge {
      position: absolute;
      right: 20px;
      top: 20px;
      padding: 5px 10px;
      border-radius: 999px;
      color: #fff;
      background: var(--landing-primary);
      font-size: .67rem;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .package-cta {
      margin-top: auto;
    }

    .addons-note {
      display: flex;
      gap: 15px;
      align-items: flex-start;
      margin-top: 25px;
      padding: 18px 20px;
      border: 1px solid #cfe5f2;
      border-radius: 14px;
      background: #f2f9fd;
      color: #35556e;
    }

    .addons-note i {
      color: var(--landing-primary);
      font-size: 1.2rem;
      margin-top: 3px;
    }

    .faq-wrap {
      max-width: 850px;
    }

    .faq-item {
      border-bottom: 1px solid var(--landing-line);
      padding: 4px 0;
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      position: relative;
      padding: 20px 42px 20px 0;
      color: var(--landing-ink);
      font-weight: 700;
    }

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

    .faq-item summary::after {
      content: "+";
      position: absolute;
      right: 8px;
      top: 18px;
      color: var(--landing-primary);
      font-size: 1.45rem;
      font-weight: 500;
    }

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

    .faq-answer {
      max-width: 760px;
      color: var(--landing-muted);
      line-height: 1.7;
      padding: 0 42px 20px 0;
    }

    .footer-strip {
      padding: 32px 0;
      color: #7a8fa1;
      font-size: .92rem;
      background: #0c2235;
    }
    .footer-version {
      margin-left: 8px;
      font-size: .82rem;
      color: #6f8799;
      font-weight: 500;
    }

    .password-field-wrap {
      position: relative;
    }

    .password-field-wrap .au-input {
      padding-right: 46px;
    }

    .password-toggle-btn {
      position: absolute;
      top: 50%;
      right: 14px;
      transform: translateY(-50%);
      border: 0;
      background: transparent;
      color: #71839b;
      width: 24px;
      height: 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      padding: 0;
    }

    .password-toggle-btn:hover {
      color: var(--landing-primary);
    }

    .password-toggle-btn:focus {
      outline: none;
      box-shadow: none;
      color: var(--landing-primary);
    }

    .btn-brand {
      background-color: var(--landing-primary);
      border-color: var(--landing-primary);
      color: #fff;
      border-radius: 9px;
      font-weight: 700;
      box-shadow: 0 8px 20px rgba(36,130,196,.18);
    }

    .btn-brand:hover {
      opacity: .92;
      color: #fff;
    }

    .btn-outline-brand {
      border: 1px solid #b9d2e3;
      background: rgba(255,255,255,.75);
      color: #244b68;
      border-radius: 9px;
      font-weight: 700;
    }

    .btn-outline-brand:hover {
      border-color: var(--landing-primary);
      color: var(--landing-primary);
      background: #fff;
    }

    .link-all-plans {
      font-weight: 600;
      color: var(--landing-primary);
      text-decoration: none;
    }
    .link-all-plans:hover {
      text-decoration: underline;
      color: var(--landing-primary);
    }

    .all-plans-wrap {
      text-align: center;
      margin-top: 6px;
      margin-bottom: 18px;
    }

    .modal-plans .modal-content {
      border-radius: 20px;
      border: 0;
      box-shadow: 0 28px 70px rgba(16,42,67,.22);
      overflow: hidden;
      max-height: calc(100vh - 40px);
    }
    .modal-plans .modal-header {
      flex: 0 0 auto;
      border-bottom: 0;
      background:
        radial-gradient(circle at 92% 0%, rgba(98,181,229,.35), transparent 36%),
        linear-gradient(135deg, #102a43 0%, #183f5e 100%);
      padding: 25px 28px 22px;
    }
    .modal-plans .modal-title {
      font-size: 1.45rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: -.02em;
    }
    .modal-plans .modal-subtitle {
      color: #b9d3e5;
      line-height: 1.5;
    }
    .modal-plans .close {
      color: #fff;
      opacity: .75;
      text-shadow: none;
      margin: -4px -4px 0 0;
    }
    .modal-plans .close:hover {
      opacity: 1;
    }
    .modal-plans .modal-body {
      flex: 1 1 auto;
      background: #f5f9fc;
      padding: 24px 28px 8px;
      overflow-y: auto;
      overscroll-behavior: contain;
    }
    .plans-group {
      margin-bottom: 24px;
    }
    .plans-group-heading {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 12px;
      margin-bottom: 12px;
    }
    .plans-group-heading h6 {
      color: var(--landing-ink);
      font-size: 1rem;
      font-weight: 800;
      margin: 0;
    }
    .plans-group-heading span {
      color: #71879a;
      font-size: .78rem;
    }
    .plans-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }
    .all-plan-card {
      position: relative;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px 18px;
      align-items: end;
      background: #fff;
      border: 1px solid var(--landing-line);
      border-radius: 14px;
      padding: 17px;
      transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    }
    .all-plan-card:hover {
      border-color: #a8cee5;
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(16,42,67,.08);
    }
    .all-plan-card.featured {
      border: 2px solid var(--landing-primary);
      background: linear-gradient(145deg, #fff 0%, #f2f9fd 100%);
    }
    .all-plan-folios strong {
      display: block;
      color: var(--landing-ink);
      font-size: 1.55rem;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -.03em;
    }
    .all-plan-folios span {
      color: var(--landing-muted);
      font-size: .78rem;
    }
    .all-plan-price {
      color: var(--landing-ink);
      font-size: 1.05rem;
      font-weight: 800;
      text-align: right;
      white-space: nowrap;
    }
    .all-plan-price small {
      display: block;
      color: #8093a4;
      font-size: .65rem;
      font-weight: 650;
      margin-top: 3px;
    }
    .all-plan-meta {
      grid-column: 1 / -1;
      display: flex;
      align-items: center;
      gap: 7px;
      color: #587187;
      font-size: .75rem;
      padding-top: 10px;
      border-top: 1px solid #edf2f6;
    }
    .all-plan-meta i {
      color: var(--landing-primary);
    }
    .plan-chip {
      display: inline-flex;
      align-items: center;
      padding: 3px 9px;
      border-radius: 999px;
      font-size: .64rem;
      font-weight: 800;
      letter-spacing: .04em;
      text-transform: uppercase;
      background: var(--landing-primary);
      color: #fff;
      margin-bottom: 8px;
    }
    .modal-plans .modal-footer {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      background: #fff;
      border-top: 1px solid var(--landing-line);
      padding: 18px 28px;
    }
    .plans-tax-note {
      color: #71879a;
      font-size: .75rem;
      line-height: 1.45;
    }
    .plans-tax-note strong {
      color: #405c72;
    }

    @media (max-width: 991px) {
      .hero-wrap {
        padding: 58px 0 62px;
      }

      .value-strip {
        margin-top: 0;
        padding-top: 22px;
        background: var(--landing-soft);
      }

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

      .landing-nav-link {
        display: none;
      }
    }

    @media (max-width: 767px) {
      .landing-logo {
        max-height: 42px;
      }

      .hero-title {
        font-size: 2.55rem;
      }

      .hero-subtitle {
        font-size: 1rem;
      }

      .hero-actions .btn {
        flex: 1 1 100%;
      }

      .hero-trust {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .hero-card {
        padding: 26px 21px;
      }

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

      .value-item {
        padding: 19px 22px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
      }

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

      .section-wrap {
        padding: 64px 0;
      }

      .section-title {
        font-size: 2rem;
      }

      .landing-nav .btn {
        padding: 8px 12px;
        font-size: .82rem;
      }

      .modal-plans .modal-dialog {
        margin: 12px;
      }

      .modal-plans .modal-content {
        max-height: calc(100vh - 24px);
      }

      .modal-plans .modal-header {
        padding: 22px 20px 19px;
      }

      .modal-plans .modal-title {
        font-size: 1.2rem;
      }

      .modal-plans .modal-body {
        padding: 20px 16px 4px;
      }

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

      .all-plan-card {
        padding: 16px;
      }

      .modal-plans .modal-footer {
        align-items: stretch;
        flex-direction: column;
        padding: 16px;
      }

      .modal-plans .modal-footer .btn {
        width: 100%;
      }
    }
/* Focused same-origin login used when an open application screen needs reauthentication. */
.reauth-page .landing-nav-links,
.reauth-page .hero-wrap .col-lg-7,
.reauth-page .value-strip,
.reauth-page .section-wrap,
.reauth-page .footer-strip {
    display: none !important;
}

.reauth-page--embedded .landing-nav {
    display: none !important;
}

.reauth-page .hero-wrap {
    align-items: center;
    display: flex;
    min-height: calc(100vh - 78px);
    padding: 34px 0;
}

.reauth-page .hero-wrap .row {
    justify-content: center;
}

.reauth-page .hero-wrap .col-lg-5 {
    flex: 0 0 100%;
    max-width: 470px;
}

.reauth-page .hero-card {
    box-shadow: 0 24px 58px rgba(18, 58, 89, 0.18);
}

.reauth-page--embedded .hero-wrap {
    min-height: 100vh;
    padding: 18px;
}

.reauth-page--embedded .hero-card {
    border: 0;
    box-shadow: none;
}

.reauth-page--embedded .login-eyebrow,
.reauth-page--embedded .login-heading,
.reauth-page--embedded .login-copy {
    display: none;
}

@media (max-width: 575px) {
    .reauth-page .hero-wrap {
        min-height: calc(100vh - 68px);
        padding: 18px 0;
    }
}
