    * { box-sizing: border-box; }

    body {
      margin: 0;
      min-height: 100vh;
      display: block;
      background: var(--card);
      color: var(--text-main);
      font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
      overflow-x: hidden;
    }

    .profile-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo,
    .nav-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 32px;
      padding: 0 var(--sp-4);
      border-radius: var(--rd-pill);
      background: var(--card);
      color: var(--text-main);
      font-size: var(--ft-label);
  font-weight: 700;
      line-height: 1;
      letter-spacing: -0.01em;
      text-decoration: none;
    }

    .nav-actions {
      display: inline-flex;
      align-items: center;
      gap: var(--sp-2);
    }

    .nav-pill {
      border: 2px solid var(--neutral-b);
      color: var(--text-muted);
      font-family: inherit;
      cursor: pointer;
      transition: var(--motion-transition);
    }

    .nav-pill[hidden] {
      display: none;
    }

    .nav-pill:hover,
    .nav-logo:hover {
      transform: translateY(-2px);
    }

    .profile-tabs {
      display: grid;
      grid-template-columns: 36px minmax(0, 1fr) 36px;
      align-items: start;
      gap: var(--sp-2);
      min-height: 160px;
      padding: var(--sp-3);
      border-radius: var(--rd-md);
      background: var(--card);
      overflow: hidden;
      opacity: 0;
      transform: translateY(-28px);
      animation: dropDown var(--motion-duration-base) var(--motion-ease-natural) forwards;
    }

    .profile-tab-arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      margin-top: 47px;
      border: 2px solid var(--neutral-b);
      border-radius: var(--rd-pill);
      background: var(--card);
      color: var(--text-main);
      font-family: inherit;
      font-size: var(--ft-h2);
      font-weight: 900;
      line-height: 1;
      cursor: pointer;
      transition: var(--motion-transition);
      z-index: 5;
    }

    .profile-tab-arrow:hover {
      transform: translateY(-2px);
      border-color: var(--jelmmung-deep);
      color: var(--jelmmung-deep);
    }

    .profile-tab-orbit {
      position: relative;
      min-height: 140px;
      overflow: visible;
      touch-action: pan-y;
    }

    .profile-tab-title {
      position: absolute;
      top: var(--sp-2);
      left: calc(var(--sp-5) - var(--sp-3) - 36px - var(--sp-2));
      z-index: 2;
      margin: 0;
      color: var(--text-main);
      font-size: var(--ft-h1);
      font-weight: 900;
      line-height: 1.12;
      letter-spacing: -0.03em;
      white-space: nowrap;
    }

    .profile-tab-mascot {
      position: absolute;
      top: 32px;
      left: 50%;
      z-index: 2;
      width: 66px;
      height: 66px;
      object-fit: contain;
      transform: translateX(-50%);
      transform-origin: 50% 100%;
      pointer-events: none;
      filter: drop-shadow(0 8px 16px rgba(43, 54, 67, 0.16));
    }

    .profile-tab-mascot.is-hopping {
      animation: tabMascotHop 680ms var(--motion-ease-natural);
    }

    @keyframes tabMascotHop {
      0% { transform: translateX(-50%) translateY(0) scale(1); }
      26% { transform: translateX(-50%) translateY(-32px) scale(1.07, 0.94); }
      48% { transform: translateX(-50%) translateY(0) scale(0.96, 1.06); }
      68% { transform: translateX(-50%) translateY(-15px) scale(1.04, 0.97); }
      100% { transform: translateX(-50%) translateY(0) scale(1); }
    }

    .profile-tab {
      position: absolute;
      top: 96px;
      left: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 0;
      height: 42px;
      padding: 0 var(--sp-4);
      border: 2px solid var(--neutral-b);
      border-radius: var(--rd-pill);
      background: var(--card);
      color: var(--text-muted);
      font-family: inherit;
      font-size: var(--ft-body-s);
      font-weight: 900;
      line-height: 1;
      cursor: pointer;
      opacity: 0;
      pointer-events: none;
      transform: translateX(-50%) scale(0.84);
      transition: transform var(--motion-duration-base) var(--motion-ease-natural),
                  opacity var(--motion-duration-base) var(--motion-ease-natural),
                  border-color var(--motion-duration-fast) var(--motion-ease-natural),
                  background-color var(--motion-duration-fast) var(--motion-ease-natural),
                  color var(--motion-duration-fast) var(--motion-ease-natural);
    }

    .profile-tab[data-tab-position="current"],
    .profile-tab[data-tab-position="prev"],
    .profile-tab[data-tab-position="next"] {
      opacity: 1;
      pointer-events: auto;
    }

    .profile-tab[data-tab-position="current"] {
      z-index: 4;
      border-color: var(--jelmmung-deep);
      background: var(--jelmmung-deep);
      color: var(--card);
      transform: translateX(-50%) scale(1);
    }

    .profile-tab[data-tab-position="prev"] {
      z-index: 3;
      transform: translateX(calc(-50% - 104px)) translateY(4px) scale(0.9);
    }

    .profile-tab[data-tab-position="next"] {
      z-index: 3;
      transform: translateX(calc(-50% + 104px)) translateY(4px) scale(0.9);
    }

    .profile-tab[data-tab-position="hidden"] {
      z-index: 1;
    }

    .profile-tab:hover {
      border-color: var(--jelmmung-deep);
      color: var(--jelmmung-deep);
    }

    .profile-tab[aria-selected="true"] {
      border-color: var(--jelmmung-deep);
      background: var(--jelmmung-deep);
      color: var(--card);
    }

    .profile-panel {
      display: flex;
      flex-direction: column;
      gap: var(--sp-4);
    }

    .profile-panel[hidden] {
      display: none;
    }

    .profile-card,
    .login-card {
      border-radius: var(--rd-md);
      background: var(--card);
      padding: var(--sp-6) var(--sp-5);
      opacity: 0;
      transform: translateY(-28px);
      animation: dropDown var(--motion-duration-base) var(--motion-ease-natural) forwards;
    }

    .login-profile-card {
      animation-delay: 70ms;
    }

    .zelbang-profile-card {
      animation-delay: 100ms;
    }

    .account-delete-card {
      border: 2px solid var(--state-error-border);
      animation-delay: 130ms;
    }

    .profile-title {
      display: flex;
      align-items: center;
      gap: var(--sp-3);
      margin: 0;
      font-size: var(--ft-display-s);
      font-weight: 900;
      line-height: 1.18;
      letter-spacing: -0.04em;
      color: var(--text-main);
    }

    .profile-title img {
      width: 56px;
      height: 56px;
      object-fit: contain;
      flex: none;
    }

    .profile-sub {
      margin: var(--sp-2) 0 0;
      color: var(--text-muted);
      font-size: var(--ft-body-s);
      font-weight: 700;
      line-height: 1.5;
      word-break: keep-all;
    }

    .account-panel {
      margin-top: var(--sp-5);
      display: grid;
      grid-template-columns: auto 1fr;
      gap: var(--sp-4);
      align-items: center;
      padding: var(--sp-4);
      border-radius: var(--rd-md);
      background: var(--jelmmung-soft);
    }

    .profile-avatar-wrap {
      width: 88px;
      height: 88px;
      border-radius: var(--rd-pill);
      background: var(--card);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      box-shadow: inset 0 0 0 2px var(--jelmmung-deep);
    }

    .profile-avatar {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .profile-avatar.is-default {
      width: 76px;
      height: 76px;
      object-fit: contain;
    }

    .account-label {
      display: block;
      color: var(--text-main);
      font-size: var(--ft-body);
      font-weight: 900;
      line-height: 1.2;
    }

    .account-email,
    .account-provider {
      margin-top: var(--sp-1);
      color: var(--text-muted);
      font-size: var(--ft-body-s);
      font-weight: 700;
      line-height: 1.35;
      overflow-wrap: anywhere;
    }

    .profile-form {
      margin-top: var(--sp-5);
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .field-label {
      display: block;
      margin-bottom: var(--sp-3);
      color: var(--text-main);
      font-size: var(--ft-h3);
      font-weight: 900;
      line-height: 1.2;
    }

    .profile-input {
      width: 100%;
      height: 52px;
      padding: 0 var(--sp-4);
      border: 2px solid var(--neutral-b);
      border-radius: var(--rd-sm);
      background: var(--card);
      color: var(--text-main);
      font-family: inherit;
      font-size: var(--ft-body-l);
      font-weight: 800;
      outline: none;
      transition: var(--motion-transition);
    }

    .profile-input:focus {
      border-color: var(--jelmmung-deep);
    }

    .field-help-wrap {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: var(--sp-2);
      align-items: flex-start;
      margin-top: var(--sp-3);
    }

    .field-help-icon {
      width: 48px;
      height: 48px;
      object-fit: contain;
      margin-top: 1px;
    }

    .field-help {
      margin: 0;
      padding-left: 1.1em;
      color: var(--text-muted);
      font-size: var(--ft-caption);
      font-weight: 700;
      line-height: 1.45;
      word-break: keep-all;
    }

    .field-help li + li {
      margin-top: var(--sp-1);
    }

    .profile-status {
      min-height: 20px;
      margin: calc(var(--sp-3) / 2) 0 0;
      color: var(--text-muted);
      font-size: var(--ft-caption);
      font-weight: 800;
      line-height: 1.4;
    }

    .profile-status:empty {
      min-height: 0;
      margin-top: 0;
    }

    .profile-status.is-correct {
      color: var(--state-success-fg);
    }

    .profile-status.is-wrong {
      color: var(--state-error-fg);
    }

    .profile-actions {
      display: flex;
      flex-direction: column;
      gap: var(--sp-3);
      margin-top: calc(var(--sp-3) + var(--sp-2));
    }

    .profile-actions .btn-cta {
      height: 56px;
      font-size: var(--ft-h1);
    }

    .account-delete-zone {
      margin-top: 0;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
    }

    .account-delete-title {
      margin: 0;
      color: var(--state-error-fg);
      font-size: var(--ft-h2);
      font-weight: 900;
      line-height: 1.25;
      letter-spacing: -0.02em;
    }

    .account-delete-copy,
    .account-delete-confirm-copy {
      margin: var(--sp-2) 0 0;
      color: var(--text-muted);
      font-size: var(--ft-body-s);
      font-weight: 700;
      line-height: 1.5;
      word-break: keep-all;
    }

    .account-delete-button,
    .account-delete-cancel,
    .account-delete-confirm-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 44px;
      border-radius: var(--rd-pill);
      font-family: inherit;
      font-size: var(--ft-body-s);
      font-weight: 900;
      line-height: 1;
      cursor: pointer;
      transition: var(--motion-transition);
    }

    .account-delete-button {
      margin-top: var(--sp-4);
      width: 100%;
      border: 2px solid var(--state-error-border);
      background: var(--card);
      color: var(--state-error-fg);
    }

    .account-delete-button:hover,
    .account-delete-cancel:hover,
    .account-delete-confirm-button:hover {
      transform: translateY(-2px);
    }

    .account-delete-confirm {
      margin-top: var(--sp-4);
      padding-top: var(--sp-4);
      border-top: 1px solid var(--neutral-b);
    }

    .account-delete-confirm[hidden] {
      display: none;
    }

    .account-delete-actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--sp-3);
      margin-top: var(--sp-4);
    }

    .account-delete-cancel {
      border: 2px solid var(--jelmmung-deep);
      background: var(--jelmmung-deep);
      color: var(--text-inverse);
    }

    .account-delete-confirm-button {
      border: 2px solid var(--neutral-b);
      background: var(--card);
      color: var(--text-main);
    }

    .account-delete-button:disabled,
    .account-delete-cancel:disabled,
    .account-delete-confirm-button:disabled {
      cursor: not-allowed;
      opacity: 0.55;
      transform: none;
    }

    .account-delete-status {
      min-height: 20px;
      margin: var(--sp-3) 0 0;
      color: var(--text-muted);
      font-size: var(--ft-caption);
      font-weight: 800;
      line-height: 1.4;
    }

    .account-delete-status:empty {
      min-height: 0;
      margin-top: 0;
    }

    .account-delete-status.is-error {
      color: var(--state-error-fg);
    }

    .report-manager-card {
      animation-delay: 70ms;
    }

    .report-link-list {
      margin-top: var(--sp-4);
      display: flex;
      flex-direction: column;
      gap: var(--sp-3);
    }

    .report-link-card {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: var(--sp-3);
      padding: var(--sp-4);
      border: 2px solid var(--neutral-b);
      border-radius: var(--rd-md);
      background: var(--card);
      color: var(--text-main);
      text-decoration: none;
      transition: var(--motion-transition);
    }

    .report-link-card:hover {
      transform: translateY(-2px);
      border-color: var(--jelmmung-deep);
    }

    .report-link-kicker {
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      padding: 0 var(--sp-3);
      border: 2px solid var(--jelmmung-deep);
      border-radius: var(--rd-pill);
      color: var(--jelmmung-deep);
      font-size: var(--ft-caption);
      font-weight: 900;
      line-height: 1;
    }

    .report-link-title {
      display: block;
      margin-top: var(--sp-2);
      font-size: var(--ft-h2);
      font-weight: 900;
      line-height: 1.2;
      letter-spacing: -0.04em;
    }

    .report-link-copy {
      margin: var(--sp-1) 0 0;
      color: var(--text-muted);
      font-size: var(--ft-caption);
      font-weight: 700;
      line-height: 1.45;
      word-break: keep-all;
    }

    .report-link-arrow {
      color: var(--jelttok-deep);
      font-size: var(--ft-h2);
      font-weight: 900;
      line-height: 1;
    }

    .report-share-actions {
      margin-top: var(--sp-3);
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: var(--sp-3);
    }

    .report-share-action {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 var(--sp-3);
      border: 2px solid var(--jelttok-deep);
      border-radius: var(--rd-pill);
      background: var(--card);
      color: var(--jelttok-deep);
      font-size: var(--ft-body-s);
      font-weight: 900;
      line-height: 1;
      text-decoration: none;
      transition: var(--motion-transition);
    }

    .report-share-action:first-child {
      border-color: var(--jelmmung-deep);
      color: var(--jelmmung-deep);
    }

    .report-share-action:hover {
      transform: translateY(-2px);
    }

    .report-section-label {
      margin: var(--sp-4) 0 0;
      color: var(--text-main);
      font-size: var(--ft-body-s);
      font-weight: 900;
      line-height: 1.25;
    }

    .report-history-list {
      margin-top: var(--sp-3);
      display: flex;
      flex-direction: column;
      gap: var(--sp-3);
    }

    .report-history-status {
      margin: 0;
      padding: var(--sp-4);
      border-radius: var(--rd-md);
      background: var(--neutral-a);
      color: var(--text-muted);
      font-size: var(--ft-body-s);
      font-weight: 800;
      line-height: 1.45;
      text-align: center;
      word-break: keep-all;
    }

    .report-history-status.is-error {
      color: var(--state-error-fg);
    }

    .report-history-item {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--sp-3);
      padding: var(--sp-4);
      border: 2px solid var(--neutral-b);
      border-radius: var(--rd-md);
      background: var(--card);
    }

    .report-history-item.is-latest {
      border-color: var(--jelmmung-deep);
      background: var(--jelmmung-soft);
    }

    .report-history-main {
      min-width: 0;
    }

    .report-history-topline,
    .share-item-topline {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--sp-2);
    }

    .report-history-kicker {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 var(--sp-3);
      border: 2px solid var(--jelmmung-deep);
      border-radius: var(--rd-pill);
      color: var(--jelmmung-deep);
      font-size: var(--ft-caption);
      font-weight: 900;
      line-height: 1;
    }

    .report-history-date {
      flex: none;
      color: var(--text-muted);
      font-size: var(--ft-caption);
      font-weight: 800;
      line-height: 1;
      white-space: nowrap;
    }

    .report-history-title {
      margin: var(--sp-2) 0 0;
      color: var(--text-main);
      font-size: var(--ft-h1);
      font-weight: 900;
      line-height: 1.08;
      letter-spacing: -0.04em;
    }

    .report-history-metrics {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: var(--sp-2);
      margin-top: var(--sp-3);
    }

    .report-history-metric {
      display: flex;
      min-width: 0;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: var(--sp-2);
      border-radius: var(--rd-md);
      background: var(--neutral-a);
      color: var(--text-muted);
      font-size: var(--ft-caption);
      font-weight: 800;
      line-height: 1.25;
      text-align: center;
    }

    .report-history-metric strong {
      display: block;
      margin-top: 2px;
      color: var(--text-main);
      font-size: var(--ft-body-s);
      font-weight: 900;
    }

    .report-history-actions {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: var(--sp-2);
    }

    .report-history-action {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 36px;
      padding: 0 var(--sp-2);
      border: 2px solid var(--jelttok-deep);
      border-radius: var(--rd-pill);
      background: var(--card);
      color: var(--jelttok-deep);
      font-size: var(--ft-caption);
      font-weight: 900;
      line-height: 1;
      text-decoration: none;
      transition: var(--motion-transition);
      white-space: nowrap;
    }

    .report-history-action:first-child,
    .report-history-action.is-share {
      border-color: var(--jelmmung-deep);
      color: var(--jelmmung-deep);
    }

    .report-history-action:hover {
      transform: translateY(-2px);
    }

    .list-pagination {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: var(--sp-2);
      margin-top: var(--sp-1);
    }

    .list-page-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 36px;
      height: 36px;
      padding: 0 var(--sp-3);
      border: 2px solid var(--neutral-b);
      border-radius: var(--rd-pill);
      background: var(--card);
      color: var(--text-muted);
      font-family: inherit;
      font-size: var(--ft-caption);
      font-weight: 900;
      line-height: 1;
      cursor: pointer;
      transition: var(--motion-transition);
    }

    .list-page-button:hover {
      transform: translateY(-2px);
      border-color: var(--jelmmung-deep);
      color: var(--jelmmung-deep);
    }

    .list-page-button.is-active {
      border-color: var(--jelmmung-deep);
      background: var(--jelmmung-deep);
      color: var(--text-inverse);
    }

    .list-page-button.is-active:hover {
      color: var(--text-inverse);
    }

    .list-page-button:disabled {
      opacity: 0.45;
      cursor: not-allowed;
      transform: none;
    }

    .list-page-ellipsis {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 20px;
      height: 36px;
      color: var(--text-muted);
      font-size: var(--ft-caption);
      font-weight: 900;
      line-height: 1;
    }

    .share-manager-card {
      animation-delay: 90ms;
    }

    .share-manager-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: var(--sp-3);
    }

    .share-manager-actions {
      display: inline-flex;
      flex: none;
      align-items: center;
      gap: var(--sp-2);
    }

    .share-manager-title {
      margin: 0;
      color: var(--text-main);
      font-size: var(--ft-h1);
      font-weight: 900;
      line-height: 1.18;
      letter-spacing: -0.04em;
    }

    .share-manager-copy {
      margin: var(--sp-2) 0 0;
      color: var(--text-muted);
      font-size: var(--ft-body-s);
      font-weight: 700;
      line-height: 1.45;
      word-break: keep-all;
    }

    .share-refresh {
      flex: none;
      height: 34px;
      padding: 0 var(--sp-3);
      border: 2px solid var(--neutral-b);
      border-radius: var(--rd-pill);
      background: var(--card);
      color: var(--text-main);
      font-family: inherit;
      font-size: var(--ft-caption);
      font-weight: 900;
      cursor: pointer;
      transition: var(--motion-transition);
    }

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

    .share-refresh.is-danger {
      border-color: var(--jelmmung-deep);
      color: var(--jelmmung-deep);
    }

    .share-refresh:disabled {
      opacity: 0.55;
      cursor: not-allowed;
      transform: none;
    }

    .share-list {
      margin-top: var(--sp-4);
      display: flex;
      flex-direction: column;
      gap: var(--sp-3);
    }

    .share-empty,
    .share-list-status {
      margin: 0;
      padding: var(--sp-4);
      border-radius: var(--rd-md);
      background: var(--neutral-a);
      color: var(--text-muted);
      font-size: var(--ft-body-s);
      font-weight: 800;
      line-height: 1.45;
      text-align: center;
      word-break: keep-all;
    }

    .share-list-status.is-error {
      color: var(--state-error-fg);
    }

    .share-delete-note,
    .share-item-confirm {
      margin: var(--sp-3) 0 0;
      padding: var(--sp-3);
      border-radius: var(--rd-md);
      background: var(--jelmmung-soft);
      color: var(--text-main);
      font-size: var(--ft-caption);
      font-weight: 800;
      line-height: 1.45;
      text-align: center;
      word-break: keep-all;
    }

    .share-delete-note[hidden] {
      display: none;
    }

    .share-item {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: var(--sp-3);
      align-items: center;
      padding: var(--sp-4);
      border: 2px solid var(--neutral-b);
      border-radius: var(--rd-md);
      background: var(--card);
    }

    .share-item.is-confirming {
      border-color: var(--jelmmung-deep);
    }

    .share-item-confirm {
      grid-column: 1 / -1;
      margin-top: calc(var(--sp-1) * -1);
    }

    .share-item-main {
      min-width: 0;
    }

    .share-item-kicker {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 var(--sp-3);
      border: 2px solid var(--jelmmung-deep);
      border-radius: var(--rd-pill);
      color: var(--jelmmung-deep);
      font-size: var(--ft-caption);
      font-weight: 900;
      line-height: 1;
    }

    .share-item-expiry {
      display: inline-flex;
      flex: none;
      align-items: center;
      min-height: 28px;
      padding: 0 var(--sp-3);
      border-radius: var(--rd-pill);
      background: var(--neutral-a);
      color: var(--text-main);
      font-size: var(--ft-caption);
      font-weight: 900;
      line-height: 1;
      white-space: nowrap;
    }

    .share-item-title {
      margin: var(--sp-2) 0 0;
      color: var(--text-main);
      font-size: var(--ft-h2);
      font-weight: 900;
      line-height: 1.2;
      letter-spacing: -0.04em;
    }

    .share-item-meta {
      margin: var(--sp-1) 0 0;
      color: var(--text-muted);
      font-size: var(--ft-caption);
      font-weight: 700;
      line-height: 1.45;
      word-break: keep-all;
    }

    .share-item-actions {
      display: flex;
      flex-direction: column;
      gap: var(--sp-2);
      width: 86px;
    }

    .share-item-action {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 34px;
      border: 2px solid var(--jelttok-deep);
      border-radius: var(--rd-pill);
      background: var(--card);
      color: var(--jelttok-deep);
      font-family: inherit;
      font-size: var(--ft-caption);
      font-weight: 900;
      line-height: 1;
      text-decoration: none;
      cursor: pointer;
      transition: var(--motion-transition);
    }

    .share-item-action:hover {
      transform: translateY(-2px);
    }

    .share-item-action.is-danger {
      border-color: var(--jelmmung-deep);
      color: var(--jelmmung-deep);
    }

    .share-item-action:disabled {
      opacity: 0.55;
      cursor: progress;
      transform: none;
    }

    @media (max-width: 380px) {
      .share-manager-head {
        flex-direction: column;
      }

      .share-manager-actions {
        width: 100%;
      }

      .share-manager-actions .share-refresh {
        flex: 1;
      }

      .report-share-actions {
        grid-template-columns: 1fr;
      }

      .report-history-actions {
        grid-template-columns: 1fr;
      }

      .report-history-topline,
      .share-item-topline {
        align-items: flex-start;
        flex-direction: column;
      }

      .report-history-metrics {
        grid-template-columns: 1fr;
      }

      .profile-tabs {
        grid-template-columns: 30px minmax(0, 1fr) 30px;
        gap: var(--sp-1);
        min-height: 152px;
        padding: var(--sp-2);
      }

      .profile-tab-arrow {
        width: 30px;
        height: 30px;
        margin-top: 47px;
        font-size: var(--ft-h3);
      }

      .profile-tab-orbit {
        min-height: 136px;
      }

      .profile-tab-title {
        left: calc(var(--sp-5) - var(--sp-2) - 30px - var(--sp-1));
        font-size: var(--ft-h2);
      }

      .profile-tab-mascot {
        top: 31px;
        left: 50%;
        width: 62px;
        height: 62px;
      }

      .profile-tab {
        top: 94px;
        height: 40px;
        padding: 0 var(--sp-3);
        font-size: var(--ft-caption);
      }

      .profile-tab[data-tab-position="prev"] {
        transform: translateX(calc(-50% - 88px)) translateY(4px) scale(0.88);
      }

      .profile-tab[data-tab-position="next"] {
        transform: translateX(calc(-50% + 88px)) translateY(4px) scale(0.88);
      }

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

      .share-item-actions {
        width: 100%;
        flex-direction: row;
      }

      .share-item-action {
        flex: 1;
      }
    }

    .login-card {
      display: none;
      text-align: center;
      align-items: center;
      flex-direction: column;
    }

    body.is-auth-ready.is-logged-out .login-card {
      display: flex;
    }

    body.is-logged-out .profile-card {
      display: none;
    }

    body.is-logged-out .profile-tabs,
    body.is-logged-out .profile-panel {
      display: none;
    }

    .login-card img {
      width: 128px;
      height: 128px;
      object-fit: contain;
      margin-bottom: var(--sp-3);
    }

    .login-card-title {
      margin: 0;
      font-size: var(--ft-display-s);
      font-weight: 900;
      line-height: 1.2;
      letter-spacing: -0.03em;
      color: var(--text-main);
    }

    .login-card-copy {
      margin: var(--sp-2) 0 var(--sp-4);
      color: var(--text-muted);
      font-size: var(--ft-body-s);
      font-weight: 700;
      line-height: 1.45;
      word-break: keep-all;
    }

    .sso-stack {
      width: 100%;
    }

