      :root {
        color-scheme: light;
        --color-bg: #f5f5f7;
        --color-border: rgba(15, 44, 56, 0.14);
        --color-text: #0f2c38;
        --color-muted: #4d5a61;
        --color-primary: #0f2c38;
        --color-highlight: #d9e862;
        --color-highlight-soft: rgba(217, 232, 98, 0.25);
      }
      html {
        min-width: 300px;
      }
      body {
        margin: 0;
        min-height: 100vh;
        min-width: 300px;
        font-family: "SF Pro Text", "SF Pro Display", "Inter", "Segoe UI",
          system-ui, -apple-system, sans-serif;
       background: #f5f5f7;
       color: #0f2c38;
       display: flex;
       align-items: center;
       justify-content: center;
        padding: clamp(32px, 6vw, 64px) 20px;
        transition: direction 0.2s ease;
      }
      .card {
        width: min(820px, 100%);
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(18px);
        border-radius: 16px;
        border: 1px solid rgba(15, 44, 56, 0.1);
        padding: clamp(32px, 6vw, 56px);
        display: grid;
        gap: 26px;
        box-shadow: 0 32px 120px rgba(15, 44, 56, 0.14);
      }
      .auth-loading {
        display: none;
        align-items: center;
        justify-content: center;
        gap: 12px;
        color: rgba(15, 44, 56, 0.72);
        font-size: 14px;
        text-align: center;
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 16px;
        z-index: 2;
        pointer-events: none;
      }
      body[data-auth-state="checking"] .auth-panel,
      body[data-auth-state="checking"] .talk-block {
        filter: blur(2px);
        opacity: 0.45;
        pointer-events: none;
        user-select: none;
      }
      body[data-auth-state="checking"] .auth-loading {
        display: flex;
      }
      .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-start;
        font-size: 12px;
        color: rgba(15, 44, 56, 0.6);
      }
      [dir="rtl"] .legal-links {
        justify-content: flex-end;
      }
      .legal-links a {
        color: inherit;
        text-decoration: none;
      }
      .legal-links a:hover {
        text-decoration: underline;
      }
      .legal-card {
        width: min(920px, 100%);
      }
      .legal-nav {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: var(--color-muted);
      }
      .legal-nav a {
        color: inherit;
        text-decoration: none;
      }
      .legal-nav a:hover {
        text-decoration: underline;
      }
      .legal-content h1 {
        margin: 0 0 8px;
        font-size: 28px;
        letter-spacing: 0.04em;
        text-transform: uppercase;
      }
      .legal-content h2 {
        margin: 24px 0 8px;
        font-size: 16px;
        letter-spacing: 0.04em;
        text-transform: uppercase;
      }
      .legal-content p {
        margin: 0 0 12px;
        color: rgba(15, 44, 56, 0.8);
      }
      .legal-content ul {
        margin: 0 0 12px 18px;
        padding: 0;
      }
      .legal-content li {
        margin: 0 0 8px;
        color: rgba(15, 44, 56, 0.8);
      }
      body[data-view="portal"] .card {
        display: none;
      }
      body[data-view="login"] .dashboard {
        display: none;
      }
      .brand-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
      }
      .brand {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        font-weight: 600;
        font-size: 18px;
      }
      .brand img {
        width: 56px;
        height: 56px;
        flex: 0 0 56px;
      }
      .brand__name {
        font-family: "SF Pro Text", "SF Pro Display", "Inter", "Segoe UI",
          system-ui, -apple-system, sans-serif;
        display: inline-flex;
        flex-direction: column;
        font-weight: 600;
        line-height: 1.05;
        text-align: left;
        gap: 4px;
      }
      .brand__line {
        display: inline-flex;
      }
      .brand__line--primary {
        font-size: 18px;
        font-weight: 600;
      }
      .brand__line--secondary {
        font-size: 18px;
        letter-spacing: 0.04em;
        text-transform: none;
        /* color: var(--color-muted); */
        font-weight: 500;
      }
      .language-toolbar {
        display: flex;
        justify-content: flex-end;
        align-items: center;
      }
      .dashboard {
        display: grid;
        gap: 24px;
        padding: 32px;
        border-radius: 28px;
        border: 1px solid rgba(15, 44, 56, 0.1);
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 28px 96px rgba(15, 44, 56, 0.16);
      }
      .dashboard[hidden] {
        display: none !important;
      }
      .dashboard__header {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        align-items: flex-start;
        justify-content: space-between;
      }
      body[data-dashboard-state="loading"] .dashboard__controls {
        opacity: 0;
        pointer-events: none;
      }
      .dashboard__controls {
        display: grid;
        gap: 12px;
        justify-items: end;
      }
      [dir="rtl"] .dashboard__controls {
        justify-items: start;
      }
      .dashboard-loading {
        display: grid;
        justify-items: center;
        gap: 12px;
        padding: 24px 16px 32px;
        text-align: center;
        color: rgba(15, 44, 56, 0.72);
        font-size: 14px;
      }
      body[data-dashboard-state="ready"] .dashboard-loading {
        display: none;
      }
      .dashboard-loading__spinner {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 3px solid rgba(15, 44, 56, 0.15);
        border-top-color: var(--color-primary);
        animation: dashboard-spin 0.8s linear infinite;
      }
      .dashboard-loading__text {
        margin: 0;
      }
      body[data-dashboard-state="loading"] .dashboard__layout {
        display: none;
      }
      .dashboard__heading {
        display: grid;
        gap: 6px;
      }
      .dashboard__title {
        margin: 0;
        font-size: 26px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
      }
      .dashboard__subtitle {
        margin: 0;
        color: rgba(15, 44, 56, 0.72);
        font-size: 15px;
        max-width: 520px;
      }
      .dashboard__meta {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .dashboard__user {
        display: grid;
        gap: 4px;
        text-align: right;
        font-size: 13px;
        color: rgba(15, 44, 56, 0.7);
      }
      [dir="ltr"] .dashboard__user {
        text-align: left;
      }
      .dashboard__signout {
        border: 1px solid rgba(15, 44, 56, 0.18);
        background: transparent;
        color: var(--color-primary);
        border-radius: 999px;
        padding: 10px 18px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s ease, color 0.2s ease;
      }
      .dashboard__signout:hover,
      .dashboard__signout:focus-visible {
        background: var(--color-primary);
        color: #f5f5f7;
        outline: none;
      }
      .dashboard__layout {
        display: grid;
        gap: 24px;
        grid-template-columns: 260px minmax(0, 1fr);
        align-items: start;
      }
      .dashboard-nav {
        display: grid;
        gap: 16px;
      }
      .dashboard-nav__item {
        display: grid;
        gap: 4px;
        padding: 16px 18px;
        border-radius: 18px;
        border: 1px solid rgba(15, 44, 56, 0.08);
        background: rgba(245, 245, 247, 0.85);
        text-decoration: none;
        color: inherit;
        transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
      }
      .dashboard-nav__item.is-active {
        border-color: rgba(15, 44, 56, 0.32);
        background: rgba(217, 232, 98, 0.3);
      }
      .dashboard-nav__item:hover,
      .dashboard-nav__item:focus-visible {
        border-color: rgba(15, 44, 56, 0.24);
        background: rgba(217, 232, 98, 0.22);
        transform: translateY(-2px);
        outline: none;
      }
      .dashboard-nav__title {
        margin: 0;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
      }
      .dashboard-nav__meta {
        margin: 0;
        font-size: 13px;
        color: rgba(15, 44, 56, 0.72);
      }
      .dashboard-nav__badge {
        font-size: 11px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgba(15, 44, 56, 0.6);
      }
      .dashboard-content {
        display: grid;
        gap: 18px;
      }
      .dashboard-card {
        border-radius: 22px;
        border: 1px solid rgba(15, 44, 56, 0.08);
        background: rgba(255, 255, 255, 0.9);
        padding: 22px 24px;
        display: grid;
        gap: 12px;
      }
      .dashboard-card__title {
        margin: 0;
        font-size: 16px;
        letter-spacing: 0.05em;
        text-transform: uppercase;
      }
      .dashboard-card__body {
        margin: 0;
        font-size: 14px;
        color: rgba(15, 44, 56, 0.76);
      }
      .dashboard-card__list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
      }
      .dashboard-card__list li {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
      }
      .dashboard-card__pill {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 4px 10px;
        font-size: 12px;
        border-radius: 999px;
        background: rgba(217, 232, 98, 0.24);
        border: 1px solid rgba(217, 232, 98, 0.6);
        color: var(--color-primary);
      }
      @keyframes dashboard-spin {
        to {
          transform: rotate(360deg);
        }
      }
      .dashboard-alert {
        display: grid;
        gap: 6px;
        padding: 14px 16px;
        border-radius: 16px;
        border: 1px solid rgba(216, 58, 52, 0.22);
        background: rgba(216, 58, 52, 0.12);
        color: #5f211e;
      }
      .dashboard-alert--info {
        border-color: rgba(15, 44, 56, 0.18);
        background: rgba(15, 44, 56, 0.08);
        color: rgba(15, 44, 56, 0.8);
      }
      .toggle-group {
        display: inline-flex;
        border: 1px solid var(--color-border);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.6);
        overflow: visible;
      }
      [data-role="language-toggle-group"] {
        border: none;
        background: transparent;
        padding: 0;
        gap: 4px;
        align-items: center;
      }
      [data-role="language-toggle-group"] > .toggle-button,
      [data-role="language-toggle-group"] .toggle-button-group > .toggle-button {
        padding: 0;
        background: transparent;
        border-radius: 0;
        color: rgba(15, 44, 56, 0.7);
        font-weight: 500;
        font-size: 12px;
      }
      [data-role="language-toggle-group"] > .toggle-button + .toggle-button::before,
      [data-role="language-toggle-group"] .toggle-button-group::before {
        content: "|";
        margin: 0 6px;
        color: rgba(15, 44, 56, 0.22);
        font-weight: 400;
      }
      [data-role="language-toggle-group"] > .toggle-button:hover,
      [data-role="language-toggle-group"] > .toggle-button:focus,
      [data-role="language-toggle-group"] > .toggle-button:focus-visible,
      [data-role="language-toggle-group"] .toggle-button-group > .toggle-button:hover,
      [data-role="language-toggle-group"] .toggle-button-group > .toggle-button:focus,
      [data-role="language-toggle-group"] .toggle-button-group > .toggle-button:focus-visible,
      [data-role="language-toggle-group"] > .toggle-button:active,
      [data-role="language-toggle-group"] .toggle-button-group > .toggle-button:active {
        color: var(--color-primary);
        background: transparent;
        text-decoration: underline;
        outline: none;
      }
      [data-role="language-toggle-group"] > .toggle-button.is-active,
      [data-role="language-toggle-group"] .toggle-button-group > .toggle-button.is-active,
      [data-role="language-toggle-group"] .toggle-button-group > .toggle-button.is-open {
        background: transparent !important;
        color: var(--color-primary);
        text-decoration: underline;
      }
      .toggle-button {
        padding: 8px 14px;
        border: none;
        background: transparent;
        font-size: 13px;
        font-weight: 500;
        color: var(--color-muted);
        cursor: pointer;
        transition: color 0.2s ease, background 0.2s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        text-decoration: none;
      }
      .toggle-group > .toggle-button {
        border-radius: 0;
      }
      .toggle-group > .toggle-button:first-child {
        border-top-left-radius: 999px;
        border-bottom-left-radius: 999px;
      }
      .toggle-group > .toggle-button:last-child {
        border-top-right-radius: 999px;
        border-bottom-right-radius: 999px;
      }
      html[dir="rtl"] .toggle-group > .toggle-button:first-child {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border-top-right-radius: 999px;
        border-bottom-right-radius: 999px;
      }
      html[dir="rtl"] .toggle-group > .toggle-button:last-child {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        border-top-left-radius: 999px;
        border-bottom-left-radius: 999px;
      }
      .toggle-button:hover,
      .toggle-button:focus-visible {
        color: var(--color-text);
        outline: none;
      }
      .toggle-button.is-active {
        background: var(--color-highlight);
        color: var(--color-primary);
      }
      .toggle-button-group {
        position: relative;
        display: inline-flex;
      }
      .toggle-button-group--chinese {
        position: relative;
        border-top-right-radius: 999px;
        border-bottom-right-radius: 999px;
      }
      .toggle-button-group--chinese .toggle-button--dropdown {
        border-top-right-radius: 999px;
        border-bottom-right-radius: 999px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        padding-right: 0;
      }
      html[dir="rtl"] .toggle-button-group--chinese .toggle-button--dropdown {
        border-top-left-radius: 999px;
        border-bottom-left-radius: 999px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
      }
      .toggle-button--dropdown {
        cursor: pointer;
      }
      .toggle-button__arrow {
        display: inline-block;
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid currentColor;
        transition: transform 0.2s ease;
        margin-inline-start: 4px;
      }
      .toggle-button--dropdown.is-open .toggle-button__arrow {
        transform: rotate(180deg);
      }
      .toggle-button__text {
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
      }
      .toggle-button__check {
        display: inline-flex;
        width: 1em;
        justify-content: center;
        align-items: center;
        font-size: 12px;
        color: var(--color-primary);
        visibility: hidden;
      }
      .toggle-button--dropdown-option.is-active .toggle-button__check {
        visibility: visible;
      }
      .toggle-button__dropdown {
        position: absolute;
        top: calc(100% + 6px);
        left: 0;
        min-width: 100%;
        background: #ffffff;
        border: 1px solid var(--color-border);
        border-radius: 12px;
        box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
        padding: 4px 0;
        display: none;
        flex-direction: column;
        z-index: 20;
        overflow: hidden;
      }
      html[dir="rtl"] .toggle-button__dropdown {
        left: auto;
        right: 0;
      }
      .toggle-button__dropdown.is-open {
        display: flex;
      }
      .toggle-button--dropdown-option {
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        gap: 6px;
        text-align: left;
        cursor: pointer;
        padding: 8px 16px;
        background: transparent;
      }
      html[dir="rtl"] .toggle-button--dropdown-option {
        justify-content: flex-end;
        text-align: right;
      }
      .toggle-button__dropdown .toggle-button {
        font-size: 13px;
        font-weight: 500;
        color: var(--color-muted);
      }
      .toggle-button__dropdown .toggle-button:hover,
      .toggle-button__dropdown .toggle-button:focus-visible {
        background: transparent;
        color: var(--color-text);
      }
      .toggle-button__dropdown .toggle-button.is-active {
        background: transparent;
        color: var(--color-primary);
      }
      .badge {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        border-radius: 999px;
        padding: 10px 22px;
        background: rgba(217, 232, 98, 0.24);
        border: 1px solid rgba(217, 232, 98, 0.65);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.16em;
        text-transform: uppercase;
      }
      h1 {
        margin: 0;
        font-size: clamp(30px, 4.6vw, 38px);
        line-height: 1.2;
      }
      p {
        margin: 0;
        font-size: 16px;
        line-height: 1.65;
        color: rgba(15, 44, 56, 0.74);
      }
      .card-body {
        display: grid;
        gap: 26px;
      }
      .card-left {
        display: grid;
        gap: 22px;
        position: relative;
      }
      .card-right {
        display: grid;
        gap: 16px;
      }
      .auth-panel {
        display: grid;
        gap: 18px;
        background: rgba(245, 245, 247, 0.8);
        border: 1px solid rgba(15, 44, 56, 0.08);
        border-radius: 16px;
        padding: 24px;
      }
      .auth-panel label {
        display: block;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 6px;
        color: rgba(15, 44, 56, 0.82);
      }
      .auth-panel input {
        width: 100%;
        box-sizing: border-box;
        border-radius: 14px;
        border: 1px solid rgba(15, 44, 56, 0.18);
        background: #fff;
        font-size: 15px;
        padding: 12px 16px;
        color: inherit;
        direction: ltr;
        text-align: left;
      }
      .auth-panel input:focus-visible {
        outline: 2px solid rgba(217, 232, 98, 0.8);
        outline-offset: 1px;
      }
      .auth-primary {
        width: 100%;
        border: none;
        border-radius: 999px;
        padding: 13px 22px;
        background: #0f2c38;
        color: #f5f5f7;
        font-weight: 600;
        font-size: 15px;
        cursor: pointer;
        transition: background 0.2s ease;
      }
      .auth-primary:hover,
      .auth-primary:focus-visible {
        background: #122f41;
      }
      .auth-primary:disabled {
        opacity: 0.6;
        cursor: not-allowed;
      }
      .auth-divider {
        display: flex;
        align-items: center;
        gap: 12px;
        color: rgba(15, 44, 56, 0.45);
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        justify-content: center;
      }
      .auth-divider::before,
      .auth-divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background: rgba(15, 44, 56, 0.12);
      }
      .auth-google {
        width: 100%;
        border-radius: 999px;
        padding: 13px 22px;
        border: 1px solid rgba(15, 44, 56, 0.18);
        background: #fff;
        font-weight: 600;
        font-size: 15px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        cursor: pointer;
        transition: border 0.2s ease, transform 0.2s ease;
      }
      .auth-google:hover,
      .auth-google:focus-visible {
        border-color: rgba(15, 44, 56, 0.3);
        transform: translateY(-1px);
      }
      .auth-message {
        display: none;
        border-radius: 16px;
        padding: 12px 16px;
        font-size: 13px;
        line-height: 1.5;
        border: 1px solid rgba(15, 44, 56, 0.12);
        background: rgba(15, 44, 56, 0.06);
        color: rgba(15, 44, 56, 0.75);
      }
      .auth-message.is-visible {
        display: block;
      }
      .auth-message--error {
        background: rgba(204, 0, 0, 0.08);
        border-color: rgba(204, 0, 0, 0.24);
        color: #6a1a1a;
      }
      .auth-message--success {
        background: rgba(46, 125, 50, 0.1);
        border-color: rgba(46, 125, 50, 0.22);
        color: #1b5e20;
      }
      .auth-message--info {
        background: rgba(15, 44, 56, 0.08);
        border-color: rgba(15, 44, 56, 0.16);
        color: rgba(15, 44, 56, 0.78);
      }
      .auth-google svg {
        width: 20px;
        height: 20px;
      }
      .talk-block {
        display: grid;
        gap: 10px;
        background: rgba(15, 44, 56, 0.06);
        border: 1px solid rgba(15, 44, 56, 0.1);
        border-radius: 16px;
        padding: 18px 20px;
      }
      .talk-label {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: rgba(15, 44, 56, 0.66);
      }
      .cta-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
        padding-inline-start: 72px;
        padding-inline-end: 72px;
        gap: 0;
        height: 44px;
        border-radius: 999px;
        background: var(--color-primary);
        color: #f5f5f7;
        font-weight: 600;
        font-size: 15px;
        border: none;
        cursor: pointer;
        text-decoration: none;
        transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
          color 0.2s ease;
      }
      .cta-button:hover,
      .cta-button:focus-visible {
        background: var(--color-highlight);
        color: var(--color-primary);
      }
      .cta-button__icon {
        position: absolute;
        left: -1px;
        top: 50%;
        transform: translateY(-50%);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 999px;
        background: var(--color-highlight);
        transition: transform 0.2s ease, background 0.2s ease;
        flex-shrink: 0;
      }
      .cta-button__icon::after {
        content: "";
        width: 20px;
        height: 20px;
        background: var(--color-primary);
        -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16.062 28.228c-2.319 0-4.489-0.64-6.342-1.753l-0.395-0.234-4.731 1.24 1.247-4.559-0.294-0.467c-1.185-1.862-1.889-4.131-1.889-6.565 0-6.822 5.531-12.353 12.353-12.353s12.353 5.531 12.353 12.353-5.53 12.353-12.353 12.353zM22.838 18.977c-0.371-0.186-2.197-1.083-2.537-1.208s-0.589-0.185-0.837 0.187-0.958 1.207-1.175 1.455-0.434 0.279-0.805 0.094c-1.15-0.466-2.138-1.087-2.997-1.852-0.799-0.74-1.484-1.587-2.037-2.521-0.216-0.371-0.023-0.572 0.162-0.757 0.167-0.166 0.372-0.434 0.557-0.65 0.146-0.179 0.271-0.384 0.366-0.604s0.068-0.188 0.068-0.296-0.037-0.253-0.101-0.357c-0.094-0.186-0.836-2.014-1.145-2.758s-0.609-0.625-0.836-0.637-0.464-0.012-0.712-0.012c-0.395 0.010-0.746 0.188-0.988 0.463-0.802 0.761-1.3 1.834-1.3 3.023s0.681 2.784 1.527 3.857c1.604 2.379 3.742 4.282 6.251 5.564 0.548 0.248 1.25 0.513 1.968 0.74 0.442 0.14 0.951 0.221 1.479 0.221 0.303 0 0.601-0.027 0.889-0.078 1.069-0.223 1.956-0.868 2.497-1.749 0.165-0.366 0.261-0.793 0.261-1.242 0-0.185-0.016-0.366-0.047-0.542s-0.34-0.247-0.712-0.434z'/%3E%3C/svg%3E")
          center/contain no-repeat;
        mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16.062 28.228c-2.319 0-4.489-0.64-6.342-1.753l-0.395-0.234-4.731 1.24 1.247-4.559-0.294-0.467c-1.185-1.862-1.889-4.131-1.889-6.565 0-6.822 5.531-12.353 12.353-12.353s12.353 5.531 12.353 12.353-5.53 12.353-12.353 12.353zM22.838 18.977c-0.371-0.186-2.197-1.083-2.537-1.208s-0.589-0.185-0.837 0.187-0.958 1.207-1.175 1.455-0.434 0.279-0.805 0.094c-1.15-0.466-2.138-1.087-2.997-1.852-0.799-0.74-1.484-1.587-2.037-2.521-0.216-0.371-0.023-0.572 0.162-0.757 0.167-0.166 0.372-0.434 0.557-0.65 0.146-0.179 0.271-0.384 0.366-0.604s0.068-0.188 0.068-0.296-0.037-0.253-0.101-0.357c-0.094-0.186-0.836-2.014-1.145-2.758s-0.609-0.625-0.836-0.637-0.464-0.012-0.712-0.012c-0.395 0.010-0.746 0.188-0.988 0.463-0.802 0.761-1.3 1.834-1.3 3.023s0.681 2.784 1.527 3.857c1.604 2.379 3.742 4.282 6.251 5.564 0.548 0.248 1.25 0.513 1.968 0.74 0.442 0.14 0.951 0.221 1.479 0.221 0.303 0 0.601-0.027 0.889-0.078 1.069-0.223 1.956-0.868 2.497-1.749 0.165-0.366 0.261-0.793 0.261-1.242 0-0.185-0.016-0.366-0.047-0.542s-0.34-0.247-0.712-0.434z'/%3E%3C/svg%3E")
          center/contain no-repeat;
        position: absolute;
      }
      .cta-button__label {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        max-width: calc(100% - 120px);
        line-height: 1.2;
      }
      .cta-button:hover .cta-button__icon,
      .cta-button:focus-visible .cta-button__icon {
        transform: translateY(-50%) scale(1.03);
        background: var(--color-primary);
      }
      .cta-button:hover .cta-button__icon::after,
      .cta-button:focus-visible .cta-button__icon::after {
        background: var(--color-highlight);
      }
      html[dir="rtl"] .cta-button {
        padding-inline-start: 72px;
        padding-inline-end: 72px;
      }
      html[dir="rtl"] .cta-button__icon {
        left: auto;
        right: -1px;
      }
      .benefits {
        display: grid;
        gap: 16px;
      }
      .benefits h2 {
        margin: 0;
        font-size: 18px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgba(15, 44, 56, 0.72);
      }
      .benefits-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 12px 18px;
        padding: 0;
        margin: 0;
        list-style: none;
      }
      .benefits-list li {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 15px;
        color: rgba(15, 44, 56, 0.78);
      }
      .benefits-list li::before {
        content: "•";
        color: #d9e862;
        font-size: 22px;
        line-height: 1;
        margin-right: 8px;
      }
      @media (min-width: 880px) {
        .card-body {
          grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
          align-items: start;
        }
      }
      @media (max-width: 520px) {
        .card {
          padding: 28px 22px;
          border-radius: 26px;
        }
        .auth-panel {
          padding: 20px;
        }
      }
      [dir="rtl"] .brand-row {
        flex-direction: row;
        justify-content: space-between;
        direction: ltr;
      }
      [dir="rtl"] .brand-row .brand {
        order: 2;
        margin-left: auto;
      }
      [dir="rtl"] .brand-row .language-toolbar {
        order: 1;
        margin-right: auto;
      }
      [dir="rtl"] .toggle-button__dropdown {
        right: auto;
        left: 0;
        min-width: max-content;
      }
      [dir="rtl"] .toggle-button--dropdown-option {
        justify-content: flex-start;
        text-align: left;
        direction: ltr;
      }
      [dir="rtl"] .auth-panel label,
      [dir="rtl"] .auth-panel input,
      [dir="rtl"] .auth-divider,
      [dir="rtl"] .talk-block,
      [dir="rtl"] .cta-button,
      [dir="rtl"] .benefits h2 {
        text-align: right;
      }
      [dir="rtl"] .benefits-list li {
        justify-content: flex-end;
        text-align: right;
        direction: rtl;
      }
      [dir="rtl"] .benefits-list {
        justify-items: start;
      }
      [dir="rtl"] .benefits {
        text-align: right;
      }
      [dir="rtl"] .benefits-list li::before {
        margin-right: 0;
        margin-left: 8px;
      }
      [dir="rtl"] .auth-message {
        text-align: right;
      }
    