/* ── 젤리 글래스 (구 redesign.css 화면50 흡수 · !important 제거)
   .is-profile X(0,2,0) 스코프가 베이스를 특정도/순서로 이김. ── */
.is-profile .profile-nav,
.is-profile .profile-tabs,
.is-profile .profile-card,
.is-profile .login-card { position: relative; z-index: 1; }
.is-profile .profile-card {
  background: var(--cg-surface-70);
  backdrop-filter: blur(26px) saturate(1.25); -webkit-backdrop-filter: blur(26px) saturate(1.25);
  border: var(--cg-card-border);
  border-radius: var(--cg-radius);
  box-shadow:
    0 6px 16px rgba(217, 64, 64, 0.10),
    0 22px 48px rgba(217, 64, 64, 0.18),
    inset 0 1px 2px rgba(255, 255, 255, 0.85);
}
.is-profile .profile-tabs {
  background: var(--cg-card-bg);
  backdrop-filter: blur(var(--cg-blur)); -webkit-backdrop-filter: blur(var(--cg-blur));
  border: var(--cg-card-border);
  border-radius: var(--cg-radius);
  box-shadow: var(--cg-shadow);
  padding: var(--sp-4);
}
.is-profile .profile-tab-arrow,
.is-profile .profile-tab:not([data-tab-position="current"]) {
  background: var(--cg-surface-70);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.9);
}
.is-profile .report-manager-card .share-manager-copy { margin-top: 0; }
.is-profile .report-history-list { margin-top: var(--sp-5); }
.is-profile .profile-sub { margin-top: 0; }
.is-profile .report-history-status,
.is-profile .report-history-metric {
  background: var(--cg-surface-50);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 5px 13px rgba(43, 33, 66, 0.16),
    inset 0 1px 1px rgba(255, 255, 255, 0.6);
}
.is-profile .report-history-item { border-color: var(--jelmmung-deep); }
.is-profile .report-history-kicker {
  background: var(--cg-surface-50);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.is-profile .report-history-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.is-profile .report-history-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: var(--sp-2);
  border-radius: var(--rd-md);
  background: var(--cg-card-bg);
  backdrop-filter: blur(var(--cg-blur)); -webkit-backdrop-filter: blur(var(--cg-blur));
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 5px 13px rgba(43, 33, 66, 0.16),
    inset 0 1px 1px rgba(255, 255, 255, 0.6);
  font-size: var(--ft-caption);
  font-weight: 800;
  color: var(--text-muted);
  line-height: 1.25;
  letter-spacing: 0;
}
.is-profile .report-history-title strong {
  display: block;
  margin-top: 2px;
  color: var(--text-main);
  font-size: var(--ft-h2);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.is-profile .report-history-item:not(.is-latest) .report-history-title,
.is-profile .report-history-item:not(.is-latest) .report-history-metric {
  border-color: var(--text-main);
}
.is-profile .report-history-action { border-radius: var(--rd-sm); }
.is-profile .share-item {
  border-color: var(--jelmmung);
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: var(--sp-3);
}
.is-profile .share-item-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-2);
  min-width: 0;
}
.is-profile .share-item-kicker {
  background: var(--cg-surface-50);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
}
.is-profile .share-item-title {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: var(--sp-1);
  color: var(--text-main);
  font-size: var(--ft-stat);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}
.is-profile .share-item-title strong {
  font-size: var(--ft-stat-l);
  font-weight: 900;
  color: var(--jelmmung-deep);
  letter-spacing: -0.04em;
}
.is-profile .share-item-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1) var(--sp-3);
  color: var(--text-muted);
  font-size: var(--ft-caption);
  font-weight: 700;
  line-height: 1.3;
}
.is-profile .share-item-meta strong {
  margin-left: var(--sp-1);
  color: var(--text-main);
  font-weight: 800;
}
.is-profile .share-empty,
.is-profile .share-list-status {
  background: var(--cg-surface-50);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 5px 13px rgba(43, 33, 66, 0.16),
    inset 0 1px 1px rgba(255, 255, 255, 0.6);
}
.is-profile .share-refresh:not(.is-danger) {
  background: var(--cg-surface-70);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.9);
}
.is-profile .share-item-actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  width: 72px;
  align-self: end;
}
.is-profile .share-item-action {
  border-radius: var(--rd-sm);
  width: 100%;
}