@media (min-width: 481px) {
  .brand__name {
    flex-direction: row;
    align-items: center;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .brand__name {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .brand__line--primary {
    font-size: 18px;
  }
  .brand__line--secondary {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-muted);
    font-weight: 600;
  }
}

@media (max-width: 960px) {
  .dashboard {
    padding: 26px;
  }
  .dashboard__layout {
    grid-template-columns: 1fr;
  }
  .dashboard__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .dashboard-nav {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .dashboard-content {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 640px) {
  .dashboard {
    padding: 22px;
    gap: 20px;
  }
  .dashboard__header {
    gap: 10px;
  }
  .dashboard__title {
    font-size: 22px;
    letter-spacing: 0.04em;
  }
  .dashboard__subtitle {
    font-size: 14px;
  }
  .dashboard-nav__item {
    padding: 14px 16px;
  }
  .dashboard-card {
    padding: 18px 20px;
  }
}

@media (max-width: 385px) {
  .dashboard__meta {
    width: 100%;
    align-items: stretch;
    gap: 12px;
  }
  .dashboard__user {
    text-align: left;
  }
  [dir="rtl"] .dashboard__user {
    text-align: right;
  }
  .dashboard__signout {
    width: 100%;
  }
}

@media (max-width: 385px) {
  .brand__line--secondary {
    display: none;
  }
}
